Skip to content

Commit a1404a5

Browse files
committed
Update readme.md
1 parent 72438fd commit a1404a5

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

README.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
> Wrapper for multiple databases with a JDBC-like connection
88
9-
Database-js implements a common, promise-based interface for SQL database access. Inspired by Java, it adopts the pattern of using connection strings to identify the database driver. Wrappers around native database drivers provide a unified interface to handle databases. Thus, you don't need to modify your code (except the connection string) to change your database! 😉
9+
Database-js implements a common, promise-based interface for SQL database access. Inspired by Java, it uses connection strings to identify the database driver. Wrappers around native database drivers provide a unified interface to handle databases. Thus, you don't need to modify your code (except the connection string) to change your database! 😉
1010

1111
Database-js has built-in prepared statements, even if the underlying driver does not support them. It is built on Promises, so it works well with ES7 async code.
1212

@@ -27,17 +27,18 @@ npm install database-js
2727

2828
## Drivers
2929

30-
Currently available drivers (*wrappers*):
31-
- [ActiveX Data Objects](//github.com/mlaanderson/database-js-adodb) - *Windows only*
32-
- [CSV files](//github.com/mlaanderson/database-js-csv)
33-
- [Excel files](//github.com/mlaanderson/database-js-xlsx)
34-
- [Firebase](//github.com/mlaanderson/database-js-firebase)
35-
- [INI files](//github.com/mlaanderson/database-js-ini)
36-
- [JSON files](//github.com/thiagodp/database-js-json)
37-
- [MySQL](//github.com/mlaanderson/database-js-mysql)
38-
- [MS SQL Server](https://github.com/thiagodp/database-js-mssql)
39-
- [PostgreSQL](//github.com/mlaanderson/database-js-postgres)
40-
- [SQLite](//github.com/mlaanderson/database-js-sqlite)
30+
| Driver (wrapper) | Note | Installation |
31+
| ---------------- | ---- | ------------ |
32+
| [ActiveX Data Objects](//github.com/mlaanderson/database-js-adodb) | *Windows only* | `npm i database-js-adodb` |
33+
| [CSV files](//github.com/mlaanderson/database-js-csv) | | `npm i database-js-csv` |
34+
| [Excel files](//github.com/mlaanderson/database-js-xlsx) | | `npm i database-js-xlsx` |
35+
| [Firebase](//github.com/mlaanderson/database-js-firebase) | | `npm i database-js-firebase` |
36+
| [INI files](//github.com/mlaanderson/database-js-ini) | | `npm i database-js-ini` |
37+
| [JSON files](//github.com/thiagodp/database-js-json) | | `npm i database-js-json` |
38+
| [MySQL](//github.com/mlaanderson/database-js-mysql) | | `npm i database-js-mysql` |
39+
| [MS SQL Server](https://github.com/thiagodp/database-js-mssql) | | `npm i database-js-mssql` |
40+
| [PostgreSQL](//github.com/mlaanderson/database-js-postgres) | | `npm i database-js-postgres` |
41+
| [SQLite](//github.com/mlaanderson/database-js-sqlite) | | `npm i database-js-sqlite` |
4142

4243
[See here](//github.com/mlaanderson/database-js/wiki/Drivers#implementing-a-new-driver) how to add a new driver.
4344

package-lock.json

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)