Use double backslash on Windows

This commit is contained in:
Christopher Jones 2020-07-30 15:56:05 +10:00
parent b80e744370
commit 582202b761
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ const dbConfig = require('./dbconfig.js');
// On Windows and macOS, you can specify the directory containing your Oracle
// Client Libraries. If this is not done, then a standard search heuristic is
// used, see the node-oracledb documentation.
// oracledb.initOracleClient({ libDir: 'C:\instantclient_19_3' }); // Windows
// oracledb.initOracleClient({ libDir: 'C:\\instantclient_19_3' }); // Windows
// oracledb.initOracleClient({ libDir: '/Users/your_username/instantclient_19_3' }); // macOS
async function run() {