ADO.NET Provider for SybaseIQ

Build 22.0.8479

DbCommands の実行

次のセクションでは、DbCommand やDbDataAdapter などのADO.NET 基本クラスを使用してコマンドを実行する方法を示します。

SybaseIQ へのコマンドの実行

次のコードは、既存のDbConnection オブジェクトを指定して、SybaseIQ に"SELECT *" クエリを実行します。

using (connection) {

  // Create the DbCommand.
  DbCommand command = factory.CreateCommand();
  command.CommandText = 
    "SELECT * FROM [master].[dbo].Products";

  command.Connection = connection;

  // Create the DbDataAdapter.
  DbDataAdapter adapter = factory.CreateDataAdapter();
  adapter.SelectCommand = command;

  // Fill the DataTable.
  DataTable table = new DataTable();
  adapter.Fill(table);

  //  Display each row and column value.
  foreach (DataRow row in table.Rows) {
    foreach (DataColumn column in table.Columns) {
      Console.WriteLine(row[column]);
    }
  }
} 

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8479