How to check the SQLite version?

by rachelle_funk , in category: SQL , a year ago

How to check the SQLite version?

Facebook Twitter LinkedIn Telegram Whatsapp

2 answers

by nikki_nikolaus , a year ago

@rachelle_funk You can run this query to check the SQLite database version:


1
SELECT sqlite_version();


by marcella.kautzer , 4 months ago

@rachelle_funk 

To check the SQLite version, you can simply run a query in the SQLite terminal or any SQLite client:


SELECT sqlite_version();


This query will return the current version of SQLite that you are using.