forked from RafaelEstevamReis/SimpleSqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimple.Sqlite.xml
More file actions
832 lines (832 loc) · 37.5 KB
/
Simple.Sqlite.xml
File metadata and controls
832 lines (832 loc) · 37.5 KB
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>Simple.Sqlite</name>
</assembly>
<members>
<member name="F:Simple.Sqlite.BinaryResources.empty_v3_wal_gz">
<summary>
Empty sqlitev3 database file, in WAL mode, compressed with .Net GZ
</summary>
</member>
<member name="T:Simple.Sqlite.ConfigurationDB">
<summary>
Represents a easy to use configuration set
</summary>
</member>
<member name="F:Simple.Sqlite.ConfigurationDB.internalDb">
<summary>
Exposes the internal database engine
</summary>
</member>
<member name="P:Simple.Sqlite.ConfigurationDB.DatabaseFileName">
<summary>
Database file full path
</summary>
</member>
<member name="M:Simple.Sqlite.ConfigurationDB.#ctor(System.String)">
<summary>
Creates a new instance
</summary>
</member>
<member name="M:Simple.Sqlite.ConfigurationDB.SetConfig``1(System.String,System.String,``0)">
<summary>
Sets a configuration value
</summary>
<typeparam name="T">Type of the configuration value</typeparam>
<param name="ConfigKey">Key to locate the configration in the category</param>
<param name="ConfigCategory">Category of the configuration</param>
<param name="Value">Value to be stored</param>
</member>
<member name="M:Simple.Sqlite.ConfigurationDB.GetConfig``1(System.String,System.String,``0)">
<summary>
Gets a configuration value
</summary>
<typeparam name="T">Type of the configuration value</typeparam>
<param name="ConfigKey">Key to locate the configration in the category</param>
<param name="ConfigCategory">Category of the configuration</param>
<param name="Default">Default value if none exists</param>
<returns>Saved value</returns>
</member>
<member name="M:Simple.Sqlite.ConfigurationDB.RemoveConfig(System.String,System.String)">
<summary>
Remove a stored item
</summary>
<param name="ConfigKey">Key to locate the configration in the category</param>
<param name="ConfigCategory">Category of the configuration</param>
</member>
<member name="M:Simple.Sqlite.ConfigurationDB.FromDB(Simple.Sqlite.ConfigurationDB)">
<summary>
Create a new instance based on an existing ConfigurationDB
</summary>
</member>
<member name="M:Simple.Sqlite.ConfigurationDB.FromDB(Simple.Sqlite.NoSqliteStorage)">
<summary>
Create a new instance based on an existing NoSqliteStorage
</summary>
</member>
<member name="M:Simple.Sqlite.ConfigurationDB.FromDB(Simple.Sqlite.SqliteDB)">
<summary>
Create a new instance based on an existing SqliteDB
</summary>
</member>
<member name="T:Simple.Sqlite.ConnectionFactory">
<summary>
Creates ISqliteConnection connections
</summary>
</member>
<member name="P:Simple.Sqlite.ConnectionFactory.ConnectionString">
<summary>
Current connection string
</summary>
</member>
<member name="M:Simple.Sqlite.ConnectionFactory.#ctor(Microsoft.Data.Sqlite.SqliteConnectionStringBuilder)">
<summary>
Factory constructor
</summary>
</member>
<member name="M:Simple.Sqlite.ConnectionFactory.#ctor(System.String)">
<summary>
Factory constructor
</summary>
</member>
<member name="M:Simple.Sqlite.ConnectionFactory.GetConnection">
<summary>
Opens a connection to the database
</summary>
<returns>An open connection of the database</returns>
</member>
<member name="M:Simple.Sqlite.ConnectionFactory.FromFile(System.String,System.Boolean)">
<summary>
Creates a Factory to a sqlite file
</summary>
</member>
<member name="M:Simple.Sqlite.ConnectionFactory.CreateConnection(System.String)">
<summary>
Creates a ISqliteConnection instance from a file
</summary>
</member>
<member name="M:Simple.Sqlite.ConnectionFactory.CreateInMemory">
<summary>
Opens a non-Shared in memory connection
</summary>
</member>
<member name="M:Simple.Sqlite.ConnectionFactory.CreateInMemoryShared(System.String)">
<summary>
Opens a non-Shared in memory connection
</summary>
<param name="sharedName">Data source shared name</param>
</member>
<member name="M:Simple.Sqlite.ConnectionFactory.CreateEmptyWalDB(System.String)">
<summary>
Some operational systems do not support DELETE journal mode (like Azure linux AppServices)
This method creates a new database file already in WAL mode
</summary>
<param name="filename">Filename for new database</param>
<returns>True if a new file was created, false if a file already exists</returns>
</member>
<member name="M:Simple.Sqlite.ConnectionFactory.ClearAllPools">
<summary>
Empties the connection pool.
Calls Microsoft.Data.Sqlite.SqliteConnection.ClearAllPools()
</summary>
</member>
<member name="T:Simple.Sqlite.SqliteType">
<summary>
Represents a Sqlite internal type
</summary>
</member>
<member name="F:Simple.Sqlite.SqliteType.INTEGER">
<summary>
Numeric without decimal places
</summary>
</member>
<member name="F:Simple.Sqlite.SqliteType.TEXT">
<summary>
Sqlite text
</summary>
</member>
<member name="F:Simple.Sqlite.SqliteType.BLOB">
<summary>
Binary data or anythng (sqlite is dynamic typed)
</summary>
</member>
<member name="F:Simple.Sqlite.SqliteType.REAL">
<summary>
Numeric with decimal places
</summary>
</member>
<member name="F:Simple.Sqlite.SqliteType.NUMERIC">
<summary>
Numeric value. Includes Bool, Date and Datetime
</summary>
</member>
<member name="T:Simple.Sqlite.OnConflict">
<summary>
OnConflict clause options
</summary>
</member>
<member name="F:Simple.Sqlite.OnConflict.RollBack">
<summary>
When an applicable constraint violation occurs, the ROLLBACK resolution algorithm aborts the current SQL statement
with an SQLITE_CONSTRAINT error and rolls back the current transaction.
If no transaction is active (other than the implied transaction that is created on every command) then the ROLLBACK
resolution algorithm works the same as the ABORT algorithm
</summary>
</member>
<member name="F:Simple.Sqlite.OnConflict.Abort">
<summary>
When an applicable constraint violation occurs,
the ABORT resolution algorithm aborts the current SQL statement with an SQLITE_CONSTRAINT error and backs out any
changes made by the current SQL statement;
but changes caused by prior SQL statements within the same transaction are preserved and the transaction remains active.
This is the default behavior and the behavior specified by the SQL standard
</summary>
</member>
<member name="F:Simple.Sqlite.OnConflict.Fail">
<summary>
When an applicable constraint violation occurs, the FAIL resolution algorithm aborts the current SQL statement with an SQLITE_CONSTRAINT error.
But the FAIL resolution does not back out prior changes of the SQL statement that failed nor does it end the transaction.
For example, if an UPDATE statement encountered a constraint violation on the 100th row that it attempts to update,
then the first 99 row changes are preserved but changes to rows 100 and beyond never occur.
The FAIL behavior only works for uniqueness, NOT NULL, and CHECK constraints. A foreign key constraint violation causes an ABORT
</summary>
</member>
<member name="F:Simple.Sqlite.OnConflict.Ignore">
<summary>
When an applicable constraint violation occurs,
the IGNORE resolution algorithm skips the one row that contains the constraint violation and continues processing
subsequent rows of the SQL statement as if nothing went wrong.
Other rows before and after the row that contained the constraint violation are inserted or updated normally.
No error is returned for uniqueness, NOT NULL, and UNIQUE constraint errors when the IGNORE conflict resolution algorithm is used.
However, the IGNORE conflict resolution algorithm works like ABORT for foreign key constraint errors
</summary>
</member>
<member name="F:Simple.Sqlite.OnConflict.Replace">
<summary>
When a UNIQUE or PRIMARY KEY constraint violation occurs,
the REPLACE algorithm deletes pre-existing rows that are causing the constraint violation prior to inserting or
updating the current row and the command continues executing normally.
If a NOT NULL constraint violation occurs, the REPLACE conflict resolution replaces the NULL value with the default value for that column,
or if the column has no default value, then the ABORT algorithm is used. If a CHECK constraint or foreign key constraint violation occurs,
the REPLACE conflict resolution algorithm works like ABORT
</summary>
</member>
<member name="T:Simple.Sqlite.BackupExtension">
<summary>
Extension for "Backup" related stuff
</summary>
</member>
<member name="M:Simple.Sqlite.BackupExtension.CreateBackup(Simple.Sqlite.ISqliteConnection,System.String)">
<summary>
Backup of the connected database
</summary>
<param name="source">Source database</param>
<param name="fileName">Destination database filename</param>
</member>
<member name="T:Simple.Sqlite.ExecuteExtension">
<summary>
Extension for "Execute" stuff
</summary>
</member>
<member name="M:Simple.Sqlite.ExecuteExtension.Execute(Simple.Sqlite.ISqliteConnection,System.String,System.Object)">
<summary>
Executes a query
</summary>
<param name="connection">The connection to be used</param>
<param name="query">SQL to be eecuted</param>
<param name="parameters">object with parameters</param>
<returns>Returns affected rows. -1 for selects</returns>
</member>
<member name="M:Simple.Sqlite.ExecuteExtension.Execute(Simple.Sqlite.ISqliteTransaction,System.String,System.Object)">
<summary>
Executes a query in a transaction
</summary>
<param name="transaction">The transaction to be used</param>
<param name="query">SQL to be eecuted</param>
<param name="parameters">object with parameters</param>
<returns>Returns affected rows. -1 for selects</returns>
</member>
<member name="M:Simple.Sqlite.ExecuteExtension.ExecuteScalar``1(Simple.Sqlite.ISqliteConnection,System.String,System.Object)">
<summary>
Executes a ScalarQuery
</summary>
<typeparam name="T">Value type</typeparam>
<param name="connection">The connection to be used</param>
<param name="query">Query yo be executed</param>
<param name="parameters">object with parameters</param>
<returns>Scalar value</returns>
</member>
<member name="M:Simple.Sqlite.ExecuteExtension.ExecuteScalar``1(Simple.Sqlite.ISqliteTransaction,System.String,System.Object)">
<summary>
Executes a ScalarQuery in a transaction
</summary>
<typeparam name="T">Value type</typeparam>
<param name="transaction">The transaction to be used</param>
<param name="query">Query yo be executed</param>
<param name="parameters">object with parameters</param>
<returns>Scalar value</returns>
</member>
<member name="T:Simple.Sqlite.GetDataExtension">
<summary>
Extension for "GetDataExtension" stuff
</summary>
</member>
<member name="M:Simple.Sqlite.GetDataExtension.Get``1(Simple.Sqlite.ISqliteConnection,System.Object)">
<summary>
Select a value from a table `T` using it's primary key or `__rowid__`
</summary>
</member>
<member name="M:Simple.Sqlite.GetDataExtension.Get``1(Simple.Sqlite.ISqliteConnection,System.String,System.Object)">
<summary>
Select a value from a table `T` using specified column and value
</summary>
</member>
<member name="M:Simple.Sqlite.GetDataExtension.Get``1(Simple.Sqlite.ISqliteConnection,System.String,System.String,System.Object)">
<summary>
Select a value from a table using specified column and value
</summary>
</member>
<member name="M:Simple.Sqlite.GetDataExtension.GetAll``1(Simple.Sqlite.ISqliteConnection,System.Boolean)">
<summary>
Select all values from a table `T`
</summary>
</member>
<member name="M:Simple.Sqlite.GetDataExtension.GetAll``1(Simple.Sqlite.ISqliteConnection,System.String,System.Boolean)">
<summary>
Select all values from a table
</summary>
</member>
<member name="M:Simple.Sqlite.GetDataExtension.GetWhere``1(Simple.Sqlite.ISqliteConnection,System.String,System.Object)">
<summary>
Select filtered values from the table T WHERE filterColumn = filterValue
</summary>
</member>
<member name="T:Simple.Sqlite.InsertExtension">
<summary>
Extension for "InsertExtension" stuff
</summary>
</member>
<member name="M:Simple.Sqlite.InsertExtension.Insert``1(Simple.Sqlite.ISqliteConnection,``0,Simple.Sqlite.OnConflict,System.String)">
<summary>
Inserts a value into a table
</summary>
<typeparam name="T">Value type</typeparam>
<param name="connection">The connection to be used</param>
<param name="item">Item to be inserted</param>
<param name="resolution">Conflict resolution policy</param>
<param name="tableName">The name of the table, NULL to use `T` type name as the name of the table</param>
<returns>Returns the integer Primary Key or __ROWID__ of the inserted row</returns>
</member>
<member name="M:Simple.Sqlite.InsertExtension.Insert``1(Simple.Sqlite.ISqliteTransaction,``0,Simple.Sqlite.OnConflict,System.String)">
<summary>
Inserts a value into a table with a transaction
</summary>
<typeparam name="T">Value type</typeparam>
<param name="transaction">The transaction to be used</param>
<param name="item">Item to be inserted</param>
<param name="resolution">Conflict resolution policy</param>
<param name="tableName">The name of the table, NULL to use `T` type name as the name of the table</param>
<returns>Returns the integer Primary Key or __ROWID__ of the inserted row</returns>
</member>
<member name="M:Simple.Sqlite.InsertExtension.BulkInsert``1(Simple.Sqlite.ISqliteConnection,System.Collections.Generic.IEnumerable{``0},Simple.Sqlite.OnConflict,System.String)">
<summary>
Inserts multiple values into a table efficiently using a transaction
</summary>
<typeparam name="T">Value type</typeparam>
<param name="connection">The connection to be used</param>
<param name="items">Items to be inserted</param>
<param name="resolution">Conflict resolution policy</param>
<param name="tableName">The name of the table, NULL to use `T` type name as the name of the table</param>
<returns>Returns the integer Primary Key or __ROWID__ of the inserted rows</returns>
</member>
<member name="T:Simple.Sqlite.ISqliteConnection">
<summary>
SqliteConnection interface wrapper
</summary>
</member>
<member name="P:Simple.Sqlite.ISqliteConnection.DatabasFilePath">
<summary>
Database's file path
</summary>
</member>
<member name="M:Simple.Sqlite.ISqliteConnection.GetUnderlyingConnection">
<summary>
Gets the underlying SqliteConnection
</summary>
</member>
<member name="T:Simple.Sqlite.MigrationExtension">
<summary>
Extension for "MigrationExtension" stuff
</summary>
</member>
<member name="M:Simple.Sqlite.MigrationExtension.CreateTables(Simple.Sqlite.ISqliteConnection)">
<summary>
Initialize a migration
</summary>
<param name="connection">The connection to be used</param>
<returns>A database migration object</returns>
</member>
<member name="T:Simple.Sqlite.QueryExtension">
<summary>
Extension for "QueryExtension" stuff
</summary>
</member>
<member name="M:Simple.Sqlite.QueryExtension.Query``1(Simple.Sqlite.ISqliteConnection,System.String,System.Object,System.Boolean)">
<summary>
Executes a query and map the result into a model
</summary>
<typeparam name="T">Returning model type</typeparam>
<param name="connection">The connection to be used</param>
<param name="query">Query yo be executed</param>
<param name="parameters">Query parameters</param>
<param name="buffered">Defines if the results should be buffered in memory</param>
<returns>A collection of values mapped from the result rows</returns>
</member>
<member name="M:Simple.Sqlite.QueryExtension.Query``1(Simple.Sqlite.ISqliteTransaction,System.String,System.Object,System.Boolean)">
<summary>
Executes a query and map the result into a model within a transaction
</summary>
<typeparam name="T">Returning model type</typeparam>
<param name="transaction">The transaction to be used</param>
<param name="query">Query yo be executed</param>
<param name="parameters">Query parameters</param>
<param name="buffered">Defines if the results should be buffered in memory</param>
<returns>A collection of values mapped from the result rows</returns>
</member>
<member name="M:Simple.Sqlite.QueryExtension.Query``1(Simple.Sqlite.ISqliteConnection,System.Object,System.Boolean)">
<summary>
Builds and Executes a query using the parameters for the where clause then map the result into a model
</summary>
<typeparam name="T">Returning model type</typeparam>
<param name="connection">The connection to be used</param>
<param name="parameters">Columns to be filtered. A Where clause will be builded with the paramters property's name.</param>
<param name="buffered">Defines if the results should be buffered in memory</param>
<returns>A collection of values mapped from the result rows</returns>
</member>
<member name="M:Simple.Sqlite.QueryExtension.Query``1(Simple.Sqlite.ISqliteTransaction,System.Object,System.Boolean)">
<summary>
Builds and Executes a query using the parameters for the where clause then map the result into a model
</summary>
<typeparam name="T">Returning model type</typeparam>
<param name="transaction">The transaction to be used</param>
<param name="parameters">Columns to be filtered. A Where clause will be builded with the paramters property's name.</param>
<param name="buffered">Defines if the results should be buffered in memory</param>
<returns>A collection of values mapped from the result rows</returns>
</member>
<member name="T:Simple.Sqlite.TableSchemaExtension">
<summary>
Extension for "TableSchemaExtension" stuff
</summary>
</member>
<member name="M:Simple.Sqlite.TableSchemaExtension.GetTableSchema(Simple.Sqlite.ISqliteConnection,System.String)">
<summary>
Returns a DataTable containing the table schema
</summary>
</member>
<member name="M:Simple.Sqlite.TableSchemaExtension.GetTableColumnNames(Simple.Sqlite.ISqliteConnection,System.String)">
<summary>
Gets columns names for a table
</summary>
</member>
<member name="M:Simple.Sqlite.TableSchemaExtension.GetAllTables(Simple.Sqlite.ISqliteConnection,System.Boolean)">
<summary>
Get all tables
</summary>
</member>
<member name="M:Simple.Sqlite.TableSchemaExtension.GetAllIndexes(Simple.Sqlite.ISqliteConnection,System.Boolean)">
<summary>
Get all indexes
</summary>
</member>
<member name="T:Simple.Sqlite.NoSqliteStorage">
<summary>
Easy access a local no-sql document storage
</summary>
</member>
<member name="F:Simple.Sqlite.NoSqliteStorage.internalDb">
<summary>
Exposes the internal database engine
</summary>
</member>
<member name="P:Simple.Sqlite.NoSqliteStorage.CompressEachEntry">
<summary>
Specify if new values should be compressed before storage
</summary>
</member>
<member name="P:Simple.Sqlite.NoSqliteStorage.DatabaseFileName">
<summary>
Database file full path
</summary>
</member>
<member name="M:Simple.Sqlite.NoSqliteStorage.#ctor(System.String)">
<summary>
Creates a new instance
</summary>
</member>
<member name="M:Simple.Sqlite.NoSqliteStorage.Store``1(System.Guid,``0)">
<summary>
Stores a new item
</summary>
<typeparam name="T">Type of stored item</typeparam>
<param name="Key">A Key to locate the item later</param>
<param name="Object">The item to be stored</param>
</member>
<member name="M:Simple.Sqlite.NoSqliteStorage.Store``1(System.String,``0)">
<summary>
Stores a new item
</summary>
<typeparam name="T">Type of stored item</typeparam>
<param name="Key">A Key to locate the item later</param>
<param name="Object">The item to be stored</param>
</member>
<member name="M:Simple.Sqlite.NoSqliteStorage.Store``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Guid})">
<summary>
Stores many items
</summary>
</member>
<member name="M:Simple.Sqlite.NoSqliteStorage.Store``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.String})">
<summary>
Stores many items
</summary>
</member>
<member name="M:Simple.Sqlite.NoSqliteStorage.Retrieve``1(System.Guid)">
<summary>
Retrieves a stored item
</summary>
<typeparam name="T">Type of stored item</typeparam>
<param name="Key">The Key to locate the stored item</param>
<returns>Stored item or Defult(T)</returns>
</member>
<member name="M:Simple.Sqlite.NoSqliteStorage.Retrieve``1(System.String)">
<summary>
Retrieves a stored item
</summary>
<typeparam name="T">Type of stored item</typeparam>
<param name="Key">The Key to locate the stored item</param>
<returns>Stored item or Defult(T)</returns>
</member>
<member name="M:Simple.Sqlite.NoSqliteStorage.Remove(System.Guid)">
<summary>
Remove a stored item
</summary>
</member>
<member name="M:Simple.Sqlite.NoSqliteStorage.Remove(System.String)">
<summary>
Remove a stored item
</summary>
</member>
<member name="M:Simple.Sqlite.NoSqliteStorage.GetAllKeys">
<summary>
Retrieves all stored Keys
</summary>
</member>
<member name="M:Simple.Sqlite.NoSqliteStorage.GetAllGuids">
<summary>
Retrieves all stored Guids
</summary>
</member>
<member name="M:Simple.Sqlite.NoSqliteStorage.FromDB(Simple.Sqlite.ConfigurationDB)">
<summary>
Create a new instance based on an existing ConfigurationDB
</summary>
</member>
<member name="M:Simple.Sqlite.NoSqliteStorage.FromDB(Simple.Sqlite.NoSqliteStorage)">
<summary>
Create a new instance based on an existing NoSqliteStorage
</summary>
</member>
<member name="M:Simple.Sqlite.NoSqliteStorage.FromDB(Simple.Sqlite.SqliteDB)">
<summary>
Create a new instance based on an existing SqliteDB
</summary>
</member>
<member name="M:Simple.Sqlite.NoSqliteStorage.GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection.
</summary>
</member>
<member name="T:Simple.Sqlite.Column">
<summary>
Class to map a column schema
</summary>
</member>
<member name="P:Simple.Sqlite.Column.ColumnName">
<summary>
Column name
</summary>
</member>
<member name="P:Simple.Sqlite.Column.SqliteType">
<summary>
Type on SQLite database
</summary>
</member>
<member name="P:Simple.Sqlite.Column.NativeType">
<summary>
Native object type
</summary>
</member>
<member name="P:Simple.Sqlite.Column.IsPK">
<summary>
Is PrimaryKey ?
</summary>
</member>
<member name="P:Simple.Sqlite.Column.IsAI">
<summary>
Is Auto-Increment ?
</summary>
</member>
<member name="P:Simple.Sqlite.Column.IsUnique">
<summary>
Is Unique indexed ?
</summary>
</member>
<member name="P:Simple.Sqlite.Column.AllowNulls">
<summary>
Allow null values ?
</summary>
</member>
<member name="P:Simple.Sqlite.Column.DefaultValue">
<summary>
Default value on NULL
</summary>
</member>
<member name="P:Simple.Sqlite.Column.Indexes">
<summary>
Indexes including this column
</summary>
</member>
<member name="M:Simple.Sqlite.Column.FromInfo(Simple.DatabaseWrapper.TypeReader.TypeInfo,Simple.DatabaseWrapper.TypeReader.TypeItemInfo)">
<summary>
Create a column schema from TypeInfoItem
</summary>
</member>
<member name="M:Simple.Sqlite.Column.mapType(Simple.DatabaseWrapper.TypeReader.TypeItemInfo)">
<summary>
Creates a column schema from a Type
</summary>
</member>
<member name="M:Simple.Sqlite.Column.ExportColumnDefinitionAsStatement">
<summary>
Creates a CREATE TABLE column statment from current schema
</summary>
</member>
<member name="M:Simple.Sqlite.Column.ExportAddColumnAsStatement">
<summary>
Creates a ADD COLUMN from current schema.
This MAY change de [DefaultValue] when [NotNull] to Comply with Sqlite
</summary>
<returns></returns>
</member>
<member name="M:Simple.Sqlite.TableMapper.#ctor(Simple.Sqlite.ISqliteConnection)">
<summary>
Creates a new instance
</summary>
</member>
<member name="M:Simple.Sqlite.TableMapper.Add``1">
<summary>
Adds a table
</summary>
</member>
<member name="M:Simple.Sqlite.TableMapper.ConfigureTable(System.Action{Simple.DatabaseWrapper.Interfaces.ITable})">
<summary>
Allows last added table to be editted
</summary>
</member>
<member name="M:Simple.Sqlite.TableMapper.Commit">
<summary>
Commit all new tables to the db (old schemas are not updated (yet)
</summary>
</member>
<member name="T:Simple.Sqlite.TableMapper.TableCommitResult">
<summary>
Class for the table commit results
</summary>
</member>
<member name="P:Simple.Sqlite.TableMapper.TableCommitResult.TableName">
<summary>
Name of the table added/altered
</summary>
</member>
<member name="P:Simple.Sqlite.TableMapper.TableCommitResult.WasTableCreated">
<summary>
Gets if the table was altered
</summary>
</member>
<member name="P:Simple.Sqlite.TableMapper.TableCommitResult.ColumnsAdded">
<summary>
Gets the new added columns, if any
</summary>
</member>
<member name="T:Simple.Sqlite.Table">
<summary>
Represents a table schema
</summary>
</member>
<member name="P:Simple.Sqlite.Table.TableName">
<summary>
Table's name
</summary>
</member>
<member name="P:Simple.Sqlite.Table.Columns">
<summary>
Table's columns
</summary>
</member>
<member name="P:Simple.Sqlite.Table.Item(System.Int32)">
<summary>
Gets the N-th column
</summary>
</member>
<member name="P:Simple.Sqlite.Table.Item(System.String)">
<summary>
Gets the column by name
</summary>
</member>
<member name="M:Simple.Sqlite.Table.ExportCreateTable">
<summary>
Creates a CREATE TABLE statment from current schema
</summary>
</member>
<member name="M:Simple.Sqlite.Table.FromType(Simple.DatabaseWrapper.TypeReader.TypeInfo)">
<summary>
Creates a table schema from a Type
</summary>
</member>
<member name="T:Simple.Sqlite.SqliteDB">
<summary>
Easy access a local database
How to use: Create new instance, call CreateTables(), chain Add[T] to add tables to it then Commit(), after that just call the other methods
</summary>
</member>
<member name="F:Simple.Sqlite.SqliteDB.EnabledDatabaseBackup">
<summary>
Allows any instance of SqliteDB to execute a backup of the current database
</summary>
</member>
<member name="P:Simple.Sqlite.SqliteDB.DatabaseFileName">
<summary>
Database file full path
</summary>
</member>
<member name="M:Simple.Sqlite.SqliteDB.#ctor(System.String)">
<summary>
Creates a new instance
</summary>
</member>
<member name="M:Simple.Sqlite.SqliteDB.CreateTables">
<summary>
Builds the table creation sequence, should be finished with Commit()
</summary>
</member>
<member name="M:Simple.Sqlite.SqliteDB.GetAllTables">
<summary>
Get a list of all tables
</summary>
</member>
<member name="M:Simple.Sqlite.SqliteDB.GetTableSchema(System.String)">
<summary>
Gets the schema for a table
</summary>
</member>
<member name="M:Simple.Sqlite.SqliteDB.GetTableColumnNames(System.String)">
<summary>
Gets columns names for a table
</summary>
</member>
<member name="M:Simple.Sqlite.SqliteDB.Execute(System.String,System.Object)">
<summary>
Executes a NonQuery command, this method locks the execution
</summary>
</member>
<member name="M:Simple.Sqlite.SqliteDB.ExecuteScalar``1(System.String,System.Object)">
<summary>
Executes a Scalar commands and return the value as T
</summary>
</member>
<member name="M:Simple.Sqlite.SqliteDB.Query``1(System.String,System.Object)">
<summary>
Executes a query and returns the value as a T collection
</summary>
</member>
<member name="M:Simple.Sqlite.SqliteDB.QueryFirst``1(System.String,System.Object)">
<summary>
Executes a query and returns the result the first T,
or InvalidOperationException if empty
</summary>
</member>
<member name="M:Simple.Sqlite.SqliteDB.QueryOrDefault``1(System.String,System.Object)">
<summary>
Executes a query and returns the result the first T or Defult(T)
</summary>
</member>
<member name="M:Simple.Sqlite.SqliteDB.Get``1(System.Object)">
<summary>
Gets a single T with specified table KeyValue on KeyColumn
</summary>
</member>
<member name="M:Simple.Sqlite.SqliteDB.Get``1(System.String,System.Object)">
<summary>
Gets a single T with specified table KeyValue on KeyColumn
</summary>
</member>
<member name="M:Simple.Sqlite.SqliteDB.getFirstOrDefault``1(System.Collections.Generic.IEnumerable{``0})">
<summary>
Work around to force enumerables to finalize
The enumeration should finalize to connection be closed
</summary>
</member>
<member name="M:Simple.Sqlite.SqliteDB.getFirstOrException``1(System.Collections.Generic.IEnumerable{``0})">
<summary>
Work around to force enumerables to finalize
The enumeration should finalize to connection be closed
</summary>
</member>
<member name="M:Simple.Sqlite.SqliteDB.GetAll``1">
<summary>
Queries the database to all T rows in the table
</summary>
</member>
<member name="M:Simple.Sqlite.SqliteDB.GetAllWhere``1(System.String,System.Object)">
<summary>
Queries the database to all T rows in the table with specified table KeyValue on KeyColumn
</summary>
</member>
<member name="M:Simple.Sqlite.SqliteDB.Insert``1(``0,Simple.Sqlite.OnConflict,System.String)">
<summary>
Inserts a new T and return it's ID, this method locks the execution
</summary>
<param name="item">Item to be added</param>
<param name="resolution">Conflict resolution method</param>
<param name="tableName">Name of the table, uses T class name if null</param>
<returns></returns>
</member>
<member name="M:Simple.Sqlite.SqliteDB.InsertOrReplace``1(``0)">
<summary>
Inserts a new T or replace with current T and return it's ID, this method locks the execution.
When a Replace occurs, the row is first deleted then re-inserted.
Must have a [Unique] or PK column.
</summary>
<returns>Returns `sqlite3:last_insert_rowid()`</returns>
</member>
<member name="M:Simple.Sqlite.SqliteDB.BulkInsert``1(System.Collections.Generic.IEnumerable{``0},Simple.Sqlite.OnConflict,System.String)">
<summary>
Inserts many T items into the database and return their IDs, this method locks the execution
</summary>
<param name="items">Items to be inserted</param>
<param name="resolution">Conflict resolution method</param>
<param name="tableName">Name of the table, uses T class name if null</param>
</member>
<member name="M:Simple.Sqlite.SqliteDB.BulkInsert``1(System.Collections.Generic.IEnumerable{``0},System.Boolean)">
<summary>
Inserts many T items into the database and return their IDs, this method locks the execution
</summary>
</member>
<member name="M:Simple.Sqlite.SqliteDB.CreateBackup(System.String)">
<summary>
Creates an online backup of the current database.
Can be used to save an InMemory database
</summary>
</member>
</members>
</doc>