mattn
ad95f5fd3d
Upgrade amalgramation code
2013-08-13 21:44:05 +09:00
mattn
c1b0b47cb9
Merge pull request #67 from dajohi/master
...
call sqlite3_column_blob() before sqlite3_column_bytes()
2013-08-04 16:53:48 -07:00
David Hill
ecc4ab4956
call sqlite3_column_blob() before sqlite3_column_bytes()
...
sqlite3 documentation states sqlite3_column_blob could modify the
the content and recommends the "safest and easiest" policy is to
invoke sqlite3_column_blob() followed by sqlite3_column_bytes()
from: http://www.sqlite.org/c3ref/column_blob.html
2013-08-02 00:41:09 -04:00
mattn
dc751dd5f6
Merge pull request #64 from wei2912/patch-2
...
Fix a few grammatical errors.
2013-06-18 05:04:07 -07:00
wei2912
82c791ba4f
Fix a few grammatical errors.
2013-06-18 19:40:15 +08:00
mattn
f7461000f1
Merge pull request #63 from wei2912/patch-1
...
Fix multiple commands
2013-06-18 03:41:30 -07:00
wei2912
2922c3445a
Fix multiple commands
...
No need to use multiple commands when a single one should work.
2013-06-18 17:54:06 +08:00
mattn
2a1d73ac46
Add goveralls for travis
2013-06-11 20:08:24 +09:00
mattn
16484897e9
Add travis badge
2013-05-11 22:01:06 +09:00
mattn
6899118eff
Merge pull request #57 from gconnell/tempfile
...
Use file in os.TempDir() for tests.
2013-05-11 05:53:27 -07:00
mattn
f1d58ee64a
go fmt
2013-05-11 21:45:48 +09:00
Russ Cox
d93259577c
the SQLiteResult refers to the connection after it should no longer be referring to the connection. The fix is to fetch the answers before Exec returns, just in case someone wants them.
2013-05-11 21:45:25 +09:00
Graeme Connell
9c24784fe1
Use file in os.TempDir() for tests.
...
Sometimes it's best to not create files in the directories where code lives...
for example, that directory might be read-only, or folks might be using
source-control or build systems that disallow that behavior. To fix this, we
create a file in the temp directory and use it instead.
We don't use ioutil.TempFile(), since that actually creates the file, and we'd
like the tests to run as if the file had never existed. We use 16 bytes from
crypto/rand to avoid people doing bad things with symlinks in the temp
directory.
2013-05-09 11:37:39 -06:00
mattn
0f6f374d27
Treat int as 64bit
2013-04-09 15:18:47 +09:00
mattn
d9f6dadfbf
Add int32 type, close #55
2013-04-08 17:39:03 +09:00
mattn
bbd33c0ffc
Fix #54
2013-04-06 23:06:48 +09:00
mattn
869fc7ec30
Fix typo
2013-03-15 23:01:23 +09:00
mattn
9e8f850ab4
Add FAQ about PKG_CONFIG_PATH
2013-03-15 22:59:50 +09:00
mattn
919cf4144a
Update README.mkd
2013-02-13 18:38:12 +09:00
mattn
716b2f5636
Updated doc. Added link to #27 #39
2013-02-13 18:27:45 +09:00
mattn
bfae0c6cef
Fixed #37
2013-02-13 10:32:40 +09:00
mattn
9b745ee433
Some older version of sqlite3 does not have SQLITE_OPEN_URI.
2013-02-03 23:25:30 +09:00
mattn
6e13c4512d
Add comments.
2013-01-31 16:48:30 +09:00
mattn
ae4b60773a
add flag SQLITE_OPEN_URI to open. closes #38
2013-01-29 09:17:54 +09:00
mattn
b8adf7d8c1
Merge pull request #36 from mstetson/timestamp-fixes
...
A few more timestamp fixes
2013-01-03 16:35:11 -08:00
Micah Stetson
b1a352785e
Merge branch 'master' into timestamp-fixes
2013-01-02 13:23:51 -08:00
mattn
8706f7baf0
Merge pull request #35 from mstetson/master
...
Fix #33 and #34
2012-12-29 23:19:31 -08:00
Micah Stetson
44496728c2
Support more of the timestamp formats undestood by SQLite
2012-12-29 16:51:15 -08:00
Micah Stetson
ce139f706b
Support time values with nanosecond precision
2012-12-29 16:36:29 -08:00
Micah Stetson
f65db67ea3
Refactor timestamp tests
2012-12-29 16:24:53 -08:00
Micah Stetson
f6d10a2a58
Convert times to UTC before storage
2012-12-29 14:47:17 -08:00
Micah Stetson
58c4612c1e
Fix #33 and #34
2012-12-29 14:20:27 -08:00
mattn
f86c8f208d
check destination type whether it's *time.Time or not.
2012-12-26 10:01:39 +09:00
mattn
65fd601635
add example code using bulk insert.
2012-12-26 09:53:22 +09:00
mattn
acf6044aaf
No return error when invalid datetime.
2012-12-26 09:52:55 +09:00
mattn
7ea7c83912
use fmt.Println()
2012-12-07 20:36:57 +09:00
mattn
b758711b08
fixed last_id/changes. it seems long alignment values.
2012-12-07 12:58:08 +09:00
Dobrosław Żybort
430103cc9e
Add support for extracting `2006-01-02 15:04:05.000` formatted datetime.
2012-11-29 13:26:24 +01:00
mattn
68952ca066
Merge pull request #28 from lye/master
...
Add support for extracting 2006-01-02 formatted timestamps.
2012-11-04 16:06:42 -08:00
lye
dcd44f5118
Add support for extracting 2006-01-02 formatted timestamps.
...
SQLite3 stores timestamps very naively -- they're completely untyped,
and can contain any value. The previous implementation always inserts
values in the 'datetime' format, and returns an error when attempting to
extract a field with a different format.
Some legacy databases, unfortunately, were generated using the 'date'
SQLite3 function, which produces rows in the '2006-01-02' format. This
patch adds a special case so that these rows can be extracted without
error.
2012-11-03 19:45:58 -05:00
mattn
76996feb52
Merge pull request #26 from cookieo9/noexample
...
Travis-CI simplification
2012-10-28 23:18:26 -07:00
Carlos Castillo
e50d79429a
Switched example back to mattn's repo.
2012-10-28 22:28:49 -07:00
Carlos Castillo
eed762d437
Updated to newer go support in travis-ci. It is both simpler and should test faster.
2012-10-28 22:24:18 -07:00
Carlos Castillo
e3d45986c8
Merge branch 'master' of https://github.com/mattn/go-sqlite3
2012-10-28 22:19:43 -07:00
mattn
6134963aff
Merge pull request #25 from cookieo9/noexample
...
Modified for Windows support.
2012-10-28 17:15:24 -07:00
Carlos Castillo
df5b1dfca6
Modified example to use local version of package instead of mattn's.
2012-10-27 20:20:29 -07:00
Carlos Castillo
58cfe6309d
Modified for windows support.
2012-10-27 19:58:40 -07:00
mattn
629fe17ada
Merge pull request #24 from jgallagher/master
...
Fix invalid memory read in Close()
2012-10-15 19:49:08 -07:00
John Gallagher
a76fd8f336
Fix read of invalid (already freed) memory.
2012-10-15 20:57:32 -04:00
mattn
b9ff6f3fd3
'is' does not work in some older sqlite3.
2012-09-12 11:43:54 +09:00