根据繁琐的入门指南,连接到数据库是这样完成的:
var Connection = require('tedious').Connection;
var config = {
userName: 'test',
password: 'test',
server: '192.168.1.210',
// If you're on Windows Azure, you will need this:
options: {encrypt: true}
};
var connection = new Connection(config);
connection.on('connect', function(err) {
// If no error, then good to go...
executeStatement();
}
);
建立连接后,可以像这样执行查询:
var Request = require('tedious').Request;
function executeStatement() {
request = new Request("select 42, 'hello world'", function(err, rowCount) {
if (err) {
console.log(err);
} else {
console.log(rowCount + ' rows');
}
});
request.on('row', function(columns) {
columns.forEach(function(column) {
console.log(column.value);
});
});
connection.execSql(request);
}
这就像一个魅力但是,我想将请求更改为以下内容:
request = new Request("select * from table", function(err, rowCount) {
显然,这是行不通的,因为配置对象中没有定义数据库,因此 SQL 将无法识别该表。
我尝试将以下内容添加到配置对象:
database: 'mydb'
我仍然收到以下错误:
无效的对象名称“表”。
在配置对象中定义数据库的正确方法是什么?