Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
brianc committed Oct 17, 2010
1 parent e3d4dee commit b0e7a70
Showing 1 changed file with 21 additions and 8 deletions.
29 changes: 21 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,27 @@
#pg.js
pure javascript PostgreSQL driver
Pure JavaScript PostgreSQL driver for node.js

## extremely alpha
## ALPHA version

but it wont be SOON.

Unlike many githubbers this is my only project I'm working on. All my
Unlike many githubbers this is my only active project. All my
free coding time is to be going towards this until it's production
ready and stable.
ready and stable so watch the repo and stay tuned.

### What works?

var client = new Client({
username: 'brianc',
database: 'postgres'
});

client.connect();

client.query('select typname, oid from pg_type');

so...watch the repo & stay tuned!
query.on('row', function(row) {
console.log('type name: ' + row[0] + ' oid: ' + row[1]);
};

TDD developed pure node postgres client
query.on('end') {
client.disconnect();
};

0 comments on commit b0e7a70

Please sign in to comment.