Errors, files, refactor.

This commit is contained in:
Nuno Cruces
2023-01-12 13:43:35 +00:00
parent 68f6ca1aa4
commit 7c3b679b7d
6 changed files with 197 additions and 71 deletions

12
const.go Normal file
View File

@@ -0,0 +1,12 @@
package sqlite3
const (
OK = 0
ROW = 100
DONE = 101
)
const (
OPEN_READWRITE = 0x00000002
OPEN_CREATE = 0x00000004
)