-
-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
node-adodb Error: Spawn C:\Windows\SysWOW64\cscript.exe #85
Comments
I'm facing the same issue and couldn't solve it yet even after trying various things (I'm using iisnode on windows servers) |
I managed to solve the issue when running it in cmd.exe. Sadly it still doesn't run in iisnode and gives the same error there as it previously did. |
You can get this error if anything in your connection string is incorrect.
|
Do |
I got the same error, and it turns out that I spelt the table name wrong in SQL. |
It's annoying. Struggling with the issue It seems the following worked.
ADODB.open(
const mySql = |
use this code :
|
The code above for me does not work, I get:
|
@Mark-81 that would mean for some reason |
This solved my issue: To: Provider=Microsoft.Jet.OLEDB.4.0 |
same for me, i was trying to use 32bits while i'm at 64: // Cambia la ruta a la ubicación de tu archivo de base de datos Access module.exports = connection; |
Good afternoon, I'm having this error and I did some procedures to solve it, but I did not get many results, does anyone know how to solve it?
code below
`const ADODB = require('node-adodb');
ADODB.debug = true;
// Connect to the MS Access DB
const connection = ADODB.open('Provider=Microsoft.Jet.OLEDB.4.0; Data Source=\192.168.0.4\banco_teste\DBCIEE.mdb;');
// Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\192.168.0.4\BANCO\DBCIEE.mdb;Persist Security Info=False
//Query the DB
async function query() {
try{
const users = await connection.query('SELECT * FROM CIEE01');
}
query();`
Thank's
The text was updated successfully, but these errors were encountered: