-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
metasql.d.ts
94 lines (87 loc) · 2.34 KB
/
metasql.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import { QueryResult, Pool } from 'pg';
import { Model } from 'metaschema';
type ScalarValue = string | number | undefined;
export interface DatabaseConfig {
host: string;
port: number;
database: string;
user: string;
password: string;
logger: { db: Function; debug: Function };
}
export class Database {
pool: Pool;
model: Model;
console: Console;
constructor(config: DatabaseConfig);
query(sql: string, values: Array<string | number>): Promise<QueryResult>;
insert(table: string, record: object): Modify;
select(
table: string,
fields: Array<string>,
...conditions: Array<object>
): Query;
select(table: string, ...conditions: Array<object>): Query;
row(
table: string,
fields: Array<string>,
...conditions: Array<object>
): Promise<Array<object>>;
scalar(
table: string,
field: string,
...conditions: Array<object>
): Promise<ScalarValue>;
col(
table: string,
field: string,
...conditions: Array<object>
): Promise<Array<ScalarValue>>;
dict(
table: string,
fields: Array<string>,
...conditions: Array<object>
): Promise<object>;
delete(table: string, ...conditions: Array<object>): Modify;
update(table: string, delta: object, ...conditions: Array<object>): Modify;
close(): void;
}
export class Query {
constructor(
db: Database,
table: string,
fields: Array<string>,
...where: Array<object>
);
order(field: string | Array<string>): Query;
desc(field: string | Array<string>): Query;
limit(count: number): Query;
offset(count: number): Query;
then(
resolve?: (rows: Array<object>) => unknown,
reject?: Function,
): Promise<unknown>;
catch(reject?: Function): Promise<unknown>;
toString(): string;
toObject(): QueryObject;
static from(db: Database, metadata: QueryObject): Query;
}
interface QueryObject {
table: string;
fields: string | Array<string>;
where?: Array<object>;
options: Array<object>;
}
export class Modify {
constructor(db: Database, sql: string, args: Array<string>);
returning(field: string | Array<string>): Modify;
then(resolve: (rows: Array<object>) => void, reject: Function): void;
toString(): string;
toObject(): ModifyObject;
static from(db: Database, metadata: ModifyObject): Modify;
}
interface ModifyObject {
sql: string;
args: Array<string>;
options: Array<object>;
}