Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I use an OleDbConnection even if I'm connecting with Oracle, Sql Server... Then I can use:</p> <pre><code>myOleDbConnection.GetOleDbSchemaTable(OleDbSchemGuid.Tables); </code></pre> <p>Possible values for OleDbSchemaGuid: <br /> (note that depending of the database some of these can throw a NotSupported Exception: </p> <pre><code>OleDbSchemaGuid.Assertions; OleDbSchemaGuid.Catalogs; OleDbSchemaGuid.Character_Sets; OleDbSchemaGuid.Check_Constraints; OleDbSchemaGuid.Check_Constraints_By_Table; OleDbSchemaGuid.Collations; OleDbSchemaGuid.Column_Domain_Usage; OleDbSchemaGuid.Column_Privileges; OleDbSchemaGuid.Columns; OleDbSchemaGuid.Constraint_Column_Usage; OleDbSchemaGuid.Constraint_Table_Usage; OleDbSchemaGuid.DbInfoKeywords; OleDbSchemaGuid.DbInfoLiterals; OleDbSchemaGuid.Foreign_Keys; OleDbSchemaGuid.Indexes; OleDbSchemaGuid.Key_Column_Usage; OleDbSchemaGuid.Primary_Keys; OleDbSchemaGuid.Procedure_Columns; OleDbSchemaGuid.Procedure_Parameters; OleDbSchemaGuid.Procedures; OleDbSchemaGuid.Provider_Types; OleDbSchemaGuid.Referential_Constraints; OleDbSchemaGuid.SchemaGuids; OleDbSchemaGuid.Schemata; OleDbSchemaGuid.Sql_Languages; OleDbSchemaGuid.Statistics; OleDbSchemaGuid.Table_Constraints; OleDbSchemaGuid.Table_Privileges; OleDbSchemaGuid.Table_Statistics; OleDbSchemaGuid.Tables; OleDbSchemaGuid.Tables_Info; OleDbSchemaGuid.Translations; OleDbSchemaGuid.Trustee; OleDbSchemaGuid.Usage_Privileges; OleDbSchemaGuid.View_Column_Usage; OleDbSchemaGuid.View_Table_Usage; OleDbSchemaGuid.Views; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload