Database logging via sqlite3
This commit is contained in:
17
lib/database.js
Normal file
17
lib/database.js
Normal file
@ -0,0 +1,17 @@
|
||||
var sqlite = require('sqlite3');
|
||||
var fs = require('fs');
|
||||
var util = require('./util');
|
||||
|
||||
var db = new sqlite.Database('database.sql');
|
||||
|
||||
exports.log = function(ip, timestamp, playerCount) {
|
||||
var insertStatement = db.prepare('INSERT INTO pings (timestamp, ip, player) VALUES (?, ?, ?)');
|
||||
|
||||
insertStatement.run(timestamp, ip, playerCount);
|
||||
};
|
||||
|
||||
exports.setup = function(fileName) {
|
||||
db.serialize(function() {
|
||||
db.run('CREATE TABLE IF NOT EXISTS pings (id INT AUTO INCREMENT PRIMARY KEY, timestamp BIGINT NOT NULL, ip TINYTEXT, player MEDIUMINT)');
|
||||
});
|
||||
};
|
Reference in New Issue
Block a user