sql:select * from user_all_tables where table_name='tableName'
2、java如何判断数据库表是否存在
可以利用上面的sql,执行获取结果,相应的java代码如下:
String helperName= delegator.getGroupHelperName("com.asiainfo")
SQLProcessor sqlProcessor= new SQLProcessor(helperName)
String sql = "select * from user_all_tables where table_name='"+table+"'"
ResultSet rsTables =sqlProcessor.executeQuery(sql)
if(rsTables.next()){
Debug.logWarning("table:"+table+" exists", module)
}else{
Debug.logWarning("table:"+table+" does not exist", module)
}
你这种全字段匹配查询不能这么写的,这种查询叫全文检索,sqlite有现成的全文检索方案,需要在sqlite上做些配置官方文档上有写的
http://www.sqlite.org/fts3.html
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)