A.NormalB.MinC.MaxD.以上都不是
单项选择题关于数据库连接字符串代码正确的是()
A.private static string DBConnectString ="server=.;database=FreshLiveDB;uid=sa;pwd=123;";B.private static string DBConnectString ="server=.;database=FreshLiveDB;id=sa;pwd=123;";C.private static string DBConnectString ="server=.;database=FreshLiveDB;id=sa;password=123;";D.private static string DBConnectString ="server=.;database=FreshLiveDB;name=sa;pwd=123;";
单项选择题关于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控件的属性描述正确的有()
A.Rows获取总条数B.DataSource 获取数据源C.Name 获取控件的名称D.Columns 获取总列的名称
单项选择题FormatException是()
A.算术异常B.参数格式错误异常C.非法参数异常D.数组下标越界异常
单项选择题try{ 代码块1return 0;}catch(Exception e){ 代码块2}finally{ 代码块3}如果程序没有捕捉到异常,上面代码中的执行结果是()
A.先执行代码块3,后执行return语句B.程序报错C.return0语句不执行D.先执行return语句,后执行代码块3