allow to insert zero-length strings into database

&b[0] fails with an index out-of-bounds error for a slice with len()==0
This commit is contained in:
Sven Engelhardt 2011-12-02 23:32:38 +01:00
parent fdbb364aba
commit 01566134d1
1 changed files with 8 additions and 3 deletions

View File

@ -154,8 +154,13 @@ func (s *SQLiteStmt) bind(args []interface{}) error {
case nil:
rv = C.sqlite3_bind_null(s.s, n)
case string:
if len(v) == 0 {
b := []byte{0}
rv = C._sqlite3_bind_text(s.s, n, (*C.char)(unsafe.Pointer(&b[0])), C.int(0))
} else {
b := []byte(v)
rv = C._sqlite3_bind_text(s.s, n, (*C.char)(unsafe.Pointer(&b[0])), C.int(len(b)))
}
case int:
rv = C.sqlite3_bind_int(s.s, n, C.int(v))
case int64: