node-firebird 2.4.1 → 2.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +38 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,15 +6,25 @@
|
|
|
6
6
|
|
|
7
7
|
[](https://nodei.co/npm/node-firebird/)
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
- [
|
|
14
|
-
- [
|
|
15
|
-
|
|
16
|
-
- [
|
|
17
|
-
- [
|
|
9
|
+
## Table of contents
|
|
10
|
+
|
|
11
|
+
- [Installation](#installation)
|
|
12
|
+
- [Usage](#usage) — including [developing the driver](#developing-the-driver)
|
|
13
|
+
- [Connection types](#connection-types) — connection options, classic connections, pooling
|
|
14
|
+
- [Database object (db)](#database-object-db) — database, transaction and statement methods/options
|
|
15
|
+
- [Examples](#examples) — parametrized queries, BLOBs, streaming big data, transactions, driver events, database events (POST_EVENT), service manager, charsets/encoding, Firebird 3.0–6.0 features
|
|
16
|
+
- [Extensive Examples](#extensive-examples) — DECFLOAT/INT128, statement timeouts, scrollable cursors, RETURNING multiple rows, SKIP LOCKED, advanced pooling
|
|
17
|
+
- [Using node-firebird with Express.js](#using-node-firebird-with-expressjs)
|
|
18
|
+
- [FAQ](#faq)
|
|
19
|
+
- [Contributing](#contributing) · [Contributors](#contributors)
|
|
20
|
+
|
|
21
|
+
## Community & resources
|
|
22
|
+
|
|
23
|
+
- [Firebird forum](https://groups.google.com/forum/#!forum/node-firebird) on Google Groups — questions and discussion
|
|
24
|
+
- [GitHub issues](https://github.com/hgourvest/node-firebird/issues) — bug reports and feature requests
|
|
25
|
+
- [ROADMAP](ROADMAP.md) — planned work and protocol implementation status
|
|
26
|
+
- Driver internals: [SRP authentication protocol](docs/SRP_PROTOCOL.md) · [database encryption key callback](docs/ENCRYPTION_CALLBACK.md)
|
|
27
|
+
- Firebird itself: [documentation](https://firebirdsql.org/en/documentation/) · [limits and data types](https://firebirdsql.org/en/firebird-technical-specifications/) · [Twitter/X](https://twitter.com/firebirdsql/) · [Facebook](https://www.facebook.com/FirebirdSQL)
|
|
18
28
|
|
|
19
29
|
## Installation
|
|
20
30
|
|
|
@@ -1522,11 +1532,27 @@ db.query('SELECT * FROM ACTORS WHERE NAME LIKE ?', ['James Wick%'], function (er
|
|
|
1522
1532
|
});
|
|
1523
1533
|
```
|
|
1524
1534
|
|
|
1535
|
+
## Contributing
|
|
1536
|
+
|
|
1537
|
+
Contributions are welcome — code, documentation, and bug reports alike.
|
|
1538
|
+
|
|
1539
|
+
- **Found a bug or have a question?** Open a [GitHub issue](https://github.com/hgourvest/node-firebird/issues). Please include your Node.js version, your Firebird server version, and a minimal reproduction (SQL plus code).
|
|
1540
|
+
- **Want to write code?** See [Developing the driver](#developing-the-driver) for the build and test setup, and the [ROADMAP](ROADMAP.md) for ideas on what to pick up. Pull requests against `master` should come with tests and pass `npm test`, `npm run typecheck` and `npm run lint`.
|
|
1541
|
+
- **Improving the documentation** is just as valuable — clearer examples and FAQ entries help everyone.
|
|
1542
|
+
|
|
1525
1543
|
## Contributors
|
|
1526
1544
|
|
|
1527
|
-
- Henri Gourvest,
|
|
1528
|
-
|
|
1529
|
-
-
|
|
1545
|
+
`node-firebird` was created by **Henri Gourvest** and is maintained by **Popa Marius Adrian**, with major early contributions from **Peter Širka** (pooling, sequential selects, driver events).
|
|
1546
|
+
|
|
1547
|
+
- Henri Gourvest — author, <https://github.com/hgourvest>
|
|
1548
|
+
- Popa Marius Adrian — maintainer, <https://github.com/mariuz>
|
|
1549
|
+
- Peter Širka — <https://github.com/petersirka>
|
|
1550
|
+
|
|
1551
|
+
…and many more — see the full [list of contributors](https://github.com/hgourvest/node-firebird/graphs/contributors).
|
|
1552
|
+
|
|
1553
|
+
<a href="https://github.com/hgourvest/node-firebird/graphs/contributors">
|
|
1554
|
+
<img src="https://contrib.rocks/image?repo=hgourvest/node-firebird" alt="Contributors" />
|
|
1555
|
+
</a>
|
|
1530
1556
|
|
|
1531
1557
|
[license-image]: http://img.shields.io/badge/license-MOZILLA-blue.svg?style=flat
|
|
1532
1558
|
[license-url]: LICENSE
|