第二,异步请求返回参数,在success 回调函数 用res.data!=null来判断
/** 判断表_command中是否存有命令
*/
@Override
public boolean ifExistsCommand() {
String query_sql = "select Count(*) from _command "
Connection conn = DB.createConn()
PreparedStatement ps = DB.prepare(conn, query_sql)
ResultSet rs = null
try {
rs = ps.executeQuery(query_sql)
} catch (SQLException e) {
e.printStackTrace()
}
int rows = 0
if(null!=rs)
{
try {
while(rs.next()){
rows = rs.getInt(1)
}
} catch (SQLException e) {
e.printStackTrace()
}
}
DB.close(ps)
DB.close(conn)
if (rows >0) {
return true//当查询的结果不为空时返回true
} else {
return false
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)