2011-12-03 16:57:40 +04:00
|
|
|
go-sqlite3
|
|
|
|
==========
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
|
2012-01-20 20:45:29 +04:00
|
|
|
sqlite3 driver for go that using database/sql
|
2011-12-03 16:57:40 +04:00
|
|
|
|
2012-03-29 07:46:32 +04:00
|
|
|
INSTALLATION
|
|
|
|
------------
|
|
|
|
|
|
|
|
It require `pkg-config`. And need to be possible to get information with `pkg-config --cflags --libs sqlite3`.
|
|
|
|
If you are using Windows, you can get pkg-config from below.
|
|
|
|
|
|
|
|
http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/
|
|
|
|
|
2012-03-29 07:48:11 +04:00
|
|
|
Go does not support static linkage for external C library. So you should build sqlite3 with shared library. If it run on windows, it need dll.
|
|
|
|
|
2011-12-03 16:57:40 +04:00
|
|
|
LICENSE
|
|
|
|
-------
|
|
|
|
|
2012-03-29 07:46:32 +04:00
|
|
|
MIT: http://mattn.mit-license.org/2012
|