JAVA初学者ResultSet结果集报错
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA初学者ResultSet结果集报错相关的知识,希望对你有一定的参考价值。
求大神指点迷津
你使用的是insert into插入语句,应该使用这个executeQuery方法:解释如下:
由于在执行插入操作时,调用了executeQuery方法,出现错误;插入操作应该调用executeUpdate方法
int result = stat.executeUpdate(sql.toString()); 参考技术A 点一下那412,看指向哪条代码追问
412就是这个
springboot 连接mongo副本集报错记录
参考技术A Please use \'MongoMappingContext#setAutoIndexCreation(boolean)\' or override \'MongoConfigurationSupport#autoIndexCreation()\' to be explicit.
However, we recommend setting up indices manually in an application ready block. You may use index derivation there as well.
解决方法,在配置文件中添加配置:
com.mongodb.MongoNotPrimaryException: Command failed with error 10107 (NotMaster): \'not master\' on server 127.0.0.1:27017
解决方法,需要将配置中的url改为:
以上是关于JAVA初学者ResultSet结果集报错的主要内容,如果未能解决你的问题,请参考以下文章