我必須dbo.Index在我的節(jié)點(diǎn) js express 應(yīng)用程序中讀取一個(gè)從 SQL Server 命名的表,但它失敗并且什么也不返回。這是我的代碼:app.get('/getData', (req, res, next) => { const config = { user: 'sa', password: '12345', server: 'localhost', database: 'myDB' } const pool = new sql.ConnectionPool(config) pool.connect(err => { if (err) console.log(err) console.log('connected.') const request = new sql.Request(pool) request.query(`SELECT * FROM dbo.Index`, (error, recordSet) => { if (err) console.log(error) res.send(recordSet) }) })})我已經(jīng)測試了這段代碼,它適用于其他表,但是使用這個(gè)特定的名稱dbo.Index,它會(huì)失敗。我必須閱讀它,我不能更改表名(沒有權(quán)限)。我使用node-mssql包來連接數(shù)據(jù)庫。
在 javascript ('dbo.index') 中通過 mssql 從 SQL Server
泛舟湖上清波郎朗
2022-10-08 17:16:27