Enums (result codes, flags…)

This commit is contained in:
Nuno Cruces
2023-01-16 12:54:24 +00:00
parent 1366541e77
commit c480512001
7 changed files with 183 additions and 41 deletions

View File

@@ -14,7 +14,7 @@ func (s *Stmt) Close() error {
}
s.handle = 0
if r[0] != OK {
if r[0] != _OK {
return s.c.error(r[0])
}
return nil