We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55de0f0 commit 4df3909Copy full SHA for 4df3909
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "sqlkit",
3
- "version": "1.0.4",
+ "version": "1.0.5",
4
"description": "A lightweight SQL builder for TypeScript",
5
"license": "MIT",
6
"author": {
src/dialects/postgres.ts
@@ -1,9 +1,8 @@
-import { Pool } from "pg";
import { QueryResult, SqlExecutor } from "../types";
import { SQLKITException } from "../exceptions";
export class PostgresAdapter implements SqlExecutor {
- constructor(private pgPool: Pool) {}
+ constructor(private pgPool: any) {}
7
8
async executeSQL<T>(sql: string, values: any[]): Promise<QueryResult> {
9
return new Promise((resolve, reject) => {
0 commit comments