다음을 통해 공유


OdbcCommand 클래스

SQL 문이나 데이터 소스에 대해 실행할 저장 프로시저를 나타냅니다. 이 클래스는 상속될 수 없습니다.

네임스페이스: System.Data.Odbc
어셈블리: System.Data(system.data.dll)

구문

‘선언
Public NotInheritable Class OdbcCommand
    Inherits DbCommand
    Implements ICloneable
‘사용 방법
Dim instance As OdbcCommand
public sealed class OdbcCommand : DbCommand, ICloneable
public ref class OdbcCommand sealed : public DbCommand, ICloneable
public final class OdbcCommand extends DbCommand implements ICloneable
public final class OdbcCommand extends DbCommand implements ICloneable

설명

OdbcCommand 클래스는 데이터 소스에 대해 명령을 실행하기 위해 다음 메서드를 제공합니다.

항목

설명

ExecuteReader

행을 반환하는 명령을 실행합니다.

ExecuteNonQuery

SQL INSERT, DELELE, UPDATE 및 SET 문과 같은 명령을 실행합니다.

ExecuteScalar

데이터베이스에서 집계 값과 같은 단일 값을 검색합니다.

CommandText 속성을 다시 설정하고 OdbcCommand 개체를 다시 사용할 수 있습니다. 그러나 새 명령 또는 이전 명령을 실행하기 전에 먼저 OdbcDataReader를 닫아야 합니다.

명령을 실행한 결과 심각한 OdbcException(예: SQL Server 심각도 수준이 20 이상인 경우)이 발생하면 OdbcConnection이 닫힐 수 있습니다. 그러나 사용자는 연결을 다시 열고 계속할 수 있습니다.

예제

다음 예제에서는 OdbcDataReaderOdbcConnection 클래스와 함께 OdbcCommand 클래스의 ExecuteReader 메서드를 사용하여 테이블에서 행을 선택합니다.

Public Sub InsertRow(ByVal connectionString As String, _
    ByVal insertSQL As String)

    Using connection As New OdbcConnection(connectionString)
        ' The insertSQL string contains a SQL statement that
        ' inserts a new row in the source table.
        Dim command As New OdbcCommand(insertSQL, connection)

        ' Open the connection and execute the insert command.
        Try
            connection.Open()
            command.ExecuteNonQuery()
        Catch ex As Exception
            Console.WriteLine(ex.Message)
        End Try
        ' The connection is automatically closed when the
        ' code exits the Using block.
    End Using
End Sub
public void InsertRow(string connectionString, string insertSQL)
{
    using (OdbcConnection connection = 
               new OdbcConnection(connectionString))
    {
        // The insertSQL string contains a SQL statement that
        // inserts a new row in the source table.
        OdbcCommand command = new OdbcCommand(insertSQL, connection);

        // Open the connection and execute the insert command.
        try
        {
            connection.Open();
            command.ExecuteNonQuery();
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.Message);
        }
        // The connection is automatically closed when the
        // code exits the using block.
    }

상속 계층 구조

System.Object
   System.MarshalByRefObject
     System.ComponentModel.Component
       System.Data.Common.DbCommand
        System.Data.Odbc.OdbcCommand

스레드로부터의 안전성

이 형식의 모든 public static(Visual Basic의 경우 Shared) 멤버는 스레드로부터 안전합니다. 인터페이스 멤버는 스레드로부터 안전하지 않습니다.

플랫폼

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1에서 지원

참고 항목

참조

OdbcCommand 멤버
System.Data.Odbc 네임스페이스
OdbcDataAdapter
OdbcConnection

기타 리소스

Executing a Command