sqldiff.exe sqlite3.def sqlite3.dll sqlite3.exe sqlite3_analyzer.exe
C:\sqlite>sqlite3 SQLite version 3.13.0 2016-05-18 10:57:30 Enter ".help" for usage hints. Connected to a transient in-memory database. Use ".open FILENAME" to reopen on a persistent database. sqlite>
Now a days Most of the Linux distributions , if not all, are being shipped with Sqlite. So before installing Sqlite manually, its not a bad idea to check if the sqlite is installed on your linux system or not.
So open your terminal and type sqlite3 in it. If you the the following result on terminal then sqlite is already present on yout Linux operating system.
$sqlite3 SQLite version 3.13.0 2016-05-18 10:57:30 Enter ".help" for usage hints. Connected to a transient in-memory database. Use ".open FILENAME" to reopen on a persistent database. sqlite>
If in case sqlite is not installed on your system, the you can also install SQLite from Source on Linux
So open your terminal and type the following commands to install it
$ wget http://www.sqlite.org/2016/sqlite-amalgamation-3130000.zip $ tar xvfz sqlite-autoconf-3070603.tar.gz $ cd sqlite-autoconf-3070603 $ ./configure $ make $ make install
Now a days Most of the Mac OS X distributions , if not all, are being shipped with Sqlite. So before installing Sqlite manually, its not a bad idea to check if the sqlite is installed on your Mac OS X system or not.
So open your terminal and type sqlite3 in it. If you the the following result on terminal then sqlite is already present on yout Mac OS X operating system.
$sqlite3 SQLite version 3.13.0 2016-05-18 10:57:30 Enter ".help" for usage hints. Connected to a transient in-memory database. Use ".open FILENAME" to reopen on a persistent database. sqlite>
If in case sqlite is not installed on your system, the you can also install SQLite from Source on Mac OS X
So open your terminal and type the following commands to install it
$ wget http://www.sqlite.org/2016/sqlite-amalgamation-3130000.zip $ tar xvfz sqlite-autoconf-3070603.tar.gz $ cd sqlite-autoconf-3070603 $ ./configure $ make $ make install