This script is a wrapper for scripts returning database meta data in result set format.
dodbmeta.php processes the following HTTP parameters:
There may be more parameters depending on the type of meta data request.
The response structure returned by dodbmeta.php is the same as for dosql.php. Table structures of the meta data returned are described for each type below.
| meta= | Information returned |
| catalogs | catalogs and their properties |
| columns | columns of a table and their properties |
| indexes | indexes of a table and their properties |
| schemas | schemas in database and their properties |
| tables | tables and their properties |
| tbltypes | tables and pseudo table types supported by database |
| typeinfo | types supported by database |
This meta data request returns information about the database's catalogs and their properties. It has no specific parameters.
The result set returned is described in DatabaseMetaData.getCatalogs() of the Java API.
This meta data request returns information about the columns of a table in the database. Additional parameters are:
More information about the parameters and the result set returned is described in DatabaseMetaData.getColumns() of the Java API.
This meta data request returns information about the indexes of a table in the database. Additional parameters are:
More information about the parameters and the result set returned is described in DatabaseMetaData.getIndexInfo() of the Java API.
This meta data request returns information about schemas in the database. It has no additional parameters.
Information about the result set returned is described in DatabaseMetaData.getSchemas() of the Java API.
This meta data request returns information about tables in the database. Additional parameters are:
More information about the parameters and the result set returned is described in DatabaseMetaData.getTables() of the Java API.
This meta data request returns table types used in the database. It has no additional parameters.
More information about the parameters and the result set returned is described in DatabaseMetaData.getTableTypes() of the Java API.
Retrieves a description of all the data types supported by this database. It has no additional parameters.
More information about the parameters and the result set returned is described in DatabaseMetaData.getTypeInfo() of the Java API.