Skip to content

Commit 6a95b18

Browse files
committed
[ci skip] change links to mysqljs org
1 parent 66983ec commit 6a95b18

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![Windows Build][appveyor-image]][appveyor-url]
88
[![License][license-image]][license-url]
99

10-
MySql client for node.js. Written in native JavaScript and aims to be mostly api compatible with [node-mysql](https://github.com/mysqljs/node-mysql)
10+
MySql client for node.js. Written in native JavaScript and aims to be mostly api compatible with [node-mysql](https://github.com/mysqljs/mysql)
1111

1212
[![NPM](https://nodei.co/npm/mysql2.png?downloads=true&stars=true)](https://nodei.co/npm/mysql2/)
1313
[![NPM](https://nodei.co/npm-dl/mysql2.png?months=6)](https://nodei.co/npm/mysql2/)
@@ -29,7 +29,7 @@ Please check [documentation](https://github.com/sidorares/node-mysql2/tree/maste
2929
## Acknowledgements
3030

3131
- Internal protocol is written by @sidorares [MySQL-Native](https://github.com/sidorares/nodejs-mysql-native)
32-
- Constants, SQL parameters interpolation, Pooling, `ConnectionConfig` class taken from [node-mysql](https://github.com/mysqljs/node-mysql)
32+
- Constants, SQL parameters interpolation, Pooling, `ConnectionConfig` class taken from [node-mysql](https://github.com/mysqljs/mysql)
3333
- SSL upgrade code based on @TooTallNate [code](https://gist.github.com/TooTallNate/848444)
3434
- Secure connection / compressed connection api flags compatible to [MariaSQL](https://github.com/mscdex/node-mariasql/) client.
3535
- [Contributors](https://github.com/sidorares/node-mysql2/graphs/contributors)

documentation/Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Introduction
44

5-
`Node-MySQL2` aims to be a drop in replacement for [node-mysql](https://github.com/mysqljs/node-mysql). Please check `node-mysql` for full documentation.
5+
`Node-MySQL2` aims to be a drop in replacement for [node-mysql](https://github.com/mysqljs/mysql). Please check `node-mysql` for full documentation.
66

77
**Note :** *If you see any API incompatibilities with `node-mysql`, please report via github issue.*
88

@@ -39,7 +39,7 @@ You need to check corresponding field's zeroFill flag and convert to string manu
3939
## Other Resources
4040

4141
- [Wire protocol documentation](http://dev.mysql.com/doc/internals/en/client-server-protocol.html)
42-
- [node-mysql](https://github.com/mysqljs/node-mysql) - Most popular node.js mysql client library
42+
- [node-mysql](https://github.com/mysqljs/mysql) - Most popular node.js mysql client library
4343
- [node-mariasql](https://github.com/mscdex/node-mariasql/) - Bindings to libmariasql. One of the fastest clients
4444
- [node-libmysqlclident](https://github.com/Sannis/node-mysql-libmysqlclient) - Bindings to libmysqlclient
4545
- [go-mysql](https://github.com/siddontang/go-mysql) - MySQL Go client (prepared statements, binlog protocol, server)

lib/commands/query.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Query.prototype.resultsetHeader = function (packet, connection) {
105105
return this.readField;
106106
};
107107

108-
// some code taken from https://github.com/felixge/node-mysql/pull/668
108+
// some code taken from https://github.com/mysqljs/mysql/pull/668
109109
Query.prototype._findOrCreateReadStream = function (path) {
110110
if (this._streamFactory) {
111111
return this._streamFactory(path);

lib/constants/errors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// copy from https://raw.githubusercontent.com/felixge/node-mysql/7770ee5bb13260c56a160b91fe480d9165dbeeba/lib/protocol/constants/errors.js
1+
// copy from https://raw.githubusercontent.com/mysqljs/mysql/7770ee5bb13260c56a160b91fe480d9165dbeeba/lib/protocol/constants/errors.js
22
// (c) node-mysql authors
33

44
/**

lib/packets/packet.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ Packet.prototype.parseInt = function (len) {
379379
return result * sign;
380380
};
381381

382-
// copy-paste from https://github.com/felixge/node-mysql/blob/master/lib/protocol/Parser.js
382+
// copy-paste from https://github.com/mysqljs/mysql/blob/master/lib/protocol/Parser.js
383383
Packet.prototype.parseGeometryValue = function () {
384384
var buffer = this.readLengthCodedBuffer();
385385
var offset = 4;

lib/results_stream.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var Readable = require('stream').Readable;
22

3-
// copy-paste from https://github.com/felixge/node-mysql/blob/master/lib/protocol/sequences/Query.js
3+
// copy-paste from https://github.com/mysqljs/mysql/blob/master/lib/protocol/sequences/Query.js
44
module.exports = function (command, connectionStream) {
55
command.stream = function (options) {
66
var stream;

0 commit comments

Comments
 (0)