st-mysql
v1.1.6
Published
```js // Install module by command below // $ sudo apt install node-gyp # This can be needed for iconv module in this module // $ npm install st-mysql // It would be better not to include your secret information of database in source code due to security
Downloads
9
Readme
// Install module by command below
// $ sudo apt install node-gyp # This can be needed for iconv module in this module
// $ npm install st-mysql
// It would be better not to include your secret information of database in source code due to security issue as commiting to github
//
const query = require('st-mysql')({ host: 'localhost', user: 'ACCOUNTID', password: 'PASSWORD', database: 'DBNAME', charset: 'utf-8', flat: true, encode: false });
const stAsync = require('st-async')
stAsync.set_promise(true);
// Example 1
stAsync(
a => query('DROP TABLE IF EXISTS kkk'),
a => query('create table kkk ( kkk text ) default charset=utf8'),
a => query('insert into kkk (kkk) values (?)', ['안녕하세요']),
a => query('select * from kkk'),
stAsync.finally(list => {
console.log(list.flat()); // All resolved responses of queries until now are in list
})
)
// Example 2
// It would be rolled back all things if one of queries in query queue didn't work for some error
stAsync(
a => query(
'DROP TABLE IF EXISTS kkk',
'create table kkk ( kkk text ) default charset=utf8',
'insert into kkk (kkk) values (?)', ['안녕하세요'],
'select * from kkk'
),
stAsync.finally(list => {
console.log(list.flat()); // All resolved responses of queries until now are in list
})
)
// Example 3
stAsync(
a => query.show_tables(),
a => query.show_variables(),
a => query.show_processlist(),
a => query.show_status(),
a => query('drop table x_test_table'),
a => query('create table x_test_table (cnt int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, name varchar(255))'),
a => query.desc('x_test_table'),
a => query.insert('x_test_table', { name: '❤️' + Math.random() }),
a => query.insert('x_test_table', [{ name: Math.random() }, { name: Math.random() }]),
a => query.delete('x_test_table', 'where name like ?', ['%❤️%']),
a => query.insert('x_test_table', { name: '❤️' + Math.random() }),
a => query.select(null, 'x_test_table'),
a => query.select(null, 'x_test_table', 'where name like ?', ['%❤️%']),
a => query.count('x_test_table'),
a => query.count('x_test_table', 'where text like ?', ['%❤️%']),
a => query.drop('x_test_table'),
a => query.optimize('x_test_table'),
a => query.table_schema('x_test_table'),
a => query.truncate('x_test_table'),
stAsync.finally(list => {
console.log(list.flat()); // All resolved responses of queries until now are in list
})
)