node-adodb icon indicating copy to clipboard operation
node-adodb copied to clipboard

A node.js javascript client implementing the ADODB protocol on windows.

Results 40 node-adodb issues
Sort by recently updated
recently updated
newest added

i try to use this module in combination with react, but i keep getting the error: Module not found: Error: Can't resolve 'child_process' i tried to google sollutions but both...

I have the current code: ```js const ADODB = require("node-adodb"); const conn = ADODB.open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=test.mdb;"); conn .execute("SELECT * FROM Table1") .then(d => { console.log(d, JSON.stringify(d)); }) .catch(e => { console.log(e,...

My mdb file is placed on a remote windows server, so if this tool used with remote server? And if it can do this, how does this code may look...

Bumps [terser](https://github.com/terser/terser) from 4.6.4 to 4.8.1. Changelog Sourced from terser's changelog. v4.8.1 (backport) Security fix for RegExps that should not be evaluated (regexp DDOS) v4.8.0 Support for numeric separators (million...

dependencies

I am still wondering if this still holds true in the new version of MS Access 2021 with node V16.14.0, I also installed the MS Access Database Engine 2016 (since...

I built a backend with node adodb and sometimes I need to run 2 queries at the same time in my database, but sometimes I get the following exception: 'Microsoft...

I have a query nested inside my database working perfectly. When I try to run on node-adodb it doesn't return any results and also doesn't show any error. Query source...

My application works perfectly fine with .accdb Access files but when I try to connect to .mdb Access files I get this error ```Spawn C:\Windows\SysWOW64\cscript.exe error, Provider cannot be found....

If i run my code in node it works just fine, but i can't call the query() function if it runs in electron. Is this a limitation of electron or...

I'm writing a migration utility that imports data into an Access database. I'm finding that even very basic inserts take nearly a second to complete. I'm using the following TypeScript...