mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 09:05:59 +00:00
sqlite version
This commit is contained in:
@@ -142,7 +142,13 @@ const driver = {
|
||||
return createBulkInsertStreamBase(this, stream, pool, name, options);
|
||||
},
|
||||
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