sqlite version

This commit is contained in:
Jan Prochazka 2021-05-06 15:27:25 +02:00
parent 1888de8728
commit 23940aa324

View File

@ -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}`,
};
},
};