File: toqsqlconnection.cpp

package info (click to toggle)
tora 1.3.4-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 8,632 kB
  • ctags: 7,487
  • sloc: cpp: 68,518; perl: 1,475; ansic: 291; sh: 173; makefile: 51
file content (768 lines) | stat: -rw-r--r-- 18,876 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
//***************************************************************************
/*
 * TOra - An Oracle Toolkit for DBA's and developers
 * Copyright (C) 2000-2001,2001 Underscore AB
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation;  only version 2 of
 * the License is valid for this program.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 *      As a special exception, you have permission to link this program
 *      with the Oracle Client libraries and distribute executables, as long
 *      as you follow the requirements of the GNU GPL in regard to all of the
 *      software in the executable aside from Oracle client libraries.
 *
 *      Specifically you are not permitted to link this program with the
 *      Qt/UNIX, Qt/Windows or Qt Non Commercial products of TrollTech.
 *      And you are not permitted to distribute binaries compiled against
 *      these libraries without written consent from Underscore AB. Observe
 *      that this does not disallow linking to the Qt Free Edition.
 *
 * All trademarks belong to their respective owners.
 *
 ****************************************************************************/

#include "utils.h"

#include "toconnection.h"
#include "tomain.h"
#include "tosql.h"

#include <qsqldatabase.h>
#include <qsqlerror.h>
#include <qsqlfield.h>
#include <qsqlrecord.h>
#include <qsqlresult.h>

static toSQL SQLVersion("toQSqlConnection:Version",
			"SHOW VARIABLES LIKE 'version'",
			"Show version of database, "
			"last value of first return record of result is used.",
			"3.0",
			"MySQL");

static toSQL SQLVersionPgSQL("toQSqlConnection:Version",
			     "SELECT SUBSTR(version(), STRPOS(version(), ' ') + 1, STRPOS(version(), 'on') - STRPOS(version(), ' ') - 2)",
			     QString::null,
			     "7.1",
			     "PostgreSQL");

static toSQL SQLListObjects("toQSqlConnection:ListObjects",
			    "show tables",
			    "Get the available tables for a mysql connection",
			    "3.0",
			    "MySQL");

static toSQL SQLListObjectsPgSQL("toQSqlConnection:ListObjects",
				 "SELECT c.relname AS \"Tablename\",\n"
				 "       u.usename AS \"Owner\",\n"
				 "       c.relkind AS \"Type\"\n"
				 "  FROM pg_class c LEFT OUTER JOIN pg_user u ON c.relowner=u.usesysid\n"
				 " ORDER BY \"Tablename\"",
				 QString::null,
				 "7.1",
				 "PostgreSQL");

static toSQL SQLListSynonyms("toQSqlConnection:ListSynonyms",
			     "SELECT c.relname AS \"Synonym\", u.usename AS \"Schema\", c.relname AS \"Object\"\n"
			     "  FROM pg_class c LEFT OUTER JOIN pg_user u ON c.relowner=u.usesysid\n"
			     " ORDER BY u.usename, c.relname",
			     "Get synonym list, should have same columns",
			     "7.1",
			     "PostgreSQL");

static toSQL SQLColumnComments("toQSqlConnection:ColumnComments",
			       "select a.attname,b.description\n"
			       "from\n"
			       "  pg_attribute a,\n"
			       "  pg_description b,\n"
			       "  pg_class c LEFT OUTER JOIN pg_user u ON c.relowner=u.usesysid\n"
			       "where\n"
			       "  a.oid=b.objoid\n"
			       "  and c.oid=a.attrelid\n"
			       "  and (u.usename = :owner OR u.usesysid IS NULL)\n"
			       "  and c.relname=:table",
			       "Get the available comments on columns of a table, "
			       "must have same binds and columns",
			       "7.1",
			       "PostgreSQL");

static toSQL SQLColumnComments72("toQSqlConnection:ColumnComments",
				 "select a.attname,b.description\n"
				 "from\n"
				 "  pg_attribute a,\n"
				 "  pg_description b,\n"
				 "  pg_class c LEFT OUTER JOIN pg_user u ON c.relowner=u.usesysid\n"
				 "where\n"
				 "  a.attnum=b.objsubid\n"
				 "  and b.objoid=a.attrelid\n"
				 "  and c.oid=a.attrelid\n"
				 "  and (u.usename = :owner OR u.usesysid IS NULL)\n"
				 "  and c.relname=:table",
				 QString::null,
				 "7.2",
				 "PostgreSQL");

static QString QueryParam(const QString &in,toQList &params)
{
  QString ret;
  bool inString=false;
  toQList::iterator cpar=params.begin();
  QString query=QString::fromUtf8(in);

  std::map<QString,QString> binds;

  for(unsigned int i=0;i<query.length();i++) {
    QChar c=query.at(i);
    switch(char(c)) {
    case '\\':
      ret+=c;
      ret+=query.at(++i);
      break;
    case '\'':
      inString=!inString;
      ret+=c;
      break;
    case ':':
      if (!inString) {
	QString nam;
	for (i++;i<query.length();i++) {
	  c=query.at(i);
	  if (!c.isLetterOrNumber())
	    break;
	  nam+=c;
	}
	QString in;
	if (c=='<') {
	  for (i++;i<query.length();i++) {
	    c=query.at(i);
	    if (c=='>') {
	      i++;
	      break;
	    }
	    in+=c;
	  }
	}
	i--;
	
	if (nam.isEmpty())
	  throw QString("No bind name");

	if (binds.find(nam)!=binds.end()) {
	  ret+=binds[nam];
	  break;
	}
	if (cpar==params.end())
	  throw QString("Not all bind variables suplied");
	QString str;
	if ((*cpar).isNull()) {
	  str="NULL";
	} else if ((*cpar).isInt()||(*cpar).isDouble()) {
	  str=QString(*cpar);
	} else {
	  if (in!="noquote")
	    str+="'";
	  QString tmp=(*cpar);
	  for(unsigned int j=0;j<tmp.length();j++) {
	    QChar d=tmp.at(j);
	    switch(char(d)) {
	    case 0:
	      str+="\\0";
	      break;
	    case '\n':
	      str+="\\n";
	      break;
	    case '\t':
	      str+="\\t";
	      break;
	    case '\r':
	      str+="\\r";
	      break;
	    case '\'':
	      str+="\\\'";
	      break;
	    case '\"':
	      str+="\\\"";
	      break;
	    case '\\':
	      str+="\\\\";
	      break;
	    default:
	      str+=d;
	    }
	  }
	  if (in!="noquote")
	    str+="'";
	}
	binds[nam]=str;
	ret+=str;
	cpar++;
	break;
      }
    default:
      ret+=c;
    }
  }
  return ret;
}

static QString ErrorString(const QSqlError &err,const QString &sql=QString::null)
{
  QString ret;
  if (err.databaseText().isEmpty()) {
    if (err.driverText().isEmpty())
      ret="Unknown error";
    else
      ret=err.driverText();
  } else
    ret=err.databaseText();
  if (!sql.isEmpty())
    ret+="\n\n"+sql;
  return ret;
}

class toQSqlProvider : public toConnectionProvider {
public:
  static QString fromQSqlName(const QString &driv)
  {
    if (driv=="QMYSQL3")
      return "MySQL";
    else if (driv=="QPSQL7")
      return "PostgreSQL";
    else if (driv=="QTDS")
      return "Microsoft SQL/TDS";
    else if (driv=="QODBC3")
      return "ODBC";
    return QString::null;
  }
  static QString toQSqlName(const QString &driv)
  {
    if (driv=="MySQL")
      return "QMYSQL3";
    else if (driv=="PostgreSQL")
      return "QPSQL7";
    else if (driv=="Microsoft SQL/TDS")
      return "QTDS";
    else if (driv=="ODBC")
      return "QODBC3";
    return QString::null;
  }

  class qSqlSub : public toConnectionSub {
  public:
    toSemaphore Lock;
    QSqlDatabase *Connection;
    QString name;

    qSqlSub(QSqlDatabase *conn,const QString &name)
      : Lock(1),Connection(conn)
    { }
    ~qSqlSub()
    { QSqlDatabase::removeDatabase(name); }
    void throwError(const QCString &sql)
    { throw ErrorString(Connection->lastError(),QString::fromUtf8(sql)); }
  };

  class qSqlQuery : public toQuery::queryImpl {
    QSqlQuery *Query;
    QSqlRecord Record;
    qSqlSub *Connection;
    bool EOQ;
    unsigned int Column;
  public:
    qSqlQuery(toQuery *query,qSqlSub *conn)
      : toQuery::queryImpl(query),Connection(conn)
    { Column=0; EOQ=true; Column=0; Query=NULL; }
    virtual ~qSqlQuery()
    { delete Query; }
    virtual void execute(void);

    virtual void cancel(void)
    {
      // Not implemented
    }

    virtual toQValue readValue(void)
    {
      if (!Query)
	throw QString("Fetching from unexecuted query");
      if (EOQ)
	throw QString("Tried to read past end of query");

      Connection->Lock.down();
      QVariant val=Query->value(Column);
      if (!val.isValid()) {
	Connection->Lock.up();
	Connection->throwError(query()->sql());
      }
      Column++;
      if (Column==Record.count()) {
	Column=0;
	EOQ=!Query->next();
      }
      Connection->Lock.up();

      QString ret;
      switch(val.type()) {
      case QVariant::ByteArray:
#if 0
	{
	  QByteArray arr=val.toByteArray();
	  for(unsigned int i=0;i<arr.size();i++) {
	    char buf[10];
	    sprintf(buf,"%02x",int(arr[i]));
	    ret+=buf;
	  }
	}
	break;
#endif
      default:
	ret=val.toString();
      }

      return ret;
    }
    virtual bool eof(void)
    {
      return EOQ;
    }
    virtual int rowsProcessed(void)
    {
      if (!Query)
	return 0;
      Connection->Lock.down();
      int ret=Query->numRowsAffected();
      Connection->Lock.up();
      return ret;
    }
    virtual int columns(void)
    {
      Connection->Lock.down();
      int ret=Record.count();;
      Connection->Lock.up();
      return ret;
    }
    virtual std::list<toQuery::queryDescribe> describe(void)
    {
      Connection->Lock.down();
      std::list<toQuery::queryDescribe> ret;

      for (unsigned int i=0;i<Record.count();i++) {
	toQuery::queryDescribe desc;
	desc.AlignRight=false;
	desc.Name=Record.fieldName(i);
	desc.AlignRight=false;

	QSqlRecordInfo recInfo=Connection->Connection->recordInfo(*Query);
	QSqlFieldInfo info(recInfo.find(desc.Name));

	switch(info.type()) {
	default:
	  desc.Datatype="UNKNOWN";
	  break;
	case QVariant::Invalid:
	  desc.Datatype="INVALID";
	  break;
	case QVariant::List:
	  desc.Datatype="LIST";
	  break;
	case QVariant::Map:
	  desc.Datatype="MAP";
	  break;
	case QVariant::String:
#if 0
	  if (info.isTrim())
	    desc.Datatype="NCHAR";
	  else
	    desc.Datatype="NVARCHAR";
#else
	  if (info.isTrim())
	    desc.Datatype="CHAR";
	  else
	    desc.Datatype="VARCHAR";
#endif
	  break;
	case QVariant::StringList:
	  desc.Datatype="STRINGLIST";
	  break;
	case QVariant::Font:
	  desc.Datatype="FONT";
	  break;
	case QVariant::Pixmap:
	  desc.Datatype="PIXMAP";
	  break;
	case QVariant::Brush:
	  desc.Datatype="BRUSH";
	  break;
	case QVariant::Rect:
	  desc.Datatype="RECT";
	  break;
	case QVariant::Size:
	  desc.Datatype="SIZE";
	  break;
	case QVariant::Color:
	  desc.Datatype="COLOR";
	  break;
	case QVariant::Palette:
	  desc.Datatype="PALETTE";
	  break;
	case QVariant::ColorGroup:
	  desc.Datatype="COLORGROUP";
	  break;
	case QVariant::IconSet:
	  desc.Datatype="ICONSET";
	  break;
	case QVariant::Point:
	  desc.Datatype="POINT";
	  break;
	case QVariant::Image:
	  desc.Datatype="IMAGE";
	  break;
	case QVariant::Int:
	  desc.Datatype="INT";
	  desc.AlignRight=true;
	  break;
	case QVariant::UInt:       
	  desc.Datatype="UINT";
	  desc.AlignRight=true;
	  break;
	case QVariant::Bool:       
	  desc.Datatype="BOOL";
	  break;
	case QVariant::Double:     
	  desc.Datatype="DOUBLE";
	  desc.AlignRight=true;
	  break;
	case QVariant::CString:
	  if (info.isTrim())
	    desc.Datatype="CHAR";
	  else
	    desc.Datatype="VARCHAR";
	  break;
	case QVariant::PointArray: 
	  desc.Datatype="POINTARRAY";
	  break;
	case QVariant::Region:     
	  desc.Datatype="REGION";
	  break;
	case QVariant::Bitmap:     
	  desc.Datatype="BITMAP";
	  break;
	case QVariant::Cursor:     
	  desc.Datatype="CURSOR";
	  break;
	case QVariant::Date:
	  desc.Datatype="DATE";
	  break;
	case QVariant::Time:
	  desc.Datatype="TIME";
	  break;
	case QVariant::DateTime:   
	  desc.Datatype="DATETIME";
	  break;
	case QVariant::ByteArray:  
	  desc.Datatype="BLOB";
	  break;
	case QVariant::BitArray:
	  desc.Datatype="BITARRAY";
	  break;
	case QVariant::SizePolicy:
	  desc.Datatype="SIZEPOLICY";
	  break;
	case QVariant::KeySequence:
	  desc.Datatype="KEYSEQUENCE";
	  break;
	}

	if (info.length()>=0) {
	  desc.Datatype+=" (";
	  desc.Datatype+=QString::number(info.length());
	  if (info.precision()>0) {
	    desc.Datatype+=",";
	    desc.Datatype+=QString::number(info.precision());
	  }
	  desc.Datatype+=")";
	}
	desc.Null=!info.isRequired();

	ret.insert(ret.end(),desc);
      }
      Connection->Lock.up();
      return ret;
    }
  };

  class qSqlConnection : public toConnection::connectionImpl {
    qSqlSub *qSqlConv(toConnectionSub *sub)
    {
      qSqlSub *conn=dynamic_cast<qSqlSub *>(sub);
      if (!conn)
	throw QString("Internal error, not QSql sub connection");
      return conn;
    }
  public:
    qSqlConnection(toConnection *conn)
      : toConnection::connectionImpl(conn)
    { }

    virtual std::list<toConnection::objectName> objectNames(void)
    {
      std::list<toConnection::objectName> ret;

      toQuery tables(connection(),SQLListObjects);
      toConnection::objectName cur;
      while(!tables.eof()) {
	cur.Name=tables.readValueNull();
	if (tables.columns()>1)
	  cur.Owner=tables.readValueNull();
	else
	  cur.Owner=connection().database();
	if (tables.columns()>2)
	  cur.Type=tables.readValueNull();
	else
	  cur.Type="TABLE";
	ret.insert(ret.end(),cur);
      }

      return ret;
    }

    virtual std::map<QString,toConnection::objectName> synonymMap(std::list<toConnection::objectName> &objects)
    {
      std::map<QString,toConnection::objectName> ret;

      try {
	toConnection::objectName cur;
	cur.Type="A";

	toQuery synonyms(connection(),SQLListSynonyms);
	std::list<toConnection::objectName>::iterator i=objects.begin();
	while(!synonyms.eof()) {
	  QString synonym=synonyms.readValueNull();
	  cur.Owner=synonyms.readValueNull();
	  cur.Name=synonyms.readValueNull();
	  while(i!=objects.end()&&(*i)<cur)
	    i++;
	  if (i==objects.end())
	    break;
	  if (cur.Name==(*i).Name&&cur.Owner==(*i).Owner)
	    ret[synonym]=(*i);
	}
      } catch(...) {
      }

      return ret;
    }

    virtual toQDescList columnDesc(const toConnection::objectName &table)
    {
      toBusy busy;

      std::map<QString,QString> comments;
      try {
	toQuery comment(connection(),SQLColumnComments,table.Owner,table.Name);
	while(!comment.eof()) {
	  QString col=comment.readValue();
	  comments[col]=comment.readValueNull();
	}
      } catch (...) {
      }

      try {
	QString SQL="SELECT * FROM ";
	if (connection().provider()!="PostgreSQL") {
	  SQL+=quote(table.Owner);
	  SQL+=".";
	}
	SQL+=quote(table.Name);
	SQL+=" WHERE NULL=NULL";
	toQuery query(connection(),SQL);
	toQDescList desc=query.describe();
	for(toQDescList::iterator j=desc.begin();j!=desc.end();j++)
	  (*j).Comment=comments[(*j).Name];

	return desc;
      } catch(...) {
      }

      toQDescList ret;
      return ret;
    }

    virtual void commit(toConnectionSub *sub)
    {
      qSqlSub *conn=qSqlConv(sub);
      if (!conn->Connection->commit())
	conn->throwError("COMMIT");
    }
    virtual void rollback(toConnectionSub *sub)
    {
      qSqlSub *conn=qSqlConv(sub);
      if (!conn->Connection->rollback())
	conn->throwError("ROLLBACK");
    }

    virtual toConnectionSub *createConnection(void);

    void closeConnection(toConnectionSub *conn)
    {
      delete conn;
    }

    virtual QString version(toConnectionSub *sub)
    {
      QString ret;
      qSqlSub *conn=qSqlConv(sub);
      conn->Lock.down();
      try {
	QSqlQuery query=conn->Connection->exec(toSQL::string(SQLVersion,connection()));
	if (query.next()) {
	  if (query.isValid()) {
	    QSqlRecord record=conn->Connection->record(query);
	    QVariant val=query.value(record.count()-1);
	    switch(val.type()) {
#if 0
	    case QVariant::ByteArray:
	      {
		QByteArray arr=val.toByteArray();
		for(unsigned int i=0;i<arr.size();i++) {
		  char buf[10];
		  sprintf(buf,"%02x",int(arr[i]));
		  ret+=buf;
		}
	      }
	      break;
#endif
	    default:
	      ret=val.toString();
	    }
	  }
	}
      } catch(...) {
      }
      conn->Lock.up();
      return ret;
    }

    virtual toQuery::queryImpl *createQuery(toQuery *query,toConnectionSub *sub)
    { return new qSqlQuery(query,qSqlConv(sub)); }
    virtual void execute(toConnectionSub *sub,const QCString &sql,toQList &params)
    {
      qSqlSub *conn=qSqlConv(sub);

      conn->Lock.down();
      QSqlQuery Query(conn->Connection->exec(QueryParam(sql,params)));
      if (!Query.isActive()) {
	conn->Lock.up();
	conn->throwError(sql);
      }

      conn->Lock.up();
    }
  };

  toQSqlProvider(void)
    : toConnectionProvider("QSql",false)
  { }

  virtual void initialize(void)
  {
    QStringList lst=QSqlDatabase::drivers();
    for(unsigned int i=0;i<lst.count();i++) {
      QString t=fromQSqlName(lst[i]);
      if (!t.isNull())
	addProvider(t);
    }
  }

  ~toQSqlProvider()
  {
    QStringList lst=QSqlDatabase::drivers();
    for(unsigned int i=0;i<lst.count();i++) {
      QString t=fromQSqlName(lst[i]);
      if (!t.isNull())
	removeProvider(t);
    }
  }

  virtual toConnection::connectionImpl *provideConnection(const QString &prov,toConnection *conn)
  { return new qSqlConnection(conn); }
  virtual std::list<QString> providedHosts(const QString &)
  {
    std::list<QString> ret;
    ret.insert(ret.end(),"localhost");
    return ret;
  }
  virtual std::list<QString> providedDatabases(const QString &,const QString &host,const QString &,const QString &)
  {
    std::list<QString> ret;

    // Need implementation

    return ret;
  }
};

static toQSqlProvider QSqlProvider;

void toQSqlProvider::qSqlQuery::execute(void)
{
  while (Connection->Lock.getValue()>1) {
    Connection->Lock.down();
    toStatusMessage("Too high value on connection lock semaphore");
  }
  
  Connection->Lock.down();
  Query=new QSqlQuery(Connection->Connection->exec(QueryParam(query()->sql(),query()->params())));
  if (!Query->isActive()) {
    Connection->Lock.up();
    Connection->throwError(query()->sql());
  }
  
  if (Query->isSelect()) {
    Record=Connection->Connection->record(*Query);
    EOQ=!Query->next();
    Column=0;
  } else
    EOQ=true;
  
  Connection->Lock.up();
}

toConnectionSub *toQSqlProvider::qSqlConnection::createConnection(void)
{
  static int ID=0;
  ID++;

  QString dbName=QString::number(ID);
  QSqlDatabase *db=QSqlDatabase::addDatabase(toQSqlName(connection().provider()),dbName);
  if (!db)
    throw QString("Couldn't create QSqlDatabase object");
  db->setHostName(connection().host());
  QString dbname=connection().database();
  int pos=dbname.find(":");
  if (pos<0)
    db->setDatabaseName(dbname);
  else {
    db->setDatabaseName(dbname.mid(0,pos));
    db->setPort(dbname.mid(pos+1).toInt());
  }
  db->open(connection().user(),connection().password());
  if (!db->isOpen()) {
    QString t=ErrorString(db->lastError());
    QSqlDatabase::removeDatabase(dbName);
    throw t;
  }

  return new qSqlSub(db,dbName);
}