mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-05-01 14:23:58 +00:00
sqlite version
This commit is contained in:
@@ -142,7 +142,13 @@ const driver = {
|
|||||||
return createBulkInsertStreamBase(this, stream, pool, name, options);
|
return createBulkInsertStreamBase(this, stream, pool, name, options);
|
||||||
},
|
},
|
||||||
async getVersion(pool) {
|
async getVersion(pool) {
|
||||||
return { version: 'SQLite 3' };
|
const { rows } = await this.query(pool, 'select sqlite_version() as version');
|
||||||
|
const { version } = rows[0];
|
||||||
|
|
||||||
|
return {
|
||||||
|
version,
|
||||||
|
versionText: `SQLite ${version}`,
|
||||||
|
};
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user