Skip to content

Commit 04a067c

Browse files
committed
Update README
1 parent 5a0b6d3 commit 04a067c

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/fernandocode/ionic-database-builder/issues)
33

44
# ionic-database-builder
5-
Extended library from [database-builder](https://github.com/fernandocode/database-builder) to assist in creating and maintaining SQL commands. Allowing integrate execute commands with [SQLite ('@ionic-native/sqlite')](https://ionicframework.com/docs/native/sqlite/), [Web Sql](https://www.w3.org/TR/webdatabase/), etc. Through the interface injection 'DatabaseCreatorContract' returning an implementation of 'DatabaseObject'.
5+
Ionic module for [database-builder](https://github.com/fernandocode/database-builder) library. Allowing integrate execute commands with [SQLite ('@ionic-native/sqlite')](https://ionicframework.com/docs/native/sqlite/), [Web Sql](https://www.w3.org/TR/webdatabase/), etc. Through the interface injection 'DatabaseCreatorContract' returning an implementation of 'DatabaseObject'.
66

77
# Getting Started
88

@@ -65,6 +65,10 @@ import { DatabaseHelper } from 'database-builder';
6565
// Declare the implementation of 'DatabaseCreatorContract' that you want to use, you can include a proxy, use libraries with different signatures, or create mocks for tests, etc.
6666
useClass: SQLite
6767
},
68+
{
69+
// Enable log SQL execute
70+
useValue: false
71+
},
6872
// implementation of "DatabaseMigrationContract" to estrategy migration upgrade versions database
6973
DatabaseMigrationService
7074
),
@@ -141,6 +145,10 @@ import { DatabaseModule } from 'ionic-database-builder';
141145
// Declare the implementation of 'DatabaseCreatorContract' that you want to use, you can include a proxy, use libraries with different signatures, or create mocks for tests, etc.
142146
useClass: SQLite
143147
},
148+
{
149+
// Enable log SQL execute
150+
useValue: false
151+
},
144152
// implementation of "DatabaseMigrationContract" to estrategy migration upgrade versions database
145153
DatabaseMigrationService
146154
),

0 commit comments

Comments
 (0)