Skip to content

Commit

Permalink
Merge pull request #2122 from wellwelwel/ts-docs
Browse files Browse the repository at this point in the history
docs: introduce TypeScript documentation
  • Loading branch information
wellwelwel committed Jul 9, 2023
2 parents 8ca36c7 + b65cf6a commit 00508c3
Show file tree
Hide file tree
Showing 23 changed files with 1,050 additions and 151 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,11 @@
}
},
{
"files": ["**/*.md/*js"],
"files": ["**/*.md/*js", "**/*.md/*ts"],
"rules": {
"no-undef": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "off",
"no-console": "off",
"no-unused-labels": "off",
"strict": "off",
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,14 @@ MySQL2 is free from native bindings and can be installed on Linux, Mac OS or Win
npm install --save mysql2
```

If you are using TypeScript, you will need to install `@types/node`.

```bash
npm install --save-dev @types/node
```

> For TypeScript documentation and examples, see [here](./documentation/en/TypeScript-Examples.md).
## First Query
```js
// get the client
Expand Down
306 changes: 306 additions & 0 deletions documentation/en/TypeScript-Examples.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,306 @@
# Using MySQL2 with TypeScript

## Installation
```bash
npm install --save mysql2
npm install --save-dev @types/node
```

> The `@types/node` ensure the proper interaction between **TypeScript** and the **Node.js** modules used by **MySQL2** (*net*, *events*, *stream*, *tls*, etc.).
Requires **TypeScript** `>=4.5.2`.

---

## Usage
You can import **MySQL2** in two ways:
- By setting the `esModuleInterop` option to `true` in `tsconfig.json`
```ts
import mysql from 'mysql2';
import mysql from 'mysql2/promise';
```

- By setting the `esModuleInterop` option to `false` in `tsconfig.json`
```ts
import * as mysql from 'mysql2';
import * as mysql from 'mysql2/promise';
```

### Connection
```ts
import mysql, { ConnectionOptions } from 'mysql2';

const access: ConnectionOptions = {
user: 'test',
database: 'test',
};

const conn = mysql.createConnection(access);
```

### Pool Connection
```ts
import mysql, { PoolOptions } from 'mysql2';

const access: PoolOptions = {
user: 'test',
database: 'test',
};

const conn = mysql.createPool(access);
```

### Query and Execute
#### A simple query
```ts
conn.query('SELECT 1 + 1 AS `test`;', (_err, rows) => {
/**
* @rows: [ { test: 2 } ]
*/
});

conn.execute('SELECT 1 + 1 AS `test`;', (_err, rows) => {
/**
* @rows: [ { test: 2 } ]
*/
});
```

The `rows` output will be these possible types:
- `RowDataPacket[]`
- `RowDataPacket[][]`
- `ResultSetHeader`
- `ResultSetHeader[]`
- `ProcedureCallPacket`

In this example, you need to manually check the output types

---

## Type Specification
### RowDataPacket[]
An array with the returned rows, for example:

```ts
import mysql, { RowDataPacket } from 'mysql2';

const conn = mysql.createConnection({
user: 'test',
database: 'test',
});

// SELECT
conn.query<RowDataPacket[]>('SELECT 1 + 1 AS `test`;', (_err, rows) => {
console.log(rows);
/**
* @rows: [ { test: 2 } ]
*/
});

// SHOW
conn.query<RowDataPacket[]>('SHOW TABLES FROM `test`;', (_err, rows) => {
console.log(rows);
/**
* @rows: [ { Tables_in_test: 'test' } ]
*/
});
```

Using `rowsAsArray` option as `true`:

```ts
import mysql, { RowDataPacket } from 'mysql2';

const conn = mysql.createConnection({
user: 'test',
database: 'test',
rowsAsArray: true,
});

// SELECT
conn.query<RowDataPacket[]>('SELECT 1 + 1 AS test, 2 + 2 AS test;', (_err, rows) => {
console.log(rows);
/**
* @rows: [ [ 2, 4 ] ]
*/
});

// SHOW
conn.query<RowDataPacket[]>('SHOW TABLES FROM `test`;', (_err, rows) => {
console.log(rows);
/**
* @rows: [ [ 'test' ] ]
*/
});
```

---

### RowDataPacket[][]
Using `multipleStatements`option as `true` with multiple queries:
```ts
import mysql, { RowDataPacket } from 'mysql2';

const conn = mysql.createConnection({
user: 'test',
database: 'test',
multipleStatements: true,
});

const sql = `
SELECT 1 + 1 AS test;
SELECT 2 + 2 AS test;
`;

conn.query<RowDataPacket[][]>(sql, (_err, rows) => {
console.log(rows);
/**
* @rows: [ [ { test: 2 } ], [ { test: 4 } ] ]
*/
});
```

---

### ResultSetHeader
For `INSERT`, `UPDATE`, `DELETE`, `TRUNCATE`, etc.:
```ts
import mysql, { ResultSetHeader } from 'mysql2';

const conn = mysql.createConnection({
user: 'test',
database: 'test',
});

const sql = `
SET @1 = 1;
`;

conn.query<ResultSetHeader>(sql, (_err, result) => {
console.log(result);
/**
* @result: ResultSetHeader {
fieldCount: 0,
affectedRows: 0,
insertId: 0,
info: '',
serverStatus: 2,
warningStatus: 0,
changedRows: 0
}
*/
});
```

---

### ResultSetHeader[]
For multiples `INSERT`, `UPDATE`, `DELETE`, `TRUNCATE`, etc. when using `multipleStatements` as `true`:

```ts
import mysql, { ResultSetHeader } from 'mysql2';

const conn = mysql.createConnection({
user: 'test',
database: 'test',
multipleStatements: true,
});

const sql = `
SET @1 = 1;
SET @2 = 2;
`;

conn.query<ResultSetHeader[]>(sql, (_err, results) => {
console.log(results);
/**
* @results: [
ResultSetHeader {
fieldCount: 0,
affectedRows: 0,
insertId: 0,
info: '',
serverStatus: 10,
warningStatus: 0,
changedRows: 0
},
ResultSetHeader {
fieldCount: 0,
affectedRows: 0,
insertId: 0,
info: '',
serverStatus: 2,
warningStatus: 0,
changedRows: 0
}
]
*/
});
```

---

### ProcedureCallPacket
By performing a **Call Procedure** using `INSERT`, `UPDATE`, etc., the return will be a `ProcedureCallPacket<ResultSetHeader>` (even if you perform multiples queries and set `multipleStatements` to `true`):

```ts
import mysql, { ProcedureCallPacket, ResultSetHeader } from 'mysql2';

const conn = mysql.createConnection({
user: 'test',
database: 'test',
});

/** ResultSetHeader */
conn.query('DROP PROCEDURE IF EXISTS myProcedure');

/** ResultSetHeader */
conn.query(`
CREATE PROCEDURE myProcedure()
BEGIN
SET @1 = 1;
SET @2 = 2;
END
`);

/** ProcedureCallPacket */
const sql = 'CALL myProcedure()';

conn.query<ProcedureCallPacket<ResultSetHeader>>(sql, (_err, result) => {
console.log(result);
/**
* @result: ResultSetHeader {
fieldCount: 0,
affectedRows: 0,
insertId: 0,
info: '',
serverStatus: 2,
warningStatus: 0,
changedRows: 0
}
*/
});
```

> For `CREATE PROCEDURE` and `DROP PROCEDURE`, these returns will be the *default* `ResultSetHeader`.
By using `SELECT` and `SHOW` queries in a **Procedure Call**, it groups the results as:
```tsx
/** ProcedureCallPacket<RowDataPacket[]> */
[RowDataPacket[], ResultSetHeader]
```

For `ProcedureCallPacket<RowDataPacket[]>`, please see the following examples.

---

## Examples
You can also check some code examples using **MySQL2** and **TypeScript** to understand advanced concepts:

- [Extending and using **Interfaces** with `RowDataPacket`](../../examples/typescript/row-data-packet.ts)
- [Extending and using **Interfaces** with `RowDataPacket` and `rowAsArray`](../../examples/typescript/row-data-packet-row-as-array.ts)
- [Extending and using **Interfaces** with `RowDataPacket` and `multipleStatements`](../../examples/typescript/row-data-packet-multi-statements.ts)
- [Extending and using **Interfaces** with `RowDataPacket`, `rowAsArray` and `multipleStatements`](../../examples/typescript/row-data-packet-row-as-array-multi-statements.ts)
- [Checking for `ResultSetHeader`, extending and using **Interfaces** with `RowDataPacket` from `ProcedureCallPacket`](../../examples/typescript/procedure-call-packet.ts)
- [Checking for `ResultSetHeader`, extending and using **Interfaces** with `RowDataPacket` and `rowAsArray` from `ProcedureCallPacket`](../../examples/typescript/procedure-call-packet-row-as-array.ts)
- [Creating a basic custom **MySQL2** **Class**](../../examples/typescript/basic-custom-class.ts)
Loading

0 comments on commit 00508c3

Please sign in to comment.