mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
fix compile errors
This commit is contained in:
@@ -121,7 +121,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
DB db = new SQLLoggingDB(((SQLLoggingDB)context.get("db"));
|
||||
DB db = new SQLLoggingDB((SQLLoggingDB)context.get("db"));
|
||||
db.useCache(false);
|
||||
|
||||
db.begin();
|
||||
|
||||
@@ -132,7 +132,7 @@
|
||||
{
|
||||
|
||||
String selection = ((Combo)dlg.get("dbs")).getText();
|
||||
DB db = new SQLLoggingDB(((SQLLoggingDB)context.get("db"));
|
||||
DB db = new SQLLoggingDB((SQLLoggingDB)context.get("db"));
|
||||
db.useCache(false);
|
||||
DB.Result tables = db.execute("show tables from `" + selection + "`");
|
||||
|
||||
@@ -162,7 +162,7 @@
|
||||
{
|
||||
String selection = ((Combo)context.get("/tables")).getText();
|
||||
String dbsel = ((Combo)context.get("/dbs")).getText();
|
||||
DB db = new SQLLoggingDB(((SQLLoggingDB)context.get("db"));
|
||||
DB db = new SQLLoggingDB((SQLLoggingDB)context.get("db"));
|
||||
db.useCache(false);
|
||||
DB.Result otherFields = db.execute("show columns from `" + dbsel + "`.`" + selection + "` where type not like '%blob'");
|
||||
DB.Result blobFields = db.execute("show columns from `" + dbsel + "`.`" + selection + "` where type like '%blob'");
|
||||
|
||||
Reference in New Issue
Block a user