Skip to content

Commit

Permalink
links, fix in the example code
Browse files Browse the repository at this point in the history
  • Loading branch information
sidorares committed Jun 21, 2010
1 parent fcae3a9 commit 2d2c4d7
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions README
@@ -1,4 +1,4 @@
Mysql client module for node.js
Mysql client module for node.js, written in JavaScript. No other mysql runtime required.

simple example:

Expand All @@ -15,8 +15,8 @@ dump_rows(db.execute("select 1+1,2,3,'4',length(?)", ["hello"]));
db.close();

otput is:
row: [ 1, 2, 3, "4", null, 5]
row: [ 1, 2, 3, "4", null, 5]
row: [ 2, 2, 3, "4", 5]
row: [ 2, 2, 3, "4", 5]

highlights:

Expand Down Expand Up @@ -69,3 +69,9 @@ TODO:

- buffers
- queue-size balanced connections pool

LINKS

Mysql protocol documentation: http://forge.mysql.com/wiki/MySQL_Internals_ClientServer_Protocol
Other node.js clients: http://github.com/masuidrive/node-mysql
http://github.com/Sannis/node-mysql-libmysqlclient

0 comments on commit 2d2c4d7

Please sign in to comment.