ADO.NET Provider for Azure Data Lake Storage

Build 23.0.8839

Procedures

The Procedures schema collection describes the available stored procedures.

Retrieving the Stored Procedure Listing

To retrieve the Procedures schema collection, call the GetSchema method of the ADLSConnection class. Access the metadata in the DataTable object returned.

The following example outputs a list of stored procedure names:

C#

String connectionString = "Schema=ADLSGen2;Account=MyStorageAccount;FileSystem=MyBlobContainer;AccessKey=myAccessKey;";

using (ADLSConnection conn = new ADLSConnection(connectionString)) {
  conn.Open();
  DataTable table = conn.GetSchema("Procedures");
  foreach (DataRow row in table.Rows)
   Console.WriteLine(row["SPECIFIC_NAME"]);
}

VB.NET

Dim connectionString As String = "Schema=ADLSGen2;Account=MyStorageAccount;FileSystem=MyBlobContainer;AccessKey=myAccessKey;"

Using conn As New ADLSConnection(connectionString)
  conn.Open()
  Dim table As DataTable = conn.GetSchema("Procedures")
  For Each row As DataRow in table.Rows
    Console.WriteLine(row("SPECIFIC_NAME"))
  Next
End Using

Columns Returned

The Procedures schema collection contains the following columns:

Column NameData TypeDescription
SPECIFIC_CATALOGSystem.StringThe name of the database containing the stored procedure.
SPECIFIC_SCHEMASystem.StringThe schema that contains the stored procedure.
SPECIFIC_NAMESystem.StringThe name of the stored procedure containing the parameter.
ROUTINE_CATALOGSystem.StringThe database containing the stored procedure.
ROUTINE_SCHEMASystem.StringThe schema containing the stored procedure.
ROUTINE_NAMESystem.StringThe name of the stored procedure.
ROUTINE_TYPESystem.StringReturns PROCEDURE for stored procedures and FUNCTION for functions.

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