单项选择题
关于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对象);
多项选择题 关于DataGridView控件的属性描述正确的有()
单项选择题 FormatException是()
单项选择题 try{//代码块1return 0;}catch(Exception e){//代码块2}finally{//代码块3}如果程序没有捕捉到异常,上面代码中的执行结果是()