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 중국어 웹사이트의 기타 관련 기사를 참조하세요!