單項選擇題關于SqlCommand命令對象編寫正確的是()

A.SqlCommand cmm =new SqlCommand(sql語句,Connection對象);
B.SqlCommand cmm =new SqlCommand(Connection對象,sql語句);
C.SqlCommand cmm =new SqlCommand(sql語句);
D.SqlCommand cmm =new SqlCommand(Connection對象);


您可能感興趣的試卷

你可能感興趣的試題

1.多項選擇題關于DataGridView控件的屬性描述正確的有()

A.Rows獲取總條數
B.DataSource 獲取數據源
C.Name 獲取控件的名稱
D.Columns 獲取總列的名稱

2.單項選擇題FormatException是()

A.算術異常
B.參數格式錯誤異常
C.非法參數異常
D.數組下標越界異常

3.單項選擇題try{//代碼塊1return 0;}catch(Exception e){//代碼塊2}finally{//代碼塊3}如果程序沒有捕捉到異常,上面代碼中的執(zhí)行結果是()

A.先執(zhí)行代碼塊3,后執(zhí)行return語句
B.程序報錯
C.return0語句不執(zhí)行
D.先執(zhí)行return語句,后執(zhí)行代碼塊3

4.多項選擇題C#中,常見的異常處理結構有()

A.try…finally
B.catch…finally
C.try…catch
D.try…catch…finally

5.單項選擇題int num1=10,num2=22,num3=44;Console.WriteLine("{1},{2},{0}",num1,num2,num3);程序的運行結果是()

A.程序運行出錯
B.10,22,44
C.22,44,10
D.44,22,10