2019-04-22 Fred Gleason <fredg@paravelsystems.com>

* Added a commented out debug printf the in 'RDSqlQuery' constructor.
This commit is contained in:
Fred Gleason
2019-04-22 13:26:57 -04:00
parent 7bfa5c12d9
commit 615fe098b3
2 changed files with 3 additions and 0 deletions

View File

@@ -18574,3 +18574,5 @@
2019-04-04 Fred Gleason <fredg@paravelsystems.com> 2019-04-04 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rddbmgr(8) that could cause database corruption * Fixed a bug in rddbmgr(8) that could cause database corruption
when altering a table's charset/collation. when altering a table's charset/collation.
2019-04-22 Fred Gleason <fredg@paravelsystems.com>
* Added a commented out debug printf the in 'RDSqlQuery' constructor.

View File

@@ -61,6 +61,7 @@ RDSqlQuery::RDSqlQuery (const QString &query,bool reconnect):
} }
if(isActive()) { if(isActive()) {
//printf("QUERY: %s\n",(const char *)query.toUtf8());
QStringList f0=query.split(" "); QStringList f0=query.split(" ");
if(f0[0].toLower()=="select") { if(f0[0].toLower()=="select") {
for(int i=1;i<f0.size();i++) { for(int i=1;i<f0.size();i++) {