ADO.NET Provider for Microsoft Dynamics CRM

Build 23.0.8839

Tables

The Tables schema collection lists all tables in the database, including views.

Retrieving the Table Listing

To retrieve the Tables schema collection, call the GetSchema method of the DynamicsCRMConnection class.

C#

String connectionString = "User=myuseraccount;Password=mypassword;URL=https://myOrg.crm.dynamics.com/;CRM Version=CRM Online;";

using (DynamicsCRMConnection conn = new DynamicsCRMConnection(connectionString)) {
  conn.Open();
  DataTable databaseSchema = conn.GetSchema("Tables");
  foreach (DataRow row in databaseSchema.Rows) {
    Console.WriteLine(row["TABLE_NAME"]);
  }
}

VB.NET

Dim connectionString As String = "User=myuseraccount;Password=mypassword;URL=https://myOrg.crm.dynamics.com/;CRM Version=CRM Online;"

Using conn As New DynamicsCRMConnection(connectionString)
  conn.Open()
  Dim databaseSchema As DataTable = conn.GetSchema("Tables")
  For Each row As DataRow In databaseSchema.Rows
    Console.WriteLine(row("TABLE_NAME"))
  Next
End Using

Columns Returned

The Tables schema collection returns the following columns.

Column NameData TypeDescription
TABLE_CATALOGSystem.StringThe database that contains the table.
TABLE_SCHEMASystem.StringThe schema that contains the table.
TABLE_NAMESystem.StringThe table name.
TABLE_TYPESystem.StringThe table type.

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839