sqlite3_libversion
| Definition: |
include pSQLite.e
string version = sqlite3_libversion(bool bAsNumSeq=false) |
| Description: |
Obtain the version, as a text string or sequence of three integers.
Obviously the number sequence version is better for testing whether a particular feature is available, whereas the text result is easier for/ready to be displayed. |
| pwa/p2js: | Not supported |
| Example: |
include pSQLite.e
?sqlite3_libversion() -- shows eg "3.2.1"
?sqlite3_libversion(true) -- shows eg {3,2,1}
|