-
Notifications
You must be signed in to change notification settings - Fork 0
/
PISDA.cs
1322 lines (1129 loc) · 39.7 KB
/
PISDA.cs
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
using System;
using System.IO; //MemoryStream to get bytes of blob from reader.
using System.Data; //DataSet and DataTable
using Mono.Data.Sqlite;
/*
PISDA - Provide Instant SQLite Data Access.
This program allow to do the following things:
1. Set DBFileName, or use already defined value.
2. Open database and set connection to this, and keep this connection opened.
3. Execute SQL-requests for already opened SQLite3 database.
4. Run different methods with different SQL-requests, for this opened SQLite3 database.
5. Test all that methods, in Main()
This program can working with System.Data.SQLite.dll, and with any SQLite3 database.
This program can open any specified SQLite3 database, and execute SQL-requests.
To build it, use:
set fdir=%WINDIR%\Microsoft.NET\Framework
set csc=%fdir%\v4.0.30319\csc.exe
set msbuild=%fdir%\v4.0.30319\msbuild.exe
%csc% /out:PISDA.exe /reference:System.Data.SQLite.dll PISDA.cs
PISDA.exe
pause
*/
/*
// Use System.Data.SQLite.dll in C#:
private static string DBFileName = @"test.db"; //set database file
private static string ConnectionString = @"Data Source="+DBFileName+";Version=3;New=False;Compress=True"; //string to connect this db-file
private static Mono.Data.Sqlite.SqliteConnection Connection = new Mono.Data.Sqlite.SqliteConnection(ConnectionString); //database-connection
private statis void OpenConnectionIfNeed(){ //open this if it's closed
//Console.WriteLine("Connection.State: "+Connection.State); //show connection-stata open/close
if (Connection.State != System.Data.ConnectionState.Open) { //If db-connection closed
Connection.Open(); //open this connection
}
Console.WriteLine("Connection.State: "+Connection.State); //show connection-stata open/close
}
private static object db_lock = new object(); //Object to lock database, when some query executed.
//Then, in the code, there is possible to do the following things:
string sql = "SQL-request";
lock (db_lock) //lock database to do some actions
{
// Actions:
OpenConnectionIfNeed(); //open connection if need
//DataTable schema = Connection.GetSchema(arg); //Get database-schema
//Create new Mono.Data.Sqlite.SqliteCommand for the current, opened database-connection, and add sql-query there.
using(Mono.Data.Sqlite.SqliteCommand cmd = new Mono.Data.Sqlite.SqliteCommand(sql, Connection)){
//Inside this using, there can executed the different methods:
//sql...
//cmd.Parameters.Add(...); //For writting the bytes, as blog, for example
//cmd.ExecuteNonQuery(); //execute sql, and return int, without result
//cmd.ExecuteReader(); //return data
//cmd.ExecuteScalar(); //return object with different types
//etc...
//Connection.Close(); //In the end of execution, there is possible to close database-connection
//return result; //and return result.
}
} //unlock database
//All this can be also, a public static methods, that is accepting a "string sql".
*/
namespace PISDA
{
class PISDA
{
//Database FileName string
private static string _DBFileName = null; //Filename of database to connect it
//get or set value of this
public static string DBFileName
{
get{
return _DBFileName;
}
set
{
_DBFileName = value;
if (!File.Exists(DBFileName)){ //if DB-file not exists
Mono.Data.Sqlite.SqliteConnection.CreateFile(DBFileName); //create this file with database
}
_ConnectionString = ConnectionString; //update connection string, with this file.
_Connection = new Mono.Data.Sqlite.SqliteConnection(_ConnectionString); //and open Connection with this string.
//...
if(new System.IO.FileInfo(DBFileName).Length == 0){
string sqlquery = @File.ReadAllText(DBFileName+".sql");
ExecuteSQL(sqlquery); //execute SQL-query to create DataBase
}
}
}
// To change this, use:
// get: string file = PISDA.DBFileName;
// set: PISDA.DBFileName = "filename.db3";
//Connection strins
private static string _ConnectionString = null; //string to connect database
//get or set value of this
public static string ConnectionString
{
get{
// Update connection string, according new DB-file, and return this.
//_ConnectionString = @"URI=file:"+DBFileName;
//_ConnectionString = @"Data Source=" + DBFileName + ";Version=3;";
_ConnectionString = @"Data Source="+DBFileName+";Version=3;New=False;Compress=True"; //string to connect database
return _ConnectionString;
}
set
{
//or set custom value for this:
_ConnectionString = value;
//...
}
}
// To change this, use:
// get: string str = PISDA.ConnectionString;
// set: PISDA.ConnectionString = "value";
//Connection to database
private static Mono.Data.Sqlite.SqliteConnection _Connection = null; //Mono.Data.Sqlite.SqliteConnection to database.
//When this defined, then:
// open - _Connection.Open(); or OpenConnectionIfNeed();
// close - _Connection.Close(); or CloseConnectionIfNeed(); (+ CloseConnections = true/false);
// Do not do _Connection.Open(); when this opened, else throw exception.
//get or set value of this
public static Mono.Data.Sqlite.SqliteConnection Connection
{
get //get Mono.Data.Sqlite.SqliteConnection to the database
{
if (_Connection == null) //if connection not defined
{
_Connection = new Mono.Data.Sqlite.SqliteConnection(ConnectionString); //generate connection string, and connect to database with this
_Connection.Open(); //open database, after connect to this.
}
else if (_Connection.State != System.Data.ConnectionState.Open) //if connection already defined
{
_Connection.Open(); //Just open this
}
else //else if already opened
{}
return _Connection; //and return an opened Mono.Data.Sqlite.SqliteConnection to this database.
}
set //or set this connection from ConnectionString (value)
{
_Connection = new Mono.Data.Sqlite.SqliteConnection(value); //set connection with value
_Connection.Open(); //open this
}
}
// get: _cmd = new Mono.Data.Sqlite.SqliteCommand(Connection); //connection will be opened, and _cmd will be binded.
// set: Connection = new Mono.Data.Sqlite.SqliteConnection(_ConnectionString); //create new connection from _ConnectionString
private static bool CloseConnections = false; //true, by default, and connection will be closed after each operation.
//Or false, if need to keep connection: PISDA.CloseConnections = false;
private static void CloseConnectionIfNeed(){
if(CloseConnections == true){
_Connection.Close();
return;
}
}
private static void OpenConnectionIfNeed(){
_Connection = Connection; //it will be opened there, if it's closed.
}
private static Mono.Data.Sqlite.SqliteCommand _cmd = null; //Mono.Data.Sqlite.SqliteCommand for opened database after connection with this.
// cmd = new Mono.Data.Sqlite.SqliteCommand(sql, Connection) or cmd = new Mono.Data.Sqlite.SqliteCommand(Connection)
//get or set value of this
public static Mono.Data.Sqlite.SqliteCommand cmd
{
get{
if(
_cmd == null //if _cmd not defined
|| _Connection == null //or if connection not defined
|| _Connection.State != System.Data.ConnectionState.Open //or if connection closed
){
_cmd = new Mono.Data.Sqlite.SqliteCommand(Connection); //Create and open database connection, and create new Mono.Data.Sqlite.SqliteCommand for this.
}
return _cmd; //or/and return that Mono.Data.Sqlite.SqliteCommand _cmd
}
set{
_cmd = value; //create new Mono.Data.Sqlite.SqliteCommand with sql
}
}
// get: _cmd = PISDA.cmd; //cmd will be created, if not exists
// set: cmd = new Mono.Data.Sqlite.SqliteCommand(sql, Connection); //create new and set
//object to lock database, while some command executed for this.
//Another commands will wait the finish of this.
private static object db_lock = new object();
//Now, begin SQL-methods:
public static DataSet GetDataSet(
string sql
, bool show = false
)
{
DataSet dataSet = new DataSet();
lock (db_lock)
{
using(cmd = new Mono.Data.Sqlite.SqliteCommand(sql, Connection)){ //create new Mono.Data.Sqlite.SqliteCommand for current connection, after open this, and add sql-query there.
Mono.Data.Sqlite.SqliteDataAdapter adp = new Mono.Data.Sqlite.SqliteDataAdapter(_cmd);
adp.Fill(dataSet);
CloseConnectionIfNeed();
}
}
if(show == true){
Console.WriteLine("dataSet: "+dataSet+", dataSet.Tables.Count: "+dataSet.Tables.Count);
foreach (DataTable table in dataSet.Tables)
{
foreach (DataRow row in table.Rows)
{
foreach (DataColumn column in table.Columns)
{
object item = row[column];
// read column and item
Console.Write("{0}, ", item );
}
Console.Write("\n");
}
Console.Write("\n\n");
}
}
return dataSet;
}
public static DataTable GetDataTable(
string sql
, bool show = false
)
{
lock (db_lock)
{
DataSet dataSet = GetDataSet(sql);
if (dataSet.Tables.Count > 0){
if(show == true){
//Console.WriteLine("dataSet.Tables[0]: "+dataSet.Tables[0]+", dataSet.Tables[0].Rows.Count: "+dataSet.Tables[0].Rows.Count);
//Console.WriteLine(sql);
foreach (DataTable table in dataSet.Tables)
{
foreach (DataRow row in table.Rows)
{
foreach (DataColumn column in table.Columns)
{
object item = row[column];
// read column and item
Console.Write("{0}, ", item );
}
Console.Write("\n");
}
Console.Write("\n\n");
}
}
return dataSet.Tables[0];
}
return null;
}
}
public static void ShowDataTable(
DataTable table
){
foreach (DataRow row in table.Rows)
{
foreach (DataColumn column in table.Columns)
{
object item = row[column];
// read column and item
Console.Write("{0}, ", item );
}
Console.Write("\n");
}
return;
}
//SQL-query without return data.
public static int ExecuteSQL(
string sql
, bool show = false
)
{
lock (db_lock)
{
using(cmd = new Mono.Data.Sqlite.SqliteCommand(sql, Connection)){ //create new Mono.Data.Sqlite.SqliteCommand for current connection, after open this, and add sql-query there.
int result = _cmd.ExecuteNonQuery();
CloseConnectionIfNeed();
if(show==true){
Console.WriteLine("result: "+result);
}
return result;
}
}
}
public static void TransactionCommit(
string [] sqls
){
lock (db_lock)
{
using (var transaction = Connection.BeginTransaction())
{
for (int i = 0; i < sqls.Length; i++)
{
using (cmd = new Mono.Data.Sqlite.SqliteCommand(sqls[i], _Connection))
{
_cmd.ExecuteNonQuery();
}
}
transaction.Commit();
CloseConnectionIfNeed();
return;
}
}
}
// Usage:
// string[] sqls = new string[0];
// for(int j = 0; j<1000; j++){
// Array.Resize(ref sqls, sqls.Length + 1);
// sqls[sqls.Length - 1] = "insert into Cars (CarName, Price) values ('Audi', "+j+")";
// }
// TransactionCommit(sqls);
// Or as one SQL-query, using NonQuery():
//BEGIN TRANSACTION;
// UPDATE builtuparea_luxbel SET ADMIN_LEVEL = 6 where PK_UID = 2;
// UPDATE builtuparea_luxbel SET ADMIN_LEVEL = 6 where PK_UID = 3;
//COMMIT TRANSACTION;
//Read TEXT
public static Mono.Data.Sqlite.SqliteDataReader read(
string sql
, bool show = false
)
{
lock(db_lock){
using(cmd = new Mono.Data.Sqlite.SqliteCommand(sql, Connection)){ //create new Mono.Data.Sqlite.SqliteCommand for current connection, after open this, and add sql-query there.
Mono.Data.Sqlite.SqliteDataReader result = _cmd.ExecuteReader();
while (result.Read()){
if(show == true){
for(var i = 0; i<result.FieldCount; i++){
Console.Write(i+":{0}; ",result[i]);
}
Console.Write("\n");
}
}
CloseConnectionIfNeed();
return result;
}
}
}
//Write text, or BLOB
public static int NonQuery(
string sql
, byte[] blob = null
, bool show = false
)
{
// Console.WriteLine("sql"+sql);
lock(db_lock){
using(cmd = new Mono.Data.Sqlite.SqliteCommand(sql, Connection)){ //create new Mono.Data.Sqlite.SqliteCommand for current connection, after open this, and add sql-query there.
if(blob != null){
cmd.Parameters.Add("@blob", System.Data.DbType.Binary, 20).Value = blob;
}
int result = cmd.ExecuteNonQuery();
CloseConnectionIfNeed();
return result;
}
}
}
//Write one BLOB
public static int WriteBlob(
string TableName
, string columnName
, byte[] blob
)
{
lock(db_lock){
string sql = "INSERT OR REPLACE INTO "+TableName+" ("+columnName+") VALUES (@"+columnName+")";
using(cmd = new Mono.Data.Sqlite.SqliteCommand(sql, Connection)){ //create new Mono.Data.Sqlite.SqliteCommand for current connection, after open this, and add sql-query there.
_cmd.Parameters.Add("@"+columnName, System.Data.DbType.Binary, 20).Value = blob;
int result = _cmd.ExecuteNonQuery();
CloseConnectionIfNeed();
return result;
}
}
}
//read BLOB
public static byte[] readBlob(
string sql
, bool show = false
)
{
lock(db_lock){
using(cmd = new Mono.Data.Sqlite.SqliteCommand(sql, Connection)){ //create new Mono.Data.Sqlite.SqliteCommand for current connection, after open this, and add sql-query there.
byte[] buffer = new byte[0];
using (var reader = _cmd.ExecuteReader())
{
while (reader.Read())
{
buffer = GetBytes(reader);
}
CloseConnectionIfNeed();
}
if(show == true){
Console.WriteLine("blob bytes:");
for(int i = 0; i<buffer.Length; i++){
Console.WriteLine(buffer[i]);
}
Console.WriteLine("buffer.Length: "+buffer.Length);
}
return buffer;
}
}
}
//get bytes from reader
static byte[] GetBytes(
Mono.Data.Sqlite.SqliteDataReader reader
)
{
if(reader.IsDBNull(0)){return null;}
const int CHUNK_SIZE = 2 * 1024;
byte[] buffer = new byte[CHUNK_SIZE];
long bytesRead;
long fieldOffset = 0;
using (MemoryStream stream = new MemoryStream())
{
while ((bytesRead = reader.GetBytes(0, fieldOffset, buffer, 0, buffer.Length)) > 0)
{
stream.Write(buffer, 0, (int)bytesRead);
fieldOffset += bytesRead;
}
return stream.ToArray();
}
}
public static DataTable ReturnDataTable(
string sql
, bool show = false
)
{
lock(db_lock){
using(cmd = new Mono.Data.Sqlite.SqliteCommand(sql, Connection)){ //create new Mono.Data.Sqlite.SqliteCommand for current connection, after open this, and add sql-query there.
Mono.Data.Sqlite.SqliteDataReader dataReader = cmd.ExecuteReader();
DataTable dTable = new DataTable();
dTable.Load(dataReader);
CloseConnectionIfNeed();
if(show == true){
if (dTable.Rows.Count > 0)
{
for (int i = 0; i < dTable.Rows.Count; i++){
foreach(object cell in dTable.Rows[i].ItemArray) {
Console.Write(cell+"\t");
//((cell.GetType()).Equals(typeof(byte[]))) //is blob? (byte[])
}
Console.Write("\n");
}
}
else{
Console.WriteLine("Table is is empty");
}
}
return dTable;
}
}
}
public static DataRow ReturnDataRow(
string sql
, bool show = false
){
DataTable result = GetDataTable(sql);
if(result.Rows.Count == 0){return null;}
DataRow row = result.Rows[0];
if(show == true){
foreach(object cell in row.ItemArray) {
Console.Write(cell+"\t");
//((cell.GetType()).Equals(typeof(byte[]))) //is blob? (byte[])
}
Console.Write("\n");
}
return row;
}
public static DataTable GetSchema(
string arg
/*
Arg:
MetaDataCollections
DataSourceInformation
Catalogs
Columns
ForeignKeys
Indexes
IndexColumns
Tables
Views
ViewColumns
*/
){
lock(db_lock){
DataTable schema = Connection.GetSchema(arg);
CloseConnectionIfNeed();
for (int i = 0; i < schema.Rows.Count; i++){
foreach(object cell in schema.Rows[i].ItemArray) {
Console.Write(cell+"\t");
}
Console.Write("\n");
}
return schema;
}
}
public static void ConnectTablesByForeignKey(){
/*
// It's SQL-request:
//First, create table without the parent_id:
//
// CREATE TABLE child(
// id INTEGER PRIMARY KEY,
// description TEXT
// );
//
//Then, alter table:
// ALTER TABLE child ADD COLUMN parent_id INTEGER REFERENCES parent(id);
*/
//REINDEX name
CloseConnectionIfNeed();
Console.WriteLine("ConnectTablesByForeignKey: See comments in the source code.");
return;
}
//Add in the table, the row with different types.
public static int AddRow(
string TableName
, object[] values = null //object[] values = new object[]{null, "Text", 123, null, 1234, 123, 123, new byte[] { 1, 2, 3, 4, 5 } };
//array with objects, with different types (NULL, TEXT, NUMERIC, INTEGER, REAL, BLOB).
//First value must to be "null" for - auto-incremented column.
)
{
if(values != null){
lock(db_lock){
//Build SQL-request, to add this values in the cells of the row
string sql =
"INSERT INTO "+TableName
+ " VALUES(" //?,?,?,...,?);
;
//Add this ? and , and bracket ")"
int i = values.Length; //set this as 0
for(; i > 0; i-- ){
sql +=
"?" +
( ( i != 1 )
? ","
: ""
);
}
sql +=");"; //end of set SQL-command
using(cmd = new Mono.Data.Sqlite.SqliteCommand(sql, Connection)){ //create new Mono.Data.Sqlite.SqliteCommand for current connection, after open this, and add sql-query there.
//Add values, as parameters:
if(values != null){ //if object with values with dynamic types is specified
for(;i<values.Length; i++){ //for each item
cmd.Parameters.AddWithValue("param"+(i+1), values[i]); //add this as value with custom type to parameters.
}
}
int result = cmd.ExecuteNonQuery(); //and execute this (with added parameters)
CloseConnectionIfNeed();
return result;
}
}
}
else{ //else nothing to insert.
Console.WriteLine("AddRow-method: object[] values = null . Nothing to insert.");
return 0;
}
}
//Retrieve single items wity dynamic type, from db (this is a 2-nd rule from Codd's 12 rules):
// SELECT ColumnName FROM TableName WHERE UniqueRowID=RowValue
public static object ExecuteScalar(
string sql
, bool show = false
)
{
try{
lock(db_lock){
using(cmd = new Mono.Data.Sqlite.SqliteCommand(sql, Connection)){ //create new Mono.Data.Sqlite.SqliteCommand for current connection, after open this, and add sql-query there.
object value = _cmd.ExecuteScalar();
CloseConnectionIfNeed();
if (value != null)
{
//return value.ToString(); //to return all as text.
if(show == true)
{
Console.WriteLine("value: "+value+", type: "+(value.GetType())+", Is blob? "+((value.GetType()).Equals(typeof(byte[]))) ); //is blob? (byte[])
}
return value; //return as an object with dynamic type
}
//return string.Empty; //else empty-string null
return DBNull.Value; //or null.
}
}
}
catch(Exception ex){
Console.WriteLine("PISDA.PISDA.ExecuteScalar: sql: "+sql+", ex: "+ex);
return DBNull.Value;
}
}
//Execute SQL, and return results, as DataTable.
public static DataTable ExecuteWithResults(
string sql
, bool show = false
){
return GetDataTable(sql, show);
}
//Log to logfile
public static void Log(
string str //string to log
, bool newline = true //append new line? true/false
){
str = (newline == true) ? str + "\n" : str;
Console.Write(str); //show str
File.AppendAllText("test.log", str); //log str
}
public static void LogBytes(byte[] bytes)
{
Log("Bytes:");
//show bytes
for(int i = 0; i<bytes.Length; i++)
{
Log(bytes[i]+"\t", false);
if( ( i > 0 ) && ( ( i % 16 ) == 0 ) )
{
Log("\n", false);
}
}
}
public static void LogDataRow(DataRow row){
foreach(object cell in row.ItemArray) {
if(
((cell.GetType()).Equals(typeof(byte[]))) //is blob? (byte[])
)
{
byte[] bytes = (byte[]) cell; //get bytes from cell, with blob-object
LogBytes(bytes);
}
else{
Log(cell+"\t");
}
}
Log("\n");
}
public static void LogDataTable(DataTable table){
Log("Table: "+table.TableName);
foreach (DataRow row in table.Rows)
{
LogDataRow(row);
/*
foreach (DataColumn column in table.Columns)
{
object item = row[column];
// read column and item
Log(item.ToString()+", ");
}
Log("\n");
*/
}
Log("\n\n");
}
public static void LogDataSet(DataSet dataset){
foreach (DataTable table in dataset.Tables)
{
LogDataTable(table);
}
Log("\n\n");
}
public static int timeout = 500; //timeout to run tests.
public static void Tests(string dbfile){
// TESTS
//================================================================================================================
Log("set \""+dbfile+"\" filename of DB, to let program regenerate the connection string.");
PISDA.DBFileName = dbfile; //set filename of DB, to let program regenerate the connection string.
Log("\""+dbfile+"\" was been set");
Log("");
System.Threading.Thread.Sleep(timeout);
//================================================================================================================
//1. Open DB or create it and open.
//2. CRUD test
//3. Tests of methods above
//================================================================================================================
File.WriteAllText("test.log", String.Empty); //clear log-file
Log("Run tests of PISDA...");
Log("");
System.Threading.Thread.Sleep(timeout);
//================================================================================================================
//================================================================================================================
Log("DROP TABLE IF EXISTS [tbl_userinfo]");
NonQuery("DROP TABLE IF EXISTS [tbl_userinfo]");
Log("query executed");
Log("");
System.Threading.Thread.Sleep(timeout);
//================================================================================================================
//================================================================================================================
Log("DROP VIEW IF EXISTS [vw_userinfo_filter]");
NonQuery("DROP VIEW IF EXISTS [vw_userinfo_filter]");
Log("query executed");
Log("");
System.Threading.Thread.Sleep(timeout);
//================================================================================================================
//================================================================================================================
Log("test transaction commit");
string sqlquery = @"
BEGIN TRANSACTION;
CREATE TABLE [tbl_userinfo](
[id] INTEGER PRIMARY KEY AUTOINCREMENT,
[name] TEXT,
[age] INTEGER,
[sex] TEXT,
[contact] TEXT,
[status] INTEGER
);
CREATE VIEW [vw_userinfo_filter] as
SELECT *
FROM [tbl_userinfo]
WHERE [sex] = 'Female'
;
INSERT INTO [tbl_userinfo]
([name], [age], [sex], [contact], [status])
VALUES
('James', 25, 'Male', '5124537326', 1)
, ('Nueoo', 24, 'Male', '313121', 1)
, ('Julia', 23, 'Female', '131', 1)
, ('Oliver', 23, 'Female', '343434334', 1)
, ('Holia', 40, 'Female', '83623', 1)
;
COMMIT TRANSACTION;
"
;
NonQuery(sqlquery);
Log("query executed");
Log("");
System.Threading.Thread.Sleep(timeout);
//================================================================================================================
//================================================================================================================
Log("Extract DataSet");
DataSet dataset = PISDA.GetDataSet("SELECT * FROM tbl_userinfo");
LogDataSet(dataset);
Log("");
System.Threading.Thread.Sleep(timeout);
//================================================================================================================
//================================================================================================================
Log("Extract DataTable");
DataTable datatable = PISDA.GetDataTable("SELECT * FROM tbl_userinfo");
LogDataTable(datatable);
Log("");
System.Threading.Thread.Sleep(timeout);
//================================================================================================================
//================================================================================================================
Log("Insert records");
int
i = PISDA.ExecuteSQL("INSERT INTO tbl_userinfo (name, age, sex, contact, status) VALUES ('lol', 5, 'Male', 00000, 1)");
Log(i.ToString());
i = PISDA.ExecuteSQL("INSERT INTO tbl_userinfo (name, age, sex, contact, status) VALUES ('lola', 5, 'Female', 00000, 1)");
Log(i.ToString());
i = PISDA.ExecuteSQL("INSERT INTO tbl_userinfo (name, age, sex, contact, status) VALUES ('lol', 5, 'Male', 00000, 1)");
Log(i.ToString());
Log("");
System.Threading.Thread.Sleep(timeout);
//================================================================================================================
//New file will be created, if this does not exists.
//ConnectionString will be updated after set this.
//Connection will be created and opened
//SQLiteComman cmd can be binded to this opened connection, by creating new with this Connection.
// It can be closed at any time, by running CloseConnectionIfNeed()
// And it will be reopened, _Connection.Open(), after next request, if it's closed.
Log("DROP TABLE IF EXISTS Cars");
//delete table Cars if exists, and create this again.
NonQuery("DROP TABLE IF EXISTS Cars"); //remove table Cars, if exists
Log("query executed");
Log("");
System.Threading.Thread.Sleep(timeout);
Log(@"CREATE TABLE Cars( ID INTEGER PRIMARY KEY, CarName TEXT, Price INT )");
NonQuery(@"CREATE TABLE Cars( ID INTEGER PRIMARY KEY, CarName TEXT, Price INT )"); //create table
Log("query executed");
Log("");
System.Threading.Thread.Sleep(timeout);
Log("Insert records");
//add rows in table:
NonQuery("INSERT INTO Cars(CarName, Price) VALUES('Audi',52642)");
NonQuery("INSERT INTO Cars(CarName, Price) VALUES('Mercedes',57127)");
NonQuery("INSERT INTO Cars(CarName, Price) VALUES('Skoda',9000)");
NonQuery("INSERT INTO Cars(CarName, Price) VALUES('Volvo',29000)");
NonQuery("INSERT INTO Cars(CarName, Price) VALUES('Bentley',350000)");
NonQuery("INSERT INTO Cars(CarName, Price) VALUES('Citroen',21000)");
NonQuery("INSERT INTO Cars(CarName, Price) VALUES('Hummer',41400)");
NonQuery("INSERT INTO Cars(CarName, Price) VALUES('Volkswagen',21600)");
Log("Table cars created");
Log("");
System.Threading.Thread.Sleep(timeout);
Log("Table table and show records");
//read table, and show records:
try
{
Mono.Data.Sqlite.SqliteDataReader dr = read("SELECT * FROM cars");
}
catch (Mono.Data.Sqlite.SqliteException ex)
{
Console.WriteLine("Error: " + ex.Message);
}
Log("Table table and show records");
Log("");
System.Threading.Thread.Sleep(timeout);
Log("CloseConnectionIfNeed()");
CloseConnectionIfNeed();
Log("CloseConnectionIfNeed() executed");
Log("");
System.Threading.Thread.Sleep(timeout);
Log("Test binary data");
Log("");
System.Threading.Thread.Sleep(timeout);
Log("DROP TABLE IF EXISTS PHOTOS");
//Write and read bytes as BLOB
NonQuery("DROP TABLE IF EXISTS PHOTOS");
Log("Query executed");
Log("");
System.Threading.Thread.Sleep(timeout);
Log("CREATE TABLE PHOTOS(ID INTEGER PRIMARY KEY AUTOINCREMENT, PHOTO BLOB)");
NonQuery("CREATE TABLE PHOTOS(ID INTEGER PRIMARY KEY AUTOINCREMENT, PHOTO BLOB)");
Log("Query executed");
Log("");
System.Threading.Thread.Sleep(timeout);
Log("Write photo as blob");
byte[] blob = new byte[] { 1, 2, 3, 4, 5 };
int writeblob = WriteBlob("PHOTOS", "PHOTO", blob); //write bytes as blob in specified column.
Log("writeblob: "+writeblob.ToString());
Log("");
System.Threading.Thread.Sleep(timeout);
Log("Read photo as blob");
byte[] readed = readBlob("SELECT PHOTO FROM PHOTOS WHERE ID = 1", true); //read blob from this cell, show this, and return this.
Log("Blob length: "+readed.Length.ToString());
LogBytes(readed);
Log("");
System.Threading.Thread.Sleep(timeout);
//write bytes as BLOB by this way
Log("WriteBlob as NonQuery");
NonQuery("INSERT INTO PHOTOS (PHOTO) VALUES (@blob)", new byte[] { 1, 2, 3, 4, 5 }, true);
Log("Query executed");
Log("");
System.Threading.Thread.Sleep(timeout);
//show bytes
Log("Read photo and show bytes in console");
byte[] readed2 = readBlob("SELECT PHOTO FROM PHOTOS WHERE ID = 2", true);
LogBytes(readed2);
Log("Query executed");
Log("");
System.Threading.Thread.Sleep(timeout);
Log("Create table with all possible types");
Log("");
System.Threading.Thread.Sleep(timeout);
//CreateTableWithAllTypes:
Log("DROP TABLE IF EXISTS AllTypes");
NonQuery("DROP TABLE IF EXISTS AllTypes"); //remove table AllTypes, if exists
Log("Query executed");
Log("");
System.Threading.Thread.Sleep(timeout);
Log("Create table");
NonQuery(
@"CREATE TABLE AllTypes(
ID INTEGER PRIMARY KEY,
TextColumn TEXT,
IntColumn INT,
NullColumn NULL,
NumericColumn NUMERIC,
RealColumn REAL,
IntegerColumn INTEGER,
BlobColumn BLOB
)"
);//create table with all possible types.
Log("Query executed");
Log("");
System.Threading.Thread.Sleep(timeout);
Log("Add row with all data-types");
AddRow("AllTypes", new object[]{null, "Text", 123, null, 1234.8984, 123.1234, 123, new byte[] { 1, 2, 3, 4, 5 } });
Log("Query executed");
Log("");
System.Threading.Thread.Sleep(timeout);
//return table info (columns and types)
Log("Show table-info");
DataTable dTable = ReturnDataTable("PRAGMA table_info("+ "AllTypes" +")");
LogDataTable(dTable);
Log("");
System.Threading.Thread.Sleep(timeout);
//create AllTypesView
Log("Create view");
NonQuery("DROP VIEW IF EXISTS ["+ "AllTypesView" +"];");
Log("Query executed");
Log("");
System.Threading.Thread.Sleep(timeout);
Log("Create view");
NonQuery("CREATE VIEW AllTypesView as SELECT ID, RealColumn from AllTypes");//create table
Log("Query executed");
Log("");
System.Threading.Thread.Sleep(timeout);
//show AllTypesView, and return this as table
Log("Show AllTypesView");
DataTable dTable4 = ReturnDataTable("Select * from AllTypesView", true);
LogDataTable(dTable4);
Log("");
System.Threading.Thread.Sleep(timeout);
//show table AllTypes, and return this as table
Log("show table AllTypes");
DataTable dTable3 = ReturnDataTable("Select * from AllTypes WHERE ID = 1", true);
LogDataTable(dTable3);
Log("");
System.Threading.Thread.Sleep(timeout);
//show row from AllTypes, and return this as row
Log("show row from AllTypes");
DataRow row = ReturnDataRow("Select * from AllTypes WHERE ID = 1", true);