logo - 刷刷题
下载APP
【简答题】

数据库ip地址为192.168.1.11,在本地通过ip 和端口去连接,即mysql -h192.168.1.11 -P3306-utest -ptest连接数据库, 下面的哪些授权方式可以授权这个连接? A. grant usage on *.* to test@'127.0.0.1' identified by 'test'; B. grant select on *.* to test@'192.168.1.11' identified by 'test'; C. grant select on *.* to test@'localhost' identified by 'test'; D. grant usage on *.* to test@'192.168.1.%' identified by ‘test';

举报
参考答案:
参考解析:
.
刷刷题刷刷变学霸
举一反三

【单选题】有SQL SERVER2005数据库PUBS,PUBS库中有一表UserLogin,表结构如下:UserName Varchar(50) PrimaryKeyPassword Varchar(20) 阅读下面的WINFORM(C#)代码:private void button1_Click (object sender, System.EventArgs e){ SqlConnection myC...

A.
在UserLogin表中新增加一条记录
B.
报错,ds.AcceptChanges()与da.Update(ds, “UserLogin”)不能同时用
C.
不报错,但没有将数据记录增加到UserLogin表中
D.
报错,不能用DateTime.Now.Ticks.ToString()给字段赋值

【多选题】PHP操作MySQL数据库的扩展包括()

A.
mysql扩展
B.
mysqli扩展
C.
sqlserver扩展
D.
PDO扩展