>데이터 베이스 >MySQL 튜토리얼 >명령을 사용하여 SQL에서 DataSet 또는 DataTable을 직접 채우는 방법은 무엇입니까?

명령을 사용하여 SQL에서 DataSet 또는 DataTable을 직접 채우는 방법은 무엇입니까?

Patricia Arquette
Patricia Arquette원래의
2024-12-31 01:55:07902검색

How to Directly Populate a DataSet or DataTable from SQL Using a Command?

명령을 사용하여 SQL에서 직접 DataSet 또는 DataTable 채우기

SQL 데이터베이스에서 데이터를 검색하고 DataSet 또는 DataTable을 채우려면 다음 기술을 직접 사용할 수 있습니다. SQL 명령에서:

private DataSet GetDataSet(string sqlCommand, string connectionString)
{
    // Create a connection to the database
    using (var conn = new SqlConnection(connectionString))
    {
        // Create a new data adapter
        var da = new SqlDataAdapter(sqlCommand, conn);

        // Fill a new dataset with the results of the command
        var ds = new DataSet();
        da.Fill(ds);

        // Return the dataset
        return ds;
    }
}

이 방법은 SQL 명령과 연결 문자열을 매개변수로 사용하여 SqlConnection 개체입니다. 그런 다음 지정된 명령과 연결을 사용하여 SqlDataAdapter를 만듭니다. 마지막으로 명령 결과로 새 DataSet을 채우고 데이터세트를 반환합니다.

이 방법을 사용하여 DataSet 대신 DataTable을 채울 수도 있습니다. 이렇게 하려면 채우려는 테이블의 이름을 Fill 메서드의 두 번째 매개 변수로 전달하면 됩니다.

private DataTable GetDataTable(string sqlCommand, string connectionString)
{
    // Create a connection to the database
    using (var conn = new SqlConnection(connectionString))
    {
        // Create a new data adapter
        var da = new SqlDataAdapter(sqlCommand, conn);

        // Fill a new datatable with the results of the command
        var dt = new DataTable();
        da.Fill(dt);

        // Return the datatable
        return dt;
    }
}

위 내용은 명령을 사용하여 SQL에서 DataSet 또는 DataTable을 직접 채우는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.