Skip to content

Commit

Permalink
Merge pull request wankdanker#49 from gofreddo/patch-1
Browse files Browse the repository at this point in the history
Update READ.me to correct select documentation
  • Loading branch information
markdirish authored Mar 30, 2020
2 parents d5aa876 + 70a6bb4 commit ee4e2c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ Run a query on the database. Can be passed an SQL string with parameter markers

```JavaScript
const odbc = require('odbc');
const connection = odbc.connect(connectionString (error, connection) => {
const connection = odbc.connect(connectionString, (error, connection) => {
connection.query('SELECT * FROM QIWS.QCUSTCDT', (error, result) => {
if (error) { console.error(error) }
console.log(result);
Expand Down

0 comments on commit ee4e2c1

Please sign in to comment.