Skip to content

Commit

Permalink
Update dbcon.js
Browse files Browse the repository at this point in the history
  • Loading branch information
absurdtheory authored Dec 18, 2018
1 parent ff9aa56 commit 7215eae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Database Project/dbcon.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
var mysql = require('mysql');
var pool = mysql.createPool({
connectionLimit : 10,
host : 'classmysql.engr.oregonstate.edu',
user : 'cs340_tuckera6',
password : '5156',
database : 'cs340_tuckera6',
host : '[host name]',
user : '[username]',
password : '[password]',
database : '[database name]',

connectTimeout: 60 * 60 * 1000,
aquireTimeout: 60 * 60 * 1000,
Expand Down

0 comments on commit 7215eae

Please sign in to comment.