请将sqlreader.java中:
复制内容到剪贴板
代码:
if (!withdata) {
// // 修正bug,当输入的sql以分号结束时
// while ((sqlcopy = sqlcopy.trim()).endsWith(";")) {
// sqlcopy = sqlcopy.substring(0, sqlcopy.length() - 1);
// }
//
// sqlcopy = "select * from (" + sqlcopy + ") a where 1=0";
sqlcopy = SqlUtil.toNodataSql(sqlcopy);
}
改为
复制内容到剪贴板
代码:
if (!withdata) {
// // 修正bug,当输入的sql以分号结束时
while ((sqlcopy = sqlcopy.trim()).endsWith(";")) {
sqlcopy = sqlcopy.substring(0, sqlcopy.length() - 1);
}
sqlcopy = "select * from (" + sqlcopy + ") a where 1=0";
// sqlcopy = SqlUtil.toNodataSql(sqlcopy);
}