index
:
golite
main
Unnamed repository; edit this file 'description' to name the repository.
External SSH Git service user
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
sqlite3.go
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
Merge pull request #300 from sqweek/issue184
mattn
2016-07-15
1
-0
/
+6
|
\
|
*
Fix inconsistent tx state with database/sql.
sqweek
2016-04-18
1
-0
/
+6
*
|
Set SQLITE_DETERMINISTIC if undefined
Zbigniew Mandziejewicz
2016-04-23
1
-0
/
+4
|
/
*
Move sqlite3 amalgation files a directory up.
David Bariod
2016-04-02
1
-0
/
+4
*
Add SQLiteRows.DeclTypes() method
Zac Medico
2016-03-06
1
-6
/
+12
*
Fix minor typos in comments
Philip O Toole
2016-02-23
1
-3
/
+3
*
Merge pull request #267 from ianlancetaylor/go16
mattn
2016-02-01
1
-4
/
+4
|
\
|
*
bind: pass &v[0] in direct call to C
Ian Lance Taylor
2016-01-29
1
-4
/
+4
*
|
callback: use handles rather than passing Go pointers
Ian Lance Taylor
2016-01-29
1
-2
/
+3
|
/
*
avoid cgoCheckPointer. ref https://github.com/golang/go/issues/12416
Yasuhiro Matsumoto
2015-12-30
1
-2
/
+16
*
Merge branch 'master' of https://github.com/mattn/go-sqlite3
Yasuhiro Matsumoto
2015-11-02
1
-11
/
+11
|
\
|
*
Store/retrieve timezones for time.Time values.
Augusto Roman
2015-10-09
1
-11
/
+11
*
|
Merge branch 'pr/207'
Yasuhiro Matsumoto
2015-11-02
1
-1
/
+1
|
\
\
|
|
/
|
/
|
|
*
Fix doc comment
Lars Buitinck
2015-06-05
1
-1
/
+1
*
|
Add FTS4 unicode61 tokenizer support
looi
2015-09-21
1
-1
/
+1
*
|
Merge pull request #229 from danderson/master
mattn
2015-09-16
1
-3
/
+320
|
\
\
|
*
|
Implement support for aggregation functions implemented in Go.
David Anderson
2015-09-15
1
-33
/
+210
|
*
|
Add support for interface{} arguments in Go SQLite functions.
David Anderson
2015-08-21
1
-5
/
+8
|
*
|
Implement support for variadic functions.
David Anderson
2015-08-21
1
-10
/
+42
|
*
|
Move argument converters to callback.go, and optimize return value handling.
David Anderson
2015-08-21
1
-104
/
+18
|
*
|
Implement support for passing Go functions as custom functions to SQLite.
David Anderson
2015-08-21
1
-0
/
+191
*
|
|
introduce ability to pass sqlite_omit_load_extension
Jessica Frazelle
2015-09-04
1
-17
/
+2
|
/
/
*
/
Add fix for go-sqlite3 truncating 64-bit integers when compiled by 32-bit min...
kiwih
2015-08-07
1
-8
/
+8
|
/
*
Z suffix should be no-op
Yasuhiro Matsumoto
2015-04-15
1
-0
/
+1
*
Merge pull request #194 from hallyn/tximm.2
mattn
2015-04-14
1
-4
/
+23
|
\
|
*
Add a txlock option when opening databases (v2)
Serge Hallyn
2015-04-13
1
-4
/
+23
*
|
Fix NULs in text.
Egon Elbre
2015-04-12
1
-1
/
+3
|
/
*
Merge pull request #188 from larsmans/optimize
mattn
2015-03-24
1
-19
/
+23
|
\
|
*
Change strlen(s) > 0 => *s != '\000'.
Lars Buitinck
2015-03-23
1
-1
/
+1
|
*
Less C/Go border crossing to get database changes
Lars Buitinck
2015-03-23
1
-18
/
+22
*
|
Implement number-named parameters. Close #187
mattn
2015-03-24
1
-3
/
+19
*
|
Revert a6c208564eccf3c6743f608ef88398a4ca84c5eb
mattn
2015-03-22
1
-41
/
+3
*
|
Remove debug message
mattn
2015-03-22
1
-1
/
+0
*
|
Fix hang in test
mattn
2015-03-22
1
-11
/
+12
*
|
Fix build
mattn
2015-03-22
1
-1
/
+2
*
|
Should use C.int()
mattn
2015-03-22
1
-1
/
+1
*
|
revert 5253daf8561a6ca5015fd5ce79e4367912146be9 and add _busy_timeout query p...
mattn
2015-03-22
1
-20
/
+25
*
|
Support $NNN-style named parameter. Close #187
mattn
2015-03-22
1
-4
/
+57
*
|
Next() should wait while BUSY or LOCKED because return value is bool
mattn
2015-03-19
1
-9
/
+17
|
/
*
Apply -lpthread withou windows.
Yasuhiro Matsumoto
2015-03-12
1
-1
/
+0
*
Link against pthread
Stéphane Graber
2015-03-11
1
-0
/
+1
*
Rename sqlite3.{c,h} to sqlite3-binding.{c,h}
Stéphane Graber
2015-03-11
1
-1
/
+1
*
Correct HasPrefix method name
Antoni Rościszewski
2015-03-05
1
-1
/
+1
*
Don't modify dsn when has prefix file:
mattn
2015-03-06
1
-1
/
+3
*
Fix filename with loc parameter
Yasuhiro Matsumoto
2015-03-05
1
-1
/
+1
*
Fix loc parsing
mix3
2015-03-05
1
-27
/
+31
*
Fixed bug for loc parameter
mattn
2015-03-05
1
-16
/
+18
*
cleanup code
Yasuhiro Matsumoto
2015-03-04
1
-13
/
+8
*
Add loc=XXX parameters to handle timezone
Yasuhiro Matsumoto
2015-03-04
1
-8
/
+44
*
Add FTS3 feature. Close #176
Yasuhiro Matsumoto
2015-02-24
1
-0
/
+2
[next]