修改方法:
try {
Class.forName(driver)
Connection con = DriverManager.getConnection(url,user,password)
String insert = "insert friends(name) values(?)"//不用insert表friends的主键字段id
PreparedStatement prestatement = con.prepareStatement(insert)
String [] names = {"Rachel","Rose","Phoebe","Monica","Chandler","Joey"}
for(int i = 0i < 6i++ ) {
//prestatement.setInt(1,i)//这行也没有必要了
prestatement.setString(1,names[i])//索引由2改为1
prestatement.execute()
}
1、请检查您的 MySQL 帐号是否有相应的权限。2、检查一下应用下的 config 配置文件中的连接数据库的帐号是否正确。
3、检查一下数据库是否满了,如果数据库满了没有空间后也会出现这种情况。
改成 case isManage when 1 then 'true' else 'false' end 字段名,或者 case when isManage =1 then 'true' else 'false' end 字段名。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)