eveningkid / denodb

MySQL, SQLite, MariaDB, PostgreSQL and MongoDB ORM for Deno

Home Page:https://eveningkid.com/denodb-docs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Library is Preventing the Deno process from closing

seanaye opened this issue · comments

If this library is imported, it will prevent the deno process from ever closing even when it reaches the EOF, irrespective of if a connection to a database is ever opened.

Without denodb

console.log('start')
console.log('end')
> start
> end
>

With denodb

console.log('start')
import { Database } from "denodb/mod.ts"
console.log('end')
> start
> end

same issue here, might be the sqlite connector

same issue here, any suggestion?

same issue here, any suggestion?

Quick and dirty :-)

Deno.exit(0);