File: mysql_backend.cpp

package info (click to toggle)
cppdb 0.3.1%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 668 kB
  • sloc: cpp: 7,373; sh: 133; ansic: 72; makefile: 7
file content (1426 lines) | stat: -rw-r--r-- 39,051 bytes parent folder | download | duplicates (5)
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
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
///////////////////////////////////////////////////////////////////////////////
//                                                                             
//  Copyright (C) 2010-2011  Artyom Beilis (Tonkikh) <artyomtnk@yahoo.com>     
//                                                                             
//  Distributed under:
//
//                   the Boost Software License, Version 1.0.
//              (See accompanying file LICENSE_1_0.txt or copy at 
//                     http://www.boost.org/LICENSE_1_0.txt)
//
//  or (at your opinion) under:
//
//                               The MIT License
//                 (See accompanying file MIT.txt or a copy at
//              http://www.opensource.org/licenses/mit-license.php)
//
///////////////////////////////////////////////////////////////////////////////
#define CPPDB_DRIVER_SOURCE
#ifdef CPPDB_WITH_MYSQL
# define CPPDB_SOURCE
#endif
#include <mysql.h>

#include <cppdb/backend.h>
#include <cppdb/errors.h>
#include <cppdb/utils.h>
#include <cppdb/numeric_util.h>
#include <sstream>
#include <vector>
#include <limits>
#include <iomanip>
#include <stdlib.h>
#include <string.h>

#include <iostream>

namespace cppdb {

namespace mysql_backend {	

class cppdb_myerror : public cppdb_error 
{
public:
	cppdb_myerror(std::string const &str) : 
		cppdb_error("cppdb::mysql::" + str)
	{
	}
};
namespace unprep {
	class result : public backend::result {
	public:

		///
		/// Check if the next row in the result exists. If the DB engine can't perform
		/// this check without loosing data for current row, it should return next_row_unknown.
		///
		virtual next_row has_next() 
		{
			if(!res_)
				return last_row_reached;
			if(current_row_ >= mysql_num_rows(res_))
				return last_row_reached;
			else
				return next_row_exists;
		}
		///
		/// Move to next row. Should be called before first access to any of members. If no rows remain
		/// return false, otherwise return true
		///
		virtual bool next() 
		{
			if(!res_)
				return false;
			current_row_ ++;
			row_ = mysql_fetch_row(res_);
			if(!row_)
				return false;
			return true;
		}
		///
		/// Fetch an integer value for column \a col starting from 0.
		///
		/// Should throw invalid_column() \a col value is invalid, should throw bad_value_cast() if the underlying data
		/// can't be converted to integer or its range is not supported by the integer type.
		///
		char const *at(int col)
		{
			if(!res_)
				throw empty_row_access();
			if(col < 0 || col >= cols_)
				throw invalid_column();
			return row_[col];
		}

		char const *at(int col,size_t &len)
		{
			if(!res_)
				throw empty_row_access();
			if(col < 0 || col >= cols_)
				throw invalid_column();
			unsigned long *lengths = mysql_fetch_lengths(res_);
			if(lengths==0) 
				throw cppdb_myerror("Can't get length of column");
			len = lengths[col];
			return row_[col];
		}

		template<typename T>
		bool do_fetch(int col,T &v)
		{
			size_t len;
			char const *s=at(col,len);
			if(!s)
				return false;
			v = parse_number<T>(std::string(s,len),fmt_);
			return true;
		}
		virtual bool fetch(int col,short &v) 
		{
			return do_fetch(col,v);;
		}
		virtual bool fetch(int col,unsigned short &v) 
		{
			return do_fetch(col,v);
		}
		virtual bool fetch(int col,int &v)
		{
			return do_fetch(col,v);
		}
		virtual bool fetch(int col,unsigned &v) 
		{
			return do_fetch(col,v);
		}
		virtual bool fetch(int col,long &v)
		{
			return do_fetch(col,v);
		}
		virtual bool fetch(int col,unsigned long &v)
		{
			return do_fetch(col,v);
		}
		virtual bool fetch(int col,long long &v)
		{
			return do_fetch(col,v);
		}
		///
		virtual bool fetch(int col,unsigned long long &v)
		{
			return do_fetch(col,v);
		}
		virtual bool fetch(int col,float &v)
		{
			return do_fetch(col,v);
		}
		virtual bool fetch(int col,double &v)
		{
			return do_fetch(col,v);
		}
		virtual bool fetch(int col,long double &v)
		{
			return do_fetch(col,v);
		}
		///
		virtual bool fetch(int col,std::string &v)
		{
			size_t len;
			char const *s=at(col,len);
			if(!s)
				return false;
			v.assign(s,len);
			return true;
		}
		virtual bool fetch(int col,std::ostream &v)
		{
			size_t len;
			char const *s=at(col,len);
			if(!s)
				return false;
			v.write(s,len);
			return true;
		}
		///
		/// Fetch a date-time value for column \a col starting from 0.
		/// Returns true if ok, returns false if the column value is NULL and the referenced object should remain unchanged
		///
		/// Should throw invalid_column() \a col value is invalid. If the data can't be converted
		/// to date-time it should throw bad_value_cast()
		///
		virtual bool fetch(int col,std::tm &v) 
		{
			size_t len;
			char const *s=at(col,len);
			if(!s)
				return false;
			std::string tmp(s,len);
			v = parse_time(tmp);
			return true;
		}
		///
		/// Check if the column \a col is NULL starting from 0, should throw invalid_column() if the index out of range
		///
		virtual bool is_null(int col) 
		{
			return at(col) == 0;
		}
		///
		/// Return the number of columns in the result. Should be valid even without calling next() first time.
		///
		virtual int cols() 
		{
			return cols_;
		}
		virtual std::string column_to_name(int col) 
		{
			if(col < 0 || col >=cols_)
				throw invalid_column();
			if(!res_)
				throw empty_row_access();
			MYSQL_FIELD *flds=mysql_fetch_fields(res_);
			if(!flds) {
				throw cppdb_myerror("Internal error empty fileds");
			}
			return flds[col].name;
		}
		virtual int name_to_column(std::string const &name) 
		{
			if(!res_)
				throw empty_row_access();
			MYSQL_FIELD *flds=mysql_fetch_fields(res_);
			if(!flds) {
				throw cppdb_myerror("Internal error empty fileds");
			}
			for(int i=0;i<cols_;i++)
				if(name == flds[i].name)
					return i;
			return -1;
		}

		// End of API
		
		result(MYSQL *conn) : 
			res_(0),
			cols_(0),
			current_row_(0),
			row_(0)
		{
			fmt_.imbue(std::locale::classic());
			res_ = mysql_store_result(conn);
			if(!res_) {
				cols_ = mysql_field_count(conn);
				if(cols_ == 0)
					throw cppdb_myerror("Seems that the query does not produce any result");
			}
			else {
				cols_ = mysql_num_fields(res_);
			}

		}
		~result()
		{
			if(res_)
				mysql_free_result(res_);
		}
	private:
		std::istringstream fmt_;
		MYSQL_RES *res_;
		int cols_;
		unsigned current_row_;
		MYSQL_ROW row_;
	};
	
	class statement : public backend::statement {
	public:
		virtual std::string const &sql_query() 
		{
			return query_;
		}

		virtual void bind(int col,std::string const &s)
		{
			bind(col,s.c_str(),s.c_str()+s.size());
		}
		virtual void bind(int col,char const *s)
		{
			bind(col,s,s+strlen(s));
		}
		virtual void bind(int col,char const *b,char const *e) 
		{
			std::vector<char> buf(2*(e-b)+1);
			size_t len = mysql_real_escape_string(conn_,&buf.front(),b,e-b);
			std::string &s=at(col);
			s.clear();
			s.reserve(e-b+2);
			s+='\'';
			s.append(&buf.front(),len);
			s+='\'';
		}
		virtual void bind(int col,std::tm const &v) 
		{
			std::string &s = at(col);
			s.clear();
			s.reserve(30);
			s+='\'';
			s+=cppdb::format_time(v);
			s+='\'';
		}
		virtual void bind(int col,std::istream &v)
		{
			std::ostringstream ss;
			ss << v.rdbuf();
			std::string tmp=ss.str();
			bind(col,tmp);
		}
		template<typename T>
		void do_bind(int col,T v)
		{
			fmt_.str(std::string());
			if(!std::numeric_limits<T>::is_integer)
				fmt_ << std::setprecision(std::numeric_limits<T>::digits10+1);
			fmt_ << v;
			std::string tmp = fmt_.str();
			at(col).swap(tmp);
		}
		virtual void bind(int col,int v)
		{
			do_bind(col,v);
		}
		virtual void bind(int col,unsigned v)
		{
			do_bind(col,v);
		}
		virtual void bind(int col,long v)
		{
			do_bind(col,v);
		}
		virtual void bind(int col,unsigned long v)
		{
			do_bind(col,v);
		}
		virtual void bind(int col,long long v)
		{
			do_bind(col,v);
		}
		virtual void bind(int col,unsigned long long v)
		{
			do_bind(col,v);
		}
		virtual void bind(int col,double v) 
		{
			do_bind(col,v);
		}
		virtual void bind(int col,long double v)
		{
			do_bind(col,v);
		}
		virtual void bind_null(int col)
		{
			at(col)="NULL";
		}
		virtual long long sequence_last(std::string const &/*sequence*/) 
		{
			return mysql_insert_id(conn_);
		}
		virtual unsigned long long affected()
		{
			return mysql_affected_rows(conn_);
		}
		
		void bind_all(std::string &real_query)
		{
			size_t total = query_.size();
			for(unsigned i=0;i<params_.size();i++) {
				total+=params_[i].size();
			}
			real_query.clear();
			real_query.reserve(total);
			size_t pos_ = 0;
			for(unsigned i=0;i<params_.size();i++) {
				size_t marker = binders_[i];
				real_query.append(query_,pos_,marker-pos_);
				pos_ = marker+1;
				real_query.append(params_[i]);
			}
			real_query.append(query_,pos_,std::string::npos);
		}

		virtual result *query() 
		{
			std::string real_query;	
			bind_all(real_query);
			reset_params();
			if(mysql_real_query(conn_,real_query.c_str(),real_query.size())) {
				throw cppdb_myerror(mysql_error(conn_));
			}
			return new result(conn_);
		}
		
		virtual void exec() 
		{
			std::string real_query;	
			bind_all(real_query);
			reset_params();
			if(mysql_real_query(conn_,real_query.c_str(),real_query.size())) {
				throw cppdb_myerror(mysql_error(conn_));
			}
			MYSQL_RES *r=mysql_store_result(conn_);
			if(r){
				mysql_free_result(r);
				throw cppdb_myerror("Calling exec() on query!");
			}
		}

		std::string &at(int col)
		{
			if(col < 1 || col > params_no_) {
				throw invalid_placeholder();
			}
			return params_[col-1];
		}
		void reset_params()
		{
			params_.clear();
			params_.resize(params_no_,"NULL");
		}
		
		statement(std::string const &q,MYSQL *conn) :
			query_(q),
			conn_(conn),
			params_no_(0)
		{
			fmt_.imbue(std::locale::classic());
			bool inside_text = false;
			for(size_t i=0;i<query_.size();i++) {
				if(query_[i]=='\'') {
					inside_text=!inside_text;
				}
				if(query_[i]=='?' && !inside_text) {
					params_no_++;
					binders_.push_back(i);
				}
			}
			if(inside_text) {
				throw cppdb_myerror("Unterminated string found in query");
			}
			reset_params();
		}
		virtual ~statement()
		{
		}
		virtual void reset()
		{
		}

	private:
		std::ostringstream fmt_;
		std::vector<std::string> params_;
		std::vector<size_t> binders_;

		std::string query_;
		MYSQL *conn_;
		int params_no_;
	};
} // uprep

namespace prep {

	class result : public backend::result {
		struct bind_data {
			bind_data() :
				ptr(0),
				length(0),
				is_null(0),
				error(0)
			{
				memset(&buf,0,sizeof(buf));
			}
			char buf[128];
			std::vector<char> vbuf;
			char *ptr;
			unsigned long length;
			my_bool is_null;
			my_bool error;
		};
	public:

		///
		/// Check if the next row in the result exists. If the DB engine can't perform
		/// this check without loosing data for current row, it should return next_row_unknown.
		///
		virtual next_row has_next() 
		{
			if(current_row_ >= mysql_stmt_num_rows(stmt_))
				return last_row_reached;
			else
				return next_row_exists;
		}
		///
		/// Move to next row. Should be called before first access to any of members. If no rows remain
		/// return false, otherwise return true
		///
		virtual bool next() 
		{
			current_row_ ++;
			reset();
			if(cols_ > 0) {
				if(mysql_stmt_bind_result(stmt_,&bind_[0])) {
					throw cppdb_myerror(mysql_stmt_error(stmt_));
				}
			}
			int r = mysql_stmt_fetch(stmt_);
			if(r==MYSQL_NO_DATA) { 
				return false;
			}
			if(r==MYSQL_DATA_TRUNCATED) {
				for(int i=0;i<cols_;i++) {
					if(bind_data_[i].error && !bind_data_[i].is_null && bind_data_[i].length >= sizeof(bind_data_[i].buf)) {
						bind_data_[i].vbuf.resize(bind_data_[i].length);
						bind_[i].buffer = &bind_data_[i].vbuf.front();
						bind_[i].buffer_length = bind_data_[i].length;
						if(mysql_stmt_fetch_column(stmt_,&bind_[i],i,0)) {
							throw cppdb_myerror(mysql_stmt_error(stmt_));
						}
						bind_data_[i].ptr = &bind_data_[i].vbuf.front();
					}
				}
			}
			return true;
		}
		///
		/// Fetch an integer value for column \a col starting from 0.
		///
		/// Should throw invalid_column() \a col value is invalid, should throw bad_value_cast() if the underlying data
		/// can't be converted to integer or its range is not supported by the integer type.
		///
		bind_data &at(int col)
		{
			if(col < 0 || col >= cols_)
				throw invalid_column();
			if(bind_data_.empty())
				throw cppdb_myerror("Attempt to access data without fetching it first");
			return bind_data_.at(col);
		}

		template<typename T>
		bool do_fetch(int col,T &v)
		{
			bind_data &d=at(col);
			if(d.is_null)
				return false;

			v=parse_number<T>(std::string(d.ptr,d.length),fmt_);
			return true;
		}
		virtual bool fetch(int col,short &v) 
		{
			return do_fetch(col,v);;
		}
		///
		/// Fetch an integer value for column \a col starting from 0.
		/// Returns true if ok, returns false if the column value is NULL and the referenced object should remain unchanged
		///
		/// Should throw invalid_column() \a col value is invalid, should throw bad_value_cast() if the underlying data
		/// can't be converted to integer or its range is not supported by the integer type.
		///
		virtual bool fetch(int col,unsigned short &v) 
		{
			return do_fetch(col,v);
		}
		///
		/// Fetch an integer value for column \a col starting from 0.
		/// Returns true if ok, returns false if the column value is NULL and the referenced object should remain unchanged
		///
		/// Should throw invalid_column() \a col value is invalid, should throw bad_value_cast() if the underlying data
		/// can't be converted to integer or its range is not supported by the integer type.
		///
		virtual bool fetch(int col,int &v)
		{
			return do_fetch(col,v);
		}
		///
		/// Fetch an integer value for column \a col starting from 0.
		/// Returns true if ok, returns false if the column value is NULL and the referenced object should remain unchanged
		///
		/// Should throw invalid_column() \a col value is invalid, should throw bad_value_cast() if the underlying data
		/// can't be converted to integer or its range is not supported by the integer type.
		///
		virtual bool fetch(int col,unsigned &v) 
		{
			return do_fetch(col,v);
		}
		///
		/// Fetch an integer value for column \a col starting from 0.
		/// Returns true if ok, returns false if the column value is NULL and the referenced object should remain unchanged
		///
		/// Should throw invalid_column() \a col value is invalid, should throw bad_value_cast() if the underlying data
		/// can't be converted to integer or its range is not supported by the integer type.
		///
		virtual bool fetch(int col,long &v)
		{
			return do_fetch(col,v);
		}
		///
		/// Fetch an integer value for column \a col starting from 0.
		/// Returns true if ok, returns false if the column value is NULL and the referenced object should remain unchanged
		///
		/// Should throw invalid_column() \a col value is invalid, should throw bad_value_cast() if the underlying data
		/// can't be converted to integer or its range is not supported by the integer type.
		///
		virtual bool fetch(int col,unsigned long &v)
		{
			return do_fetch(col,v);
		}
		///
		/// Fetch an integer value for column \a col starting from 0.
		/// Returns true if ok, returns false if the column value is NULL and the referenced object should remain unchanged
		///
		/// Should throw invalid_column() \a col value is invalid, should throw bad_value_cast() if the underlying data
		/// can't be converted to integer or its range is not supported by the integer type.
		///
		virtual bool fetch(int col,long long &v)
		{
			return do_fetch(col,v);
		}
		///
		/// Fetch an integer value for column \a col starting from 0.
		/// Returns true if ok, returns false if the column value is NULL and the referenced object should remain unchanged
		///
		/// Should throw invalid_column() \a col value is invalid, should throw bad_value_cast() if the underlying data
		/// can't be converted to integer or its range is not supported by the integer type.
		///
		virtual bool fetch(int col,unsigned long long &v)
		{
			return do_fetch(col,v);
		}
		///
		/// Fetch a floating point value for column \a col starting from 0.
		/// Returns true if ok, returns false if the column value is NULL and the referenced object should remain unchanged
		///
		/// Should throw invalid_column() \a col value is invalid, should throw bad_value_cast() if the underlying data
		/// can't be converted to floating point value.
		///
		virtual bool fetch(int col,float &v)
		{
			return do_fetch(col,v);
		}
		///
		/// Fetch a floating point value for column \a col starting from 0.
		/// Returns true if ok, returns false if the column value is NULL and the referenced object should remain unchanged
		///
		/// Should throw invalid_column() \a col value is invalid, should throw bad_value_cast() if the underlying data
		/// can't be converted to floating point value.
		///
		virtual bool fetch(int col,double &v)
		{
			return do_fetch(col,v);
		}
		///
		/// Fetch a floating point value for column \a col starting from 0.
		/// Returns true if ok, returns false if the column value is NULL and the referenced object should remain unchanged
		///
		/// Should throw invalid_column() \a col value is invalid, should throw bad_value_cast() if the underlying data
		/// can't be converted to floating point value.
		///
		virtual bool fetch(int col,long double &v)
		{
			return do_fetch(col,v);
		}
		///
		/// Fetch a string value for column \a col starting from 0.
		/// Returns true if ok, returns false if the column value is NULL and the referenced object should remain unchanged
		///
		/// Should throw invalid_column() \a col value is invalid, any data should be convertible to
		/// text value (as formatting integer, floating point value or date-time as string).
		///
		virtual bool fetch(int col,std::string &v)
		{
			bind_data &d=at(col);
			if(d.is_null)
				return false;
			v.assign(d.ptr,d.length);
			return true;
		}
		///
		/// Fetch a BLOB value for column \a col starting from 0.
		/// Returns true if ok, returns false if the column value is NULL and the referenced object should remain unchanged
		///
		/// Should throw invalid_column() \a col value is invalid, any data should be convertible to
		/// BLOB value as text (as formatting integer, floating point value or date-time as string).
		///
		virtual bool fetch(int col,std::ostream &v)
		{
			bind_data &d=at(col);
			if(d.is_null)
				return false;
			v.write(d.ptr,d.length);
			return true;
		}
		///
		/// Fetch a date-time value for column \a col starting from 0.
		/// Returns true if ok, returns false if the column value is NULL and the referenced object should remain unchanged
		///
		/// Should throw invalid_column() \a col value is invalid. If the data can't be converted
		/// to date-time it should throw bad_value_cast()
		///
		virtual bool fetch(int col,std::tm &v) 
		{
			std::string tmp;
			if(!fetch(col,tmp))
				return false;
			v = parse_time(tmp);
			return true;
		}
		///
		/// Check if the column \a col is NULL starting from 0, should throw invalid_column() if the index out of range
		///
		virtual bool is_null(int col) 
		{
			return at(col).is_null;
		}
		///
		/// Return the number of columns in the result. Should be valid even without calling next() first time.
		///
		virtual int cols() 
		{
			return cols_;
		}
		virtual std::string column_to_name(int col) 
		{
			if(col < 0 || col >=cols_)
				throw invalid_column();
			MYSQL_FIELD *flds=mysql_fetch_fields(meta_);
			if(!flds) {
				throw cppdb_myerror("Internal error empty fileds");
			}
			return flds[col].name;
		}
		virtual int name_to_column(std::string const &name) 
		{
			MYSQL_FIELD *flds=mysql_fetch_fields(meta_);
			if(!flds) {
				throw cppdb_myerror("Internal error empty fileds");
			}
			for(int i=0;i<cols_;i++)
				if(name == flds[i].name)
					return i;
			return -1;
		}

		// End of API
		
		result(MYSQL_STMT *stmt) : 
			stmt_(stmt), current_row_(0),meta_(0)
		{
			fmt_.imbue(std::locale::classic());
			cols_ = mysql_stmt_field_count(stmt_);
			if(mysql_stmt_store_result(stmt_)) {
				throw cppdb_myerror(mysql_stmt_error(stmt_));
			}
			meta_ = mysql_stmt_result_metadata(stmt_);
			if(!meta_) {
				throw cppdb_myerror("Seems that the query does not produce any result");
			}
		}
		~result()
		{
			mysql_free_result(meta_);
		}
		void reset()
		{
			bind_.resize(0);
			bind_data_.resize(0);
			bind_.resize(cols_,MYSQL_BIND());
			bind_data_.resize(cols_,bind_data());
			for(int i=0;i<cols_;i++) {
				bind_[i].buffer_type = MYSQL_TYPE_STRING;
				bind_[i].buffer = bind_data_[i].buf;
				bind_[i].buffer_length = sizeof(bind_data_[i].buf);
				bind_[i].length = &bind_data_[i].length;
				bind_[i].is_null = &bind_data_[i].is_null;
				bind_[i].error = &bind_data_[i].error;
				bind_data_[i].ptr = bind_data_[i].buf;
			}
		}
	private:
		std::istringstream fmt_;
		int cols_;
		MYSQL_STMT *stmt_;
		unsigned current_row_;
		MYSQL_RES *meta_;
		std::vector<MYSQL_BIND> bind_;
		std::vector<bind_data> bind_data_;
	};

	class statement : public backend::statement {
		struct param {
			my_bool is_null;
			bool is_blob;
			unsigned long length;
			std::string value;
			void *buffer;
			param() : 
				is_null(1),
				is_blob(false),
				length(0),
				buffer(0)
			{
			}
			void set(char const *b,char const *e,bool blob=false)
			{
				length = e - b;
				buffer = const_cast<char *>(b);
				is_blob = blob;
				is_null = 0;
			}
			void set_str(std::string const &s)
			{
				value = s;
				buffer = const_cast<char *>(value.c_str());
				length = value.size();
				is_null = 0;
			}
			void set(std::tm const &t)
			{
				set_str(cppdb::format_time(t));
			}
			void bind_it(MYSQL_BIND *b) 
			{
				b->is_null = &is_null;
				if(!is_null) {
					b->buffer_type = is_blob ? MYSQL_TYPE_BLOB : MYSQL_TYPE_STRING;
					b->buffer = buffer;
					b->buffer_length = length;
					b->length = &length;
				}
				else {
					b->buffer_type = MYSQL_TYPE_NULL;
				}
			}
		};

	public:
		// Begin of API
		///
		/// Get the query the statement works with. Return it as is, used as key for statement
		/// caching 
		///
		virtual std::string const &sql_query() 
		{
			return query_;
		}

		///
		/// Bind a text value to column \a col (starting from 1). You may assume
		/// that the reference remains valid until real call of query() or exec()
		///
		/// Should throw invalid_placeholder() if the value of col is out of range. May
		/// ignore if it is impossible to know whether the placeholder exists without special
		/// support from back-end.
		///
		virtual void bind(int col,std::string const &s)
		{
			at(col).set(s.c_str(),s.c_str()+s.size());
		}
		///
		/// Bind a text value to column \a col (starting from 1). You may assume
		/// that the reference remains valid until real call of query() or exec()
		///
		/// Should throw invalid_placeholder() if the value of col is out of range. May
		/// ignore if it is impossible to know whether the placeholder exists without special
		/// support from back-end.
		///
		virtual void bind(int col,char const *s)
		{
			at(col).set(s,s+strlen(s));
		}
		///
		/// Bind a text value to column \a col (starting from 1). You may assume
		/// that the reference remains valid until real call of query() or exec()
		///
		/// Should throw invalid_placeholder() if the value of col is out of range. May
		/// ignore if it is impossible to know whether the placeholder exists without special
		/// support from back-end.
		///
		virtual void bind(int col,char const *b,char const *e) 
		{
			at(col).set(b,e);
		}
		///
		/// Bind a date-time value to column \a col (starting from 1).
		///
		/// Should throw invalid_placeholder() if the value of col is out of range. May
		/// ignore if it is impossible to know whether the placeholder exists without special
		/// support from back-end.
		///
		virtual void bind(int col,std::tm const &v) 
		{
			at(col).set(v);
		}
		///
		/// Bind a BLOB value to column \a col (starting from 1).
		///
		/// Should throw invalid_placeholder() if the value of col is out of range. May
		/// ignore if it is impossible to know whether the placeholder exists without special
		/// support from back-end.
		///
		virtual void bind(int col,std::istream &v)
		{
			std::ostringstream ss;
			ss << v.rdbuf();
			at(col).set_str(ss.str());
			at(col).is_blob = true;
		}
		template<typename T>
		void do_bind(int col,T v)
		{
			fmt_.str(std::string());
			if(!std::numeric_limits<T>::is_integer)
				fmt_ << std::setprecision(std::numeric_limits<T>::digits10+1);
			fmt_ << v;
			at(col).set_str(fmt_.str());
		}
		///
		/// Bind an integer value to column \a col (starting from 1).
		///
		/// Should throw invalid_placeholder() if the value of col is out of range. May
		/// ignore if it is impossible to know whether the placeholder exists without special
		/// support from back-end.
		///
		virtual void bind(int col,int v)
		{
			do_bind(col,v);
		}
		///
		/// Bind an integer value to column \a col (starting from 1).
		///
		/// Should throw invalid_placeholder() if the value of col is out of range. May
		/// ignore if it is impossible to know whether the placeholder exists without special
		/// support from back-end.
		///
		/// May throw bad_value_cast() if the value out of supported range by the DB. 
		///
		virtual void bind(int col,unsigned v)
		{
			do_bind(col,v);
		}
		///
		/// Bind an integer value to column \a col (starting from 1).
		///
		/// Should throw invalid_placeholder() if the value of col is out of range. May
		/// ignore if it is impossible to know whether the placeholder exists without special
		/// support from back-end.
		///
		/// May throw bad_value_cast() if the value out of supported range by the DB. 
		///
		virtual void bind(int col,long v)
		{
			do_bind(col,v);
		}
		///
		/// Bind an integer value to column \a col (starting from 1).
		///
		/// Should throw invalid_placeholder() if the value of col is out of range. May
		/// ignore if it is impossible to know whether the placeholder exists without special
		/// support from back-end.
		///
		/// May throw bad_value_cast() if the value out of supported range by the DB. 
		///
		virtual void bind(int col,unsigned long v)
		{
			do_bind(col,v);
		}
		///
		/// Bind an integer value to column \a col (starting from 1).
		///
		/// Should throw invalid_placeholder() if the value of col is out of range. May
		/// ignore if it is impossible to know whether the placeholder exists without special
		/// support from back-end.
		///
		/// May throw bad_value_cast() if the value out of supported range by the DB. 
		///
		virtual void bind(int col,long long v)
		{
			do_bind(col,v);
		}
		///
		/// Bind an integer value to column \a col (starting from 1).
		///
		/// Should throw invalid_placeholder() if the value of col is out of range. May
		/// ignore if it is impossible to know whether the placeholder exists without special
		/// support from back-end.
		///
		/// May throw bad_value_cast() if the value out of supported range by the DB. 
		///
		virtual void bind(int col,unsigned long long v)
		{
			do_bind(col,v);
		}
		///
		/// Bind a floating point value to column \a col (starting from 1).
		///
		/// Should throw invalid_placeholder() if the value of col is out of range. May
		/// ignore if it is impossible to know whether the placeholder exists without special
		/// support from back-end.
		///
		virtual void bind(int col,double v) 
		{
			do_bind(col,v);
		}
		///
		/// Bind a floating point value to column \a col (starting from 1).
		///
		/// Should throw invalid_placeholder() if the value of col is out of range. May
		/// ignore if it is impossible to know whether the placeholder exists without special
		/// support from back-end.
		///
		virtual void bind(int col,long double v)
		{
			do_bind(col,v);
		}
		///
		/// Bind a NULL value to column \a col (starting from 1).
		///
		/// Should throw invalid_placeholder() if the value of col is out of range. May
		/// ignore if it is impossible to know whether the placeholder exists without special
		/// support from back-end.
		///
		virtual void bind_null(int col)
		{
			at(col)=param();
		}
		///
		/// Fetch the last sequence generated for last inserted row. May use sequence as parameter
		/// if the database uses sequences, should ignore the parameter \a sequence if the last
		/// id is fetched without parameter.
		///
		/// Should be called after exec() for insert statement, otherwise the behavior is undefined.
		///
		/// MUST throw not_supported_by_backend() if such option is not supported by the DB engine.
		///
		virtual long long sequence_last(std::string const &/*sequence*/) 
		{
			return mysql_stmt_insert_id(stmt_);
		}
		///
		/// Return the number of affected rows by last statement.
		///
		/// Should be called after exec(), otherwise behavior is undefined.
		///
		virtual unsigned long long affected()
		{
			return mysql_stmt_affected_rows(stmt_);
		}
		
		void bind_all()
		{
			if(!params_.empty()) {
				for(unsigned i=0;i<params_.size();i++)
					params_[i].bind_it(&bind_[i]);
				if(mysql_stmt_bind_param(stmt_,&bind_.front())) {
					throw cppdb_myerror(mysql_stmt_error(stmt_));
				}
			}
		}

		///
		/// Return SQL Query result, MAY throw cppdb_error if the statement is not a query
		///
		virtual result *query() 
		{
			bind_all();
			if(mysql_stmt_execute(stmt_)) {
				throw cppdb_myerror(mysql_stmt_error(stmt_));
			}
			return new result(stmt_);
		}
		///
		/// Execute a statement, MAY throw cppdb_error if the statement returns results.
		///
		virtual void exec() 
		{
			bind_all();
			if(mysql_stmt_execute(stmt_)) {
				throw cppdb_myerror(mysql_stmt_error(stmt_));
			}
			if(mysql_stmt_store_result(stmt_)) {
				throw cppdb_myerror(mysql_stmt_error(stmt_));
			}
			MYSQL_RES *r=mysql_stmt_result_metadata(stmt_);
			if(r) {
				mysql_free_result(r);
				throw cppdb_myerror("Calling exec() on query!");
			}
		}
		// End of API

		// Caching support
		
		statement(std::string const &q,MYSQL *conn) :
			query_(q),
			stmt_(0),
			params_count_(0)
		{
			fmt_.imbue(std::locale::classic());

			stmt_ = mysql_stmt_init(conn);
			try {
				if(!stmt_) {
					throw cppdb_myerror(" Failed to create a statement");
				}
				if(mysql_stmt_prepare(stmt_,q.c_str(),q.size())) {
					throw cppdb_myerror(mysql_stmt_error(stmt_));
				}
				params_count_ = mysql_stmt_param_count(stmt_);
				reset_data();
			}
			catch(...) {
				if(stmt_)
					mysql_stmt_close(stmt_);
				throw;
			}
		}
		virtual ~statement()
		{
			mysql_stmt_close(stmt_);
		}
		void reset_data()
		{
			params_.resize(0);
			params_.resize(params_count_);
			bind_.resize(0);
			bind_.resize(params_count_,MYSQL_BIND());
		}
		virtual void reset()
		{
			reset_data();
			mysql_stmt_reset(stmt_);
		}

	private:
		param &at(int col)
		{
			if(col < 1 || col > params_count_)
				throw invalid_placeholder();
			return params_[col-1];
		}

		std::ostringstream fmt_;
		std::vector<param> params_;
		std::vector<MYSQL_BIND> bind_;
		std::string query_;
		MYSQL_STMT *stmt_;
		int params_count_;
	};

} // prep

class connection;

class connection : public backend::connection {
public:
	connection(connection_info const &ci) : 
		backend::connection(ci),
		conn_(0)
	{
		conn_ = mysql_init(0);
		if(!conn_) {
			throw cppdb_error("cppdb::mysql failed to create connection");
		}
		std::string host = ci.get("host","");
		char const *phost = host.empty() ? 0 : host.c_str();
		std::string user = ci.get("user","");
		char const *puser = user.empty() ? 0 : user.c_str();
		std::string password = ci.get("password","");
		char const *ppassword = password.empty() ? 0 : password.c_str();
		std::string database = ci.get("database","");
		char const *pdatabase = database.empty() ? 0 : database.c_str();
		int port = ci.get("port",0);
		std::string unix_socket = ci.get("unix_socket","");
		char const *punix_socket = unix_socket.empty() ? 0 : unix_socket.c_str();

#if MYSQL_VERSION_ID >= 50507
		std::string default_auth = ci.get("default_auth","");
		if (!default_auth.empty()) {
			mysql_set_option(MYSQL_DEFAULT_AUTH, default_auth.c_str());
		}
#endif
		std::string init_command = ci.get("init_command","");
		if(!init_command.empty()) {
			mysql_set_option(MYSQL_INIT_COMMAND, init_command.c_str());
		}
		if(ci.has("opt_compress")) {
			if(ci.get("opt_compress", 1)) {
				mysql_set_option(MYSQL_OPT_COMPRESS, NULL);
			}
		}
		if(ci.has("opt_connect_timeout")) {
			if(unsigned connect_timeout = ci.get("opt_connect_timeout", 0)) {
				mysql_set_option(MYSQL_OPT_CONNECT_TIMEOUT, &connect_timeout);
			}
		}
		if(ci.has("opt_guess_connection")) {
			if(ci.get("opt_guess_connection", 1)) {
				mysql_set_option(MYSQL_OPT_GUESS_CONNECTION, NULL);
			}
		}
		if(ci.has("opt_local_infile")) {
			if(unsigned local_infile = ci.get("opt_local_infile", 0)) {
				mysql_set_option(MYSQL_OPT_CONNECT_TIMEOUT, &local_infile);
			}
		}
		if(ci.has("opt_named_pipe")) {
			if(ci.get("opt_named_pipe", 1)) {
				mysql_set_option(MYSQL_OPT_NAMED_PIPE, NULL);
			}
		}
		if(ci.has("opt_protocol")) {
			if(unsigned protocol = ci.get("opt_protocol", 0)) {
				mysql_set_option(MYSQL_OPT_PROTOCOL, &protocol);
			}
		}
		if(ci.has("opt_read_timeout")) {
			if(unsigned read_timeout = ci.get("opt_read_timeout", 0)) {
				mysql_set_option(MYSQL_OPT_READ_TIMEOUT, &read_timeout);
			}
		}
		if(ci.has("opt_reconnect")) {
			if(unsigned reconnect = ci.get("opt_reconnect", 1)) {
				my_bool value = reconnect;
				mysql_set_option(MYSQL_OPT_RECONNECT, &value);
			}
		}
#if MYSQL_VERSION_ID >= 50507
		std::string plugin_dir = ci.get("plugin_dir", "");
		if(!plugin_dir.empty()) {
			mysql_set_option(MYSQL_PLUGIN_DIR, plugin_dir.c_str());
		}
#endif
		std::string set_client_ip = ci.get("set_client_ip", "");
		if(!set_client_ip.empty()) {
			mysql_set_option(MYSQL_SET_CLIENT_IP, set_client_ip.c_str());
		}
		if(ci.has("opt_ssl_verify_server_cert")) {
			if(unsigned verify = ci.get("opt_ssl_verify_server_cert", 1)) {
				my_bool value = verify;
				mysql_set_option(MYSQL_OPT_SSL_VERIFY_SERVER_CERT, &value);
			}
		}
		if(ci.has("opt_use_embedded_connection")) {
			if(ci.get("opt_use_embedded_connection", 1)) {
				mysql_set_option(MYSQL_OPT_USE_EMBEDDED_CONNECTION, NULL);
			}
		}
		if(ci.has("opt_use_remote_connection")) {
			if(ci.get("opt_use_remote_connection", 1)) {
				mysql_set_option(MYSQL_OPT_USE_REMOTE_CONNECTION, NULL);
			}
		}
		if(ci.has("opt_write_timeout")) {
			if(unsigned write_timeout = ci.get("opt_write_timeout", 0)) {
				mysql_set_option(MYSQL_OPT_WRITE_TIMEOUT, &write_timeout);
			}
		}
		std::string read_default_file = ci.get("read_default_file", "");
		if(!read_default_file.empty()) {
			mysql_set_option(MYSQL_READ_DEFAULT_FILE, read_default_file.c_str());
		}
		std::string read_default_group = ci.get("read_default_group", "");
		if(!read_default_group.empty()) {
			mysql_set_option(MYSQL_READ_DEFAULT_GROUP, read_default_group.c_str());
		}
		if(ci.has("report_data_truncation")) {
			if(unsigned report = ci.get("report_data_truncation", 1)) {
				my_bool value = report;
				mysql_set_option(MYSQL_REPORT_DATA_TRUNCATION, &value);
			}
		}
#if MYSQL_VERSION_ID >= 40101
		if(ci.has("secure_auth")) {
			if(unsigned secure = ci.get("secure_auth", 1)) {
				my_bool value = secure;
				mysql_set_option(MYSQL_SECURE_AUTH, &value);
			}
		}
#endif
		std::string set_charset_dir = ci.get("set_charset_dir", "");
		if(!set_charset_dir.empty()) {
			mysql_set_option(MYSQL_SET_CHARSET_DIR, set_charset_dir.c_str());
		}
		std::string set_charset_name = ci.get("set_charset_name", "");
		if(!set_charset_name.empty()) {
			mysql_set_option(MYSQL_SET_CHARSET_NAME, set_charset_name.c_str());
		}
		std::string shared_memory_base_name = ci.get("shared_memory_base_name", "");
		if(!shared_memory_base_name.empty()) {
			mysql_set_option(MYSQL_SHARED_MEMORY_BASE_NAME, shared_memory_base_name.c_str());
		}
		
		if(!mysql_real_connect(conn_,phost,puser,ppassword,pdatabase,port,punix_socket,0)) {
			std::string err="unknown";
			try { err = mysql_error(conn_); }catch(...){}
			mysql_close(conn_);
			throw cppdb_myerror(err);
		}

	}
	~connection()
	{
		mysql_close(conn_);
	}
	// API 
	
	void exec(std::string const &s) 
	{
		if(mysql_real_query(conn_,s.c_str(),s.size())) {
			throw cppdb_myerror(mysql_error(conn_));
		}
	}

	///
	/// Start new isolated transaction. Would not be called
	/// withing other transaction on current connection.
	///
	virtual void begin() 
	{
		exec("BEGIN");
	}
	///
	/// Commit the transaction, you may assume that is called after begin()
	/// was called.
	///
	virtual void commit() 
	{
		exec("COMMIT");
	}
	///
	/// Rollback the transaction. MUST never throw!!!
	///
	virtual void rollback() 
	{
		try {
			exec("ROLLBACK");
		}
		catch(...) {
		}
	}
	///
	/// Create a prepared statement \a q. May throw if preparation had failed.
	/// Should never return null value.
	///
	virtual backend::statement *prepare_statement(std::string const &q)
	{
		return new prep::statement(q,conn_);
	}
	virtual backend::statement *create_statement(std::string const &q)
	{
		return new unprep::statement(q,conn_);
	}
	///
	/// Escape a string for inclusion in SQL query. May throw not_supported_by_backend() if not supported by backend.
	///
	virtual std::string escape(std::string const &s) 
	{
		return escape(s.c_str(),s.c_str()+s.size());
	}
	///
	/// Escape a string for inclusion in SQL query. May throw not_supported_by_backend() if not supported by backend.
	///
	virtual std::string escape(char const *s)
	{
		return escape(s,s+strlen(s));
	}
	///
	/// Escape a string for inclusion in SQL query. May throw not_supported_by_backend() if not supported by backend.
	///
	virtual std::string escape(char const *b,char const *e) 
	{
		std::vector<char> buf(2*(e-b)+1);
		size_t len = mysql_real_escape_string(conn_,&buf.front(),b,e-b);
		std::string result;
		result.assign(&buf.front(),len);
		return result;
	}
	///
	/// Get the name of the driver, for example sqlite3, odbc
	///
	virtual std::string driver() 
	{
		return "mysql";
	}
	///
	/// Get the name of the SQL Server, for example sqlite3, mssql, oracle, differs from driver() when
	/// the backend supports multiple databases like odbc backend.
	///
	virtual std::string engine()
	{
		return "mysql";
	}

	// API
	
private:
	///
	/// Set a custom MYSQL option on the connection.
	/// 
	///
	void mysql_set_option(mysql_option option, const void* arg)
	{
		// char can be casted to void but not the other way, support older API
		if(mysql_options(conn_, option, static_cast<char const *>(arg))) {
			throw cppdb_error("cppdb::mysql failed to set option");
		}
	}
	connection_info ci_;
	MYSQL *conn_;
};


} // backend
} // cppdb

extern "C" {
	CPPDB_DRIVER_API cppdb::backend::connection *cppdb_mysql_get_connection(cppdb::connection_info const &cs)
	{
		return new cppdb::mysql_backend::connection(cs);
	}
}