网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
填空题
ADO.NET中五大对象是Connection、()、()、()和()

参考答案

参考解析
解析: 暂无解析
更多 “填空题ADO.NET中五大对象是Connection、()、()、()和()” 相关考题
考题 在使用ADO.NET设计数据库应用程序时,可通过设置Connection对象的_______属性来指定连接到数据库时的用户和密码信息. A.Connection StringB.Data SourceC.User InformationD.Provider

考题 下列ADO.NET的组件中,( )实现对数据源的数据操作功能。A.Connection对象B.Command对象C.DataAdapter对象D.DataSet对象

考题 Connection对象是ADODB对象库的对象。() 此题为判断题(对,错)。

考题 Connection对象是ASP内置对象。() 此题为判断题(对,错)。

考题 ADO.NET中包含的对象有Connection对象、Command对象、DataReader对象、DataAdapter对象、DataSet对象。此题为判断题(对,错)。

考题 ADO和ADO.net 有什么不同?ADO.net 是ADO 的后续版本吗?

考题 在ADO.NET中,要执行一条添加数据的SQL命令,必须创建的对象是( )。A.一个Command对象和一个DataAdapter对象 B.一个Connection对象和一个DataSet对象 C.一个Command对象和一个DataSet对象 D.一个Connetction对象和一个Command对象

考题 在ADO.NET中,要执行一条添加数据的SQL命令,必须创建的对象是______。 A.一个Command对象和一个DataAdapter对象 B.一个Connection对象和一个DataSet对象 C.一个Command对象和一个DataSet对象 D.一个Connection对象和一个Command对象

考题 在使用ADO.NET 设计数据库应用程序时,可通过设置Connection 对象的()属性来指定连接到数据库时的用户和密码信息。AConnectionStringBDataSourceCUserInformationDProvider

考题 下列哪个类型的对象是ADO.NET在非连接模式下处理数据内容的主要对象?()A、CommandB、ConnectionC、DataAdapterD、DataSet

考题 在ADO.NET中,使用()对象来创建和管理数据库的连接。A、commandB、datareaderC、dataadapterD、connection

考题 ADO.NET中五大对象是Connection、()、()、()和()

考题 建立Connection对象是采用Server对象的()方法进行的。

考题 You work as an application developer at Contoso.com. You use Microsoft .NET Framework 3.5 and Microsoft ADO.NET to develop an application. The user name and password that is kept by the connection string is stored directly in the code of the application. You want to make sure that the password in the connection string is as protected.   What should you do? ()A、 Add the connection string to the Settings.settings file.B、 Add connection string to the Web.config file and use protected configuration.C、 Use the TRUE setting in the Persist Security Info keyword.D、 Use the FALSE setting in the Persist Security Info keyword

考题 在ADO.NET中,用来与数据源建立连接的对象是()A、 Connection对象B、 Command对象C、 DataAdapter对象D、 DataSet对象

考题 ADO.NET包括哪两个主要的组件?其中数据提供程序的四个核心对象是什么?

考题 在ADO.NET中,通过执行Command对象的ExecuteReader方法返回的DataReader对象是一种()。

考题 You work as an application developer at Contoso.com. You use Microsoft .NET Framework 3.5 and Microsoft ADO.NET to develop an application. You want to make sure that the application is operative to any type of database.   What should you do?()A、 Set the database driver name in the connection string of the application, and then the connection object as follows: DbConnection connection = new OdbcConnection(connectionString);B、 Create the connection object as follows: DbProviderFactory factoryDbProviderFactories.GetFactory(databaseProviderName); DbConnection connection =factory.CreateConnection();C、 Create the connection object as follows: DbProviderFactory factory = DbProviderFactories.GetFactory("System.Data.Odbc"); DbConnection connection = factory.CreateConnection();D、 Set the database driver name in the connection string of the application, and then the connection object as follows:DbConnection connection = new OleDbConnection(connectionString);

考题 单选题在ADO.NET中,用来与数据源建立连接的对象是()A  Connection对象B  Command对象C  DataAdapter对象D  DataSet对象

考题 单选题下列哪个类型的对象是ADO.NET在非连接模式下处理数据内容的主要对象?()A CommandB ConnectionC DataAdapterD DataSet

考题 单选题You work as an application developer at Contoso.com. You use Microsoft .NET Framework 3.5 and Microsoft ADO.NET to develop an application that will connect to the Microsoft SQL Server 2005 database. You want to use Windows Authentication along with the Microsoft OLE DB provider. You now need to make sure that the OLE DB connection is as secure as possible.   What should you do?()A  Add the following parameter to the connection string: Integrated Security=true; PersistSecurityInfo=true;B  Add the following parameter to the connection string: Integrated Security=SSPI;C  Add the following parameter to the connection string: Integrated Security=SSPI; PersistSecurityInfo=yes;D  Add the following parameter to the connection string: Integrated Security=true;

考题 单选题在使用ADO.NET 设计数据库应用程序时,可通过设置Connection 对象的()属性来指定连接到数据库时的用户和密码信息。A ConnectionStringB DataSourceC UserInformationD Provider

考题 单选题在ADO.NET中,执行数据库的某个存储过程,则至少需要创建()并设置它们的属性,调用合适的方法。A 一个Connection 对象和一个Command对象B 一个Connection 对象和DataSet对象C 一个Command 对象和一个DataSet对象D 一个Command 对象和一个DataAdapter对象

考题 单选题在使用权ado.net设计数据库应用程序时,通过设置connection对象的()属性来指定连接到数据库时的用户和密码信息.A userinformationB datasourceC PROVIDERD connectionstring

考题 单选题在.Net Framework中,能操作注册表的对象是()A RegistryB ConfigurationManager(配置文件)C SqlAdapter(是ADO.NET里的)D FormsAuthentication

考题 单选题You work as an application developer at Contoso.com. You use Microsoft .NET Framework 3.5 and Microsoft ADO.NET to develop an application. The user name and password that is kept by the connection string is stored directly in the code of the application. You want to make sure that the password in the connection string is as protected.   What should you do? ()A  Add the connection string to the Settings.settings file.B  Add connection string to the Web.config file and use protected configuration.C  Use the TRUE setting in the Persist Security Info keyword.D  Use the FALSE setting in the Persist Security Info keyword

考题 填空题在ADO.NET中,通过执行Command对象的ExecuteReader方法返回的DataReader对象是一种()。

考题 填空题ADO.NET中五大对象是Connection、()、()、()和()