数据库中的模式匹配
我想搜索特定列的每一行,如果它与存储在数组或列表中的字符串匹配,则条件是更新数据库中的状态列。
注意:我的代码正在从文本文件读取并写入数据库,但是在比较时它不起作用
if(textFileStrings.equals(dbtext))
pstmt.setInt(status,0);
prepareStatement.updateQuery();
I want to search every rows of specific column and if it matches with the string that is stored in an array or list the condition is update the status column in the db.
Note: My code is reading from text file and writing to the db but when on comparison it doesnt works
if(textFileStrings.equals(dbtext))
pstmt.setInt(status,0);
prepareStatement.updateQuery();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试添加括号,因此:
try adding brackets, thus: