What is mssql?
The mssql npm package is a Microsoft SQL Server client for Node.js. It allows you to connect to SQL Server databases, execute queries, and manage transactions. It supports both Promises and async/await syntax, making it versatile for different coding styles.
What are mssql's main functionalities?
Connecting to a SQL Server
This code demonstrates how to connect to a SQL Server database using the mssql package. You need to provide your database credentials and server information in the config object.
const sql = require('mssql');
const config = {
user: 'your_username',
password: 'your_password',
server: 'your_server',
database: 'your_database'
};
async function connectToDatabase() {
try {
let pool = await sql.connect(config);
console.log('Connected to the database');
} catch (err) {
console.error('Database connection failed: ', err);
}
}
connectToDatabase();
Executing a Query
This code demonstrates how to execute a SQL query using the mssql package. It connects to the database and runs a SELECT query on a specified table.
const sql = require('mssql');
const config = {
user: 'your_username',
password: 'your_password',
server: 'your_server',
database: 'your_database'
};
async function executeQuery() {
try {
let pool = await sql.connect(config);
let result = await pool.request().query('SELECT * FROM your_table');
console.log(result);
} catch (err) {
console.error('Query execution failed: ', err);
}
}
executeQuery();
Using Prepared Statements
This code demonstrates how to use prepared statements with the mssql package. Prepared statements are useful for executing queries with parameters, which can help prevent SQL injection attacks.
const sql = require('mssql');
const config = {
user: 'your_username',
password: 'your_password',
server: 'your_server',
database: 'your_database'
};
async function executePreparedStatement() {
try {
let pool = await sql.connect(config);
let ps = new sql.PreparedStatement(pool);
ps.input('input_parameter', sql.Int);
await ps.prepare('SELECT * FROM your_table WHERE id = @input_parameter');
let result = await ps.execute({ input_parameter: 1 });
console.log(result);
await ps.unprepare();
} catch (err) {
console.error('Prepared statement execution failed: ', err);
}
}
executePreparedStatement();
Managing Transactions
This code demonstrates how to manage transactions using the mssql package. Transactions allow you to execute a series of queries as a single unit of work, which can be committed or rolled back based on success or failure.
const sql = require('mssql');
const config = {
user: 'your_username',
password: 'your_password',
server: 'your_server',
database: 'your_database'
};
async function manageTransaction() {
try {
let pool = await sql.connect(config);
let transaction = new sql.Transaction(pool);
await transaction.begin();
let request = new sql.Request(transaction);
await request.query('INSERT INTO your_table (column1) VALUES (value1)');
await transaction.commit();
console.log('Transaction committed');
} catch (err) {
console.error('Transaction failed: ', err);
if (transaction) await transaction.rollback();
}
}
manageTransaction();
Other packages similar to mssql
mysql
The mysql package is a client for MySQL databases. It provides similar functionalities to mssql, such as connecting to a database, executing queries, and managing transactions. However, it is specifically designed for MySQL databases.
pg
The pg package is a PostgreSQL client for Node.js. Like mssql, it allows you to connect to a database, execute queries, and manage transactions. It is tailored for PostgreSQL databases and offers features specific to PostgreSQL.
sqlite3
The sqlite3 package is a client for SQLite databases. It provides functionalities for connecting to SQLite databases, executing queries, and managing transactions. Unlike mssql, it is designed for lightweight, file-based databases.
node-mssql
An easy-to-use MSSQL database connector for NodeJS.
There are some TDS modules which offer functionality to communicate with MSSQL databases but none of them does offer enough comfort - implementation takes a lot of lines of code. So I decided to create this module, that make work as easy as it could without loosing any important functionality.
Extra features:
At the moment it support three TDS modules:
What's new in 0.4
Installation
npm install mssql
Quick Example
var sql = require('mssql');
var config = {
user: '...',
password: '...',
server: 'localhost',
database: '...'
}
var connection = new sql.Connection(config, function(err) {
var request = new sql.Request(connection1);
request.query('select 1 as number', function(err, recordset) {
console.dir(recordset);
});
var request = new sql.Request(connection1);
request.input('input_parameter', sql.Int, value);
request.output('output_parameter', sql.Int);
request.execute('procedure_name', function(err, recordsets, returnValue) {
console.dir(recordsets);
});
});
Quick Example with one global connection
var sql = require('mssql');
var config = {
user: '...',
password: '...',
server: 'localhost',
database: '...'
}
sql.connect(config, function(err) {
var request = new sql.Request();
request.query('select 1 as number', function(err, recordset) {
console.dir(recordset);
});
var request = new sql.Request();
request.input('input_parameter', sql.Int, value);
request.output('output_parameter', sql.Int);
request.execute('procedure_name', function(err, recordsets, returnValue) {
console.dir(recordsets);
});
});
Documentation
Configuration
Connection
Request
Transaction
Other
Configuration
var config = {
user: '...',
password: '...',
server: 'localhost',
database: '...',
pool: {
max: 10,
min: 0,
idleTimeoutMillis: 30000
}
}
### Basic configuration is same for all drivers.
- driver - Driver to use (default:
tedious
). Possible values: tedious
or msnodesql
. - user - User name to use for authentication.
- password - Password to use for authentication.
- server - Hostname to connect to.
- port - Port to connect to (default:
1433
). - database - Database to connect to (default: dependent on server configuration).
- pool.max - The maximum number of connections there can be in the pool (default:
10
). - pool.min - The minimun of connections there can be in the pool (default:
0
). - pool.idleTimeoutMillis - The Number of milliseconds before closing an unused connection (default:
30000
).
### Tedious
### Microsoft Driver for Node.js for SQL Server
This driver is not part of the default package and must be installed separately by 'npm install msnodesql'. If you are looking for compiled binaries, see node-sqlserver-binary.
- connectionString - Connection string (default:
Driver={SQL Server Native Client 11.0};Server=#{server},#{port};Database=#{database};Uid=#{user};Pwd=#{password};
).
### node-tds
This driver is not part of the default package and must be installed separately by 'npm install tds'.
Connection
var connection = new sql.Connection({ });
### connect(callback)
Create connection to the server.
Arguments
- callback(err) - A callback which is called after connection has established, or an error has occurred.
Example
var connection = new sql.Connection({
user: '...',
password: '...',
server: 'localhost',
database: '...'
});
connection.connect(function(err) {
});
### close()
Close connection to the server.
Example
connection.close();
Request
var request = new sql.Request();
If you ommit connection argument, global connection is used instead.
### execute(procedure, [callback])
Call a stored procedure.
Arguments
- procedure - Name of the stored procedure to be executed.
- callback(err, recordsets, returnValue) - A callback which is called after execution has completed, or an error has occurred.
Example
var request = new sql.Request();
request.input('input_parameter', sql.Int, value);
request.output('output_parameter', sql.Int);
request.execute('procedure_name', function(err, recordsets, returnValue) {
console.log(recordsets.length);
console.log(recordset[0].length);
console.log(returnValue);
console.log(request.parameters.output_parameter.value);
});
### input(name, [type], value)
Add an input parameter to the request.
Arguments
- name - Name of the input parameter without @ char.
- type - SQL data type of input parameter. If you omit type, module automaticaly decide which SQL data type should be used based on JS data type.
- value - Input parameter value.
undefined
ans NaN
values are automatically converted to null
values.
Example
request.input('input_parameter', value);
request.input('input_parameter', sql.Int, value);
JS Data Type To SQL Data Type Map
String
-> sql.VarChar
Number
-> sql.Int
Boolean
-> sql.Bit
Date
-> sql.DateTime
Default data type for unknown object is sql.VarChar
.
You can define you own type map.
sql.map.register(MyClass, sql.Text);
You can also overwrite default type map.
sql.map.register(Number, sql.BigInt);
### output(name, type)
Add an output parameter to the request.
Arguments
- name - Name of the output parameter without @ char.
- type - SQL data type of output parameter.
Example
request.output('output_parameter', sql.Int);
### query(command, [callback])
Execute the SQL command.
Arguments
- command - T-SQL command to be executed.
- callback(err, recordset) - A callback which is called after execution has completed, or an error has occurred.
Example
var request = new sql.Request();
request.query('select 1 as number', function(err, recordset) {
console.log(recordset[0].number);
});
You can enable multiple recordsets in querries by request.multiple = true
command.
var request = new sql.Request();
request.multiple = true;
request.query('select 1 as number; select 2 as number', function(err, recordsets) {
console.log(recordsets[0][0].number);
console.log(recordsets[1][0].number);
});
Transaction
var transaction = new sql.Transaction();
If you ommit connection argument, global connection is used instead.
Example
var transaction = new sql.Transaction();
transaction.begin(function(err) {
var request = new sql.Request(transaction);
request.query('insert into mytable (mycolumn) values (12345)', function(err, recordset) {
transaction.commit(function(err, recordset) {
console.log("Transaction commited.");
});
});
});
Transaction can also be created by var transaction = connection.transaction();
. Requests can also be created by var request = transaction.request();
.
### begin(callback)
Begin a transaction.
Arguments
- callback(err) - A callback which is called after transaction has began, or an error has occurred.
Example
var transaction = new sql.Transaction();
transaction.begin(function(err) {
});
### commit(callback)
Commit a transaction.
Arguments
- callback(err) - A callback which is called after transaction has commited, or an error has occurred.
Example
var transaction = new sql.Transaction();
transaction.begin(function(err) {
transaction.commit(function(err) {
})
});
### rollback(callback)
Rollback a transaction.
Arguments
- callback(err) - A callback which is called after transaction has rolled back, or an error has occurred.
Example
var transaction = new sql.Transaction();
transaction.begin(function(err) {
transaction.rollback(function(err) {
})
});
## Metadata
Recordset metadata are accessible trough recordset.columns
property.
var request = new sql.Request();
request.query('select 1 as first, \'asdf\' as second', function(err, recordset) {
console.dir(recordset.columns);
console.log(recordset.columns.first.type === sql.Int);
console.log(recordset.columns.second.type === sql.VarChar);
});
Columns structure for example above:
{ first: { name: 'first', size: 10, type: { name: 'int' } },
second: { name: 'second', size: 4, type: { name: 'varchar' } } }
## Data Types
sql.BigInt
sql.Decimal
sql.Float
sql.Int
sql.Money
sql.Numeric
sql.SmallInt
sql.SmallMoney
sql.Real
sql.TinyInt
sql.Char
sql.NChar
sql.Text
sql.NText
sql.VarChar
sql.NVarChar
sql.Xml
sql.Date
sql.DateTime
sql.DateTimeOffset
sql.SmallDateTime
sql.Bit
sql.UniqueIdentifier
Binary types as input parameters are only available with Microsoft's native driver.
sql.VarBinary
sql.NVarBinary
sql.Image
## Verbose Mode
You can enable verbose mode by request.verbose = true
command.
var request = new sql.Request();
request.verbose = true;
request.input('username', 'patriksimek');
request.input('password', 'dontuseplaintextpassword');
request.input('attempts', 2);
request.execute('my_stored_procedure');
Output for example above could look similar to this.
---------- sql execute --------
proc: my_stored_procedure
input: @username, varchar, patriksimek
input: @password, varchar, dontuseplaintextpassword
input: @attempts, bigint, 2
---------- response -----------
{ id: 1,
username: 'patriksimek',
password: 'dontuseplaintextpassword',
email: null,
language: 'en',
attempts: 2 }
---------- --------------------
return: 0
duration: 5ms
---------- completed ----------
## Known issues
Tedious
node-tds
- node-tds 0.1.0 contains bug and return same value for columns with same name.
- node-tds 0.1.0 doesn't support encoding of input parameters.
- node-tds 0.1.0 contains bug in selects that doesn't return any values (select @param = 'value').
TODO
- UniqueIdentifier testing.
- Binary, VarBinary, Image testing.
## License
Copyright (c) 2013 Patrik Simek
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.