mirror of
https://github.com/kunkunsh/kunkun-ext-zed.git
synced 2025-04-03 17:56:46 +00:00
10 lines
315 B
TypeScript
10 lines
315 B
TypeScript
import db from "/Users/hk/Library/Application Support/Zed/db/0-stable/db.sqlite" with { "type": "sqlite" };
|
|
|
|
const query = db.query("SELECT * FROM workspaces WHERE local_paths IS NOT NULL;");
|
|
|
|
for (const row of query) {
|
|
console.log(row.local_paths);
|
|
console.log(new TextDecoder().decode(row.local_paths));
|
|
}
|
|
|