-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.ts
45 lines (39 loc) · 1.04 KB
/
test.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
import { db, user, works } from "./db.ts";
// await db.raw(await user.getSql());
// await db.raw(works.toString());
const time = Date.now();
await db.executeJsonQuery({
action: "insert",
data: {
name: "John Doe",
username: "JohnDoe@" + time,
age: 10,
},
from: "users",
});
const a = await user.query.where("username = ? ", "JohnDoe@" + time).count();
const c = await user.query.count();
console.log({ a, c });
const result = await db.executeJsonQuery({
action: "getOne",
where: [{ condition: "username =? ", params: ["JohnDoe@" + time] }],
from: "users",
});
// console.log({ result, a });
await db.executeJsonQuery({
action: "insert",
where: [{ condition: "username = ? ", params: ["JohnDoe"] }],
data: {
name: "John Doe's work",
user: result.id,
},
from: "works",
});
const b = await db.executeJsonQuery({
action: "get",
where: [{ condition: "name = ? ", params: ["John Doe's work"] }],
from: "works",
});
// console.log({ b, a });
const gh = await user.query.select("*").getOne();
// console.log(gh);