// blob returns the value of column i as a []byte. If copy is false, the []byte// will point to memory allocated by SQLite.funcblob(stmt *C.sqlite3_stmt, i C.int,copybool)[]byte{ifp := C.sqlite3_column_blob(stmt, i); p !=nil{ n := C.sqlite3_column_bytes(stmt, i)if...