Usually you have to dig through SQL references to find out how to get metadata information for specific DBMS. There are few servers that support same SQL commands. Sometimes the syntax differs slightly, sometimes a server does not support certain statement. Now you can forget about those problems because dotConnect for Oracle retrieves the metadata for you.
You can take advantage of the new useful feature - GetSchema method. It allows you to read server schema information without writing queries and parsing the output. All information you may want to obtain is brought to you by single function in easy-to-process format. You can get information on schemas, views, packages, tables, columns, indexes, users, procedures and functions, their arguments, and reserved words. The method is introduced in System.Data.Common.DbConnection.
This article consists of the following sections:
GetSchema method is available in three overloads, each of them serves its own purpose. All overloads return System.Data.DataTable object that contains information about server elements.
If you call the GetSchema method without parameters, or with single parameter "MetaDataCollections" (which is actually the same), the table object returned by the method will contain three columns. The first field of every row is a keyword allowed to be passed to the method (as collectionName argument). The second field is the number of restriction values for this keywords (passed through restrictionValues argument). The third field is not used in dotConnect for Oracle. It is always zero.
GetSchema with 1 argument returns general information about the collection queried. For example, GetSchema("Users") returns the list of users on the server.
In this overload first parameter is name of a collection, and second parameter is the array of restrictions to be applied when querying information. These restrictions specify which subset of the collection will be returned. The restrictions can include, for example, the database name (in this case, only collection elements belonging to this database will be returned) or the mask for the name of collection elements (only the elements satisfying this mask will be returned). The quantity and description of restrictions allowed for each metadata collection are represented in the table here. Their number can also be obtained from the return of the GetSchema() method. If the second parameter is null/Nothing, it is ignored.
Instead of specifying the metadata collection name as a string constant, you may use members of System.Data.DbMetaDataCollectionNames and Devart.Data.Oracle.OracleMetadataCollectionNames as the first GetSchema argument values. The members of these classes are the string fields, each field stores the corresponding metadata collection name. It is recommended to use these fields rather than manually input the collection names manually as the string constants because in case of using these fields, you will find misspellings at compile-time, and intellisense will show you all the available metadata collection names.
The following table provides detailed information on metadata collections that can be retrieved using the GetSchema method, and restrictions that can be applied for them. Some collections may be not supported in older server versions. If you try to get metadata for unsupported collection you will get exception with message "Collection not defined".
Collection Name |
Number of restrictions | Remarks |
---|---|---|
MetaDataCollections | 0 |
Returns this list. Same as using GetSchema() method without parameters. |
ReservedWords | 0 |
Lists all reserved words used in the server. |
Users | 1 |
Lists all users on the server. When restricted by username, returns information about specific user. |
Tables | 2 |
GetSchema("Tables") returns the list of all tables on the server that you have access to.
|
Views | 2 |
GetSchema("Views") returns the list of all views on the server that you have access to.
|
Columns | 3 |
Returns the list of columns, their type and some extra
information.
|
Indexes | 4 |
Returns the list of indexes and their details.
|
IndexColumns | 5 |
Returns information about columns included in indexes. The following restrictions may be specified:
|
Functions | 2 |
Returns the list of functions on the server. The following restrictions may be specified:
|
Procedures | 3 |
Returns the list of procedures on the server. The following restrictions may be specified:
|
Arguments* | 4 |
Returns the list of procedure and function arguments. The following restrictions may be specified:
|
Synonyms | 2 |
Returns the list of synonyms on the server. The following restrictions may be specified:
|
Sequences | 2 |
Returns the list of sequences on the server. The following restrictions may be specified:
|
Packages | 2 |
Returns the list of packages on the server. The following restrictions may be specified:
|
PackageBodies | 2 |
Returns the list of package bodies on the server that you have access to. The following restrictions may be specified:
|
PrimaryKeys | 3 |
Returns the list of primary keys on the server. The following restrictions may be specified:
|
PrimaryKeyColumns | 3 |
Returns the list of columns of primary keys on the server. The following restrictions may be specified:
|
ForeignKeys | 3 |
Returns the list of foreign keys on the server. The following restrictions may be specified:
|
ForeignKeyColumns | 3 |
Returns the list of columns of foreign key columns on the server. The following restrictions may be specified:
|
FullForeignKeyColumns | 3 |
Returns the list of columns of foreign key columns on the server. In comparison to the previous collection, a column with the names of the corresponding referenced columns in the parent table is added to the result DataTable. The following restrictions may be specified:
|
Triggers | 2 |
Returns the list of triggers on the server that you have access to. The following restrictions may be specified:
|
Clusters | 2 |
Returns the list of clusters on the server that you have access to. The following restrictions may be specified:
|
QueuePublishers | 3 |
Returns the list of queue publishers on the server. The following restrictions may be specified:
|
Queues | 5 |
Returns the list of queues on the server. The following restrictions may be specified:
|
QueueTables | 4 |
Returns the list of queue tables on the server. The following restrictions may be specified:
|
QueueSubscribers | 4 |
Returns the list of subscribers to a queue or queues on the server. The following restrictions may be specified:
|
* For the Arguments collection, you can get arguments only from package stored routines or vice versa using the package name restriction easily:
The following code fragment is an elegant way to detect existence of a table.
The next sample shows how to retrieve columns information from a table and render it to console.
The following sample demonstrates how to generate SQL CREATE TABLE statement basing on metadata retrieved with GetSchema method. Only column name and type are included in the script.
Also you can get a metadata of query result set using the GetSchemaTable method of OracleDataReader and the ShemaTable property of OracleDataTable classes.