如何解决如何使用量角器创建Azure SQL数据库连接?
如何使用量角器创建Azure sql数据库连接?任何人都可以帮助使用Typescript编写的代码吗?
解决方法
您可以使用乏味的mmmmsql,sequelize和其他库来在nodejs中操作sqlserver数据库。
例如:
MSDBClient.ts
import mssql = require('mssql');
// 定义数据查询回调接口
export declare type OnQueryCallback = (err: Error,rc: any) => void
export declare type OnExecCallback = (err: Error,rc: boolean) => void
export class MSSQLDBClient {
// url
constr: string;
constructor(username: string,password: string,host: string,port: number,dbName: string) {
this.constr = this.constr = `mssql://${username}:${password}@${host}:${port}/${dbName}`;
mssql.connect(this.constr).then(function () {
console.log('----------------');
console.log('-login success-');
console.log('----------------');
}).catch(function (err) {
console.log(err);
})
}
public async query(strSql: string,cb: OnQueryCallback) {
try {
await mssql.connect(this.constr).then(function() {
new mssql.Request().query(strSql).then(function(result) {
// console.log(result);
if (cb) cb(null,result);
}).catch(function(err) {
console.log(err);
if (cb) cb(err,null);
});
// Stored Procedure
}).catch(function(err) {
console.log(err);
if (cb) cb(err,null);
})
} catch (err) {
console.log(err);
if (cb) cb(err,null);
}
}
public async exec(strSql: string,cb: OnExecCallback) {
await mssql.connect(this.constr,function () {
mssql.query(strSql,function (err,data) {
if (err) {
if (cb) cb(err,false);
} else {
if (cb) cb(null,true);
mssql.close();
}
});
}
);
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。