在ADO.NET中,已知变量sqlCom是一个SqlCommand对象,则下列代码运行时将出现异常的是(选一项) SqlDataReader reader = sqlCom.ExecuteReader(); //1 reader.Read(); //2 reader.Close(); //3 reader.Read(); //4
在ADO.NET中,已知变量sqlCom是一个SqlCommand对象,则下列代码运行时将出现异常的是(选一项) SqlDataReader reader = sqlCom.ExecuteReader(); //1 reader.Read(); //2 reader.Close(); //3 reader.Read(); //4
在ASP.NET中,已知sqlCon是一个SqlConnection对象,sqlCom是一个SqlCommand对象,下列代码能够正确创建一个SqlTransaction对象的是()。 A: SqlTransactiontran=newSqlTransaction(); B: SqlTransactiontran=sqlCon.BeginTransaction(); C: SqlTransactiontran=sqlcom.BeginTransaction(); D: SqlTransactiontran=sqlCon.CreateTransaction();
在ASP.NET中,已知sqlCon是一个SqlConnection对象,sqlCom是一个SqlCommand对象,下列代码能够正确创建一个SqlTransaction对象的是()。 A: SqlTransactiontran=newSqlTransaction(); B: SqlTransactiontran=sqlCon.BeginTransaction(); C: SqlTransactiontran=sqlcom.BeginTransaction(); D: SqlTransactiontran=sqlCon.CreateTransaction();
1