Skip to content

Commit

Permalink
readme bash removed
Browse files Browse the repository at this point in the history
  • Loading branch information
lroal authored Jul 15, 2024
1 parent 63726fe commit 7c5941d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ If you value the hard work behind Orange and wish to see it evolve further, cons
## Installation

```bash
$ npm install orange-orm
npm install orange-orm
```

## Example
Expand All @@ -50,7 +50,7 @@ Watch the [tutorial video on YouTube](https://youtu.be/1IwwjPr2lMs)

Here we choose SQLite.
```bash
$ npm install sqlite3
npm install sqlite3
```
<sub>📄 map.ts</sub>
```javascript
Expand Down Expand Up @@ -280,15 +280,15 @@ In SQLite, columns with the INTEGER PRIMARY KEY attribute are designed to autoin

__SQLite__
```bash
$ npm install sqlite3
npm install sqlite3
```
```javascript
import map from './map';
const db = map.sqlite('demo.db');
```
__With connection pool__
```bash
$ npm install sqlite3
npm install sqlite3
```
```javascript
import map from './map';
Expand Down Expand Up @@ -331,7 +331,7 @@ const db = map.mysql('mysql://test:test@mysql/test');

__MS SQL__
```bash
$ npm install tedious
npm install tedious
```
```javascript
import map from './map';
Expand All @@ -353,15 +353,15 @@ const db = map.mssql({

__PostgreSQL__
```bash
$ npm install pg
npm install pg
```
```javascript
import map from './map';
const db = map.postgres('postgres://postgres:postgres@postgres/postgres');
```
__Oracle__
```bash
$ npm install oracledb
npm install oracledb
```
```javascript
import map from './map';
Expand All @@ -375,7 +375,7 @@ const db = map.oracle({
__SAP Adaptive Server__
Even though msnodesqlv8 was developed for MS SQL, it also works for SAP ASE as it is ODBC compliant.
```bash
$ npm install msnodesqlv8
npm install msnodesqlv8
```
```javascript
import { fileURLToPath } from 'url';
Expand Down

0 comments on commit 7c5941d

Please sign in to comment.