-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDBQueries in JS.txt
206 lines (171 loc) · 6.46 KB
/
DBQueries in JS.txt
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
const result = window.chrome.webview.hostObjects.sync.native.SendClick(jsonData);
// async works but is much slower, from 10ms to 300ms
//const result = await window.chrome.webview.hostObjects.native.SendClick(jsonData);
// Example connection strings
const postgresConnectionString = "host=localhost port=5432 dbname=mydb user=postgres password=secret";
const sqliteConnectionString = "Data Source=C:\\path\\to\\database.db;Version=3;";
// Execute a query and get results as JSON
async function executeQuery() {
try {
// For the approach with methods in NativeWindowControls
const result = await window.chrome.webview.hostObjects.controls.ExecuteQuery(
postgresConnectionString,
"SELECT * FROM users WHERE active = true"
);
// Parse the JSON result
const data = JSON.parse(result);
console.log(data);
// Or using the dedicated database object
const dbResult = await window.chrome.webview.hostObjects.dbAccess.ExecuteQuery(
postgresConnectionString,
"SELECT * FROM users WHERE active = true"
);
const dbData = JSON.parse(dbResult);
console.log(dbData);
} catch (error) {
console.error("Query error:", error);
}
}
// Execute a parameterized query (safer approach with dedicated db object)
async function executeParameterizedQuery() {
try {
// Create a parameterized query
const queryId = await window.chrome.webview.hostObjects.dbAccess.CreateParameterizedQuery(
"SELECT * FROM users WHERE username = @username AND active = @active"
);
// Add parameters
await window.chrome.webview.hostObjects.dbAccess.AddParameter(queryId, "@username", "john_doe");
await window.chrome.webview.hostObjects.dbAccess.AddParameter(queryId, "@active", true);
// Execute the query
const result = await window.chrome.webview.hostObjects.dbAccess.ExecuteParameterizedQuery(
postgresConnectionString,
queryId
);
const data = JSON.parse(result);
console.log(data);
} catch (error) {
console.error("Parameterized query error:", error);
}
}
Webworker Asynchronous Example
// dbWorker.js - Create this file to handle the worker operations
self.onmessage = function(e) {
const { method, connectionString, query, params } = e.data;
try {
// Access the native methods synchronously (no UI thread blocking in worker)
let result;
if (method === 'controls') {
result = window.chrome.webview.hostObjects.sync.controls.ExecuteQuery(
connectionString,
query,
params
);
} else if (method === 'dbAccess') {
result = window.chrome.webview.hostObjects.sync.dbAccess.ExecuteQuery(
connectionString,
query,
params
);
}
// Send the result back to the main thread
self.postMessage({ success: true, data: result });
} catch (error) {
self.postMessage({ success: false, error: error.toString() });
}
}
// dbClient.js - Create this file as your abstraction layer
class DbClient {
constructor() {
this.worker = null;
this.callbacks = new Map();
this.callId = 0;
}
// Initialize the worker
init() {
if (this.worker) return;
this.worker = new Worker('dbWorker.js');
this.worker.onmessage = (e) => {
const { id, success, data, error } = e.data;
if (this.callbacks.has(id)) {
const { resolve, reject } = this.callbacks.get(id);
if (success) {
resolve(data);
} else {
reject(new Error(error));
}
this.callbacks.delete(id);
}
};
}
// Execute query using the worker
executeQuery(connectionString, query, params = [], method = 'controls') {
this.init();
return new Promise((resolve, reject) => {
const id = this.callId++;
this.callbacks.set(id, { resolve, reject });
this.worker.postMessage({
id,
method,
connectionString,
query,
params
});
});
}
// Clean up the worker when done
terminate() {
if (this.worker) {
this.worker.terminate();
this.worker = null;
this.callbacks.clear();
}
}
}
// Specialized query methods
async select(table, conditions = {}, fields = ['*']) {
const whereClause = Object.keys(conditions).length > 0 ?
`WHERE ${Object.keys(conditions).map(k => `${k} = ?`).join(' AND ')}` : '';
const params = Object.values(conditions);
const query = `SELECT ${fields.join(', ')} FROM ${table} ${whereClause}`;
return this.executeQuery(this.connectionString, query, params);
}
async insert(table, data) {
const fields = Object.keys(data);
const placeholders = fields.map(() => '?').join(', ');
const values = Object.values(data);
const query = `INSERT INTO ${table} (${fields.join(', ')}) VALUES (${placeholders})`;
return this.executeQuery(this.connectionString, query, values);
}
async update(table, data, conditions) {
const setClause = Object.keys(data).map(k => `${k} = ?`).join(', ');
const whereClause = Object.keys(conditions).map(k => `${k} = ?`).join(' AND ');
const params = [...Object.values(data), ...Object.values(conditions)];
const query = `UPDATE ${table} SET ${setClause} WHERE ${whereClause}`;
return this.executeQuery(this.connectionString, query, params);
}
async delete(table, conditions) {
const whereClause = Object.keys(conditions).map(k => `${k} = ?`).join(' AND ');
const params = Object.values(conditions);
const query = `DELETE FROM ${table} WHERE ${whereClause}`;
return this.executeQuery(this.connectionString, query, params);
}
// Transaction support
async beginTransaction() {
return this.executeQuery(this.connectionString, 'BEGIN TRANSACTION');
}
async commitTransaction() {
return this.executeQuery(this.connectionString, 'COMMIT');
}
async rollbackTransaction() {
return this.executeQuery(this.connectionString, 'ROLLBACK');
}
// Stored procedure support
async callProcedure(procedureName, params = []) {
const placeholders = params.map((_, i) => `?`).join(', ');
const query = `CALL ${procedureName}(${placeholders})`;
return this.executeQuery(this.connectionString, query, params);
}
}
// Export a singleton instance
const dbClient = new DbClient();
export default dbClient;