下面是创建Statement接口并执行executeUpdate方法的代码片段:


下面是创建Statement接口并执行executeUpdate方法的代码片段:

conn=DriverManager.getConnection("jdbc:mysql:///book","root","123456");

stmt=conn.createStatement();

Stringstrsql="insertintobookvalues('TP003','ASP.NET','李','清华出版社',35)";

n=stmt.executeUpdate(strsql);

代码执行成功后n的值为 ()。

A.1

B.0

C.-1

D.一个整数

正确答案:A


Tag:面向对象程序设计 代码 清华 时间:2021-05-13 20:43:44