sqlitecloud / sqlitecloud-js

Javascript drivers for SQLiteCloud
https://sqlitecloud.github.io/sqlitecloud-js/
MIT License
16 stars 0 forks source link

Deno - Windows - TLS issue #114

Closed Gioee closed 5 days ago

Gioee commented 1 month ago

Discussed in https://github.com/orgs/sqlitecloud/discussions/45

Originally posted by **keef-ui** October 1, 2024 `I` am running deno version 1.46.2. I run a basic script to query : ``` import { Database } from 'npm:@sqlitecloud/drivers' let database = new Database("sqlitecloud://user:password@xxx.sqlite.cloud:8860/chinook.db") let name = 'Breaking The Rules' let results = await database.sql`SELECT * FROM tracks WHERE name = ${name}` console.log(results) ``` the query returns about one minute later with the result. But if I run the similar basic script in Node.js, the result comes back within seconds. My question is , has anyone tested the database module with Deno, if so what is the expected outcome?
Gioee commented 5 days ago

Deno 2 works with Windows https://github.com/sqlitecloud/sqlitecloud-js/actions/runs/11963531862/job/33354141189