【问答题】
在ADO对象模型中,共有几个对象?几个集合?分别是什么?
A、已知数据表Student存储在SQL Server服务器的School数据库中,用户名为sa,密码为xyz123,创建student数据表的命令为:
B、CREATE TABLE Student (
C、SName varchar(20) Primary Key Not NULL,
D、SPwd Varchar(15) Not NULL
E、 )
F、试根据下面的代码使用命令对象完成在student数据表中插入一条记录。
H、<%
I、tname = Request.Form("txtName") ’接收到的用户名
J、tpwd = Request.Form("txtPwd")
K、’接收到的密码
%>