Const SQLITE_CANTOPEN
= 14 Const SQLITE_CONSTRAINT
= 19 Const SQLITE_CORRUPT
= 11 Const SQLITE_INTERNAL
= 2 Const SQLITE_INTERRUPT
= 9 Const SQLITE_MISMATCH
= 20 Const SQLITE_NOTFOUND
= 12 Const SQLITE_PROTOCOL
= 15 Const SQLITE_READONLY
= 8 Const SQLITE_WARNING
= 28
If DB_QUERY
("SELECT * FROM test") = SQLITE_OK
Then Print , GetDataType
(DB_Result
(column
, row
).
type), DB_Result
(column
, row
).columnName
, DB_Result
(column
, row
).value
'If DB_QUERY("INSERT INTO test(column2) VALUES ('And now, a fifth row!');") = SQLITE_OK Then
' Print DB_AffectedRows
'End If
'If DB_QUERY("UPDATE test SET column2 = 'And now, a fourth row!' WHERE column1 = '4';") = SQLITE_OK Then
' Print DB_AffectedRows
'End If
DB_Close
If sqlite3_open
(sqlitedb
, Offset(hSqlite
)) = SQLITE_OK
Then DB_Open
= -1 Else DB_Open
= 0
sqlite3_open sqlitedb
, Offset(hSqlite
)
If sqlite3_prepare
(hSqlite
, sql_command
, Len(sql_command
), Offset(hStmt
), 0) = SQLITE_OK
Then Dim As Long colCount: colCount
= sqlite3_column_count
(hStmt
) ret = sqlite3_step(hStmt)
row = row + 1
For column
= 0 To colCount
- 1 DB_Result
(column
+ 1, row
).
type = sqlite3_column_type
(hStmt
, column
) DB_Result(column + 1, row).columnName = sqlite3_column_name(hStmt, column)
DB_Result(column + 1, row).value = sqlite3_column_text(hStmt, column)
ret = sqlite3_step(hStmt)
'do some error catching
sqlite3_finalize hStmt
If sqlite3_prepare
(hSqlite
, sql_command
, Len(sql_command
), Offset(hStmt
), 0) = SQLITE_OK
Then Dim As Long colCount: colCount
= sqlite3_column_count
(hStmt
) ret = sqlite3_step(hStmt)
DB_QUERY = SQLITE_OK
row = row + 1
For column
= 0 To colCount
- 1 DB_Result
(column
+ 1, row
).
type = sqlite3_column_type
(hStmt
, column
) DB_Result(column + 1, row).columnName = sqlite3_column_name(hStmt, column)
DB_Result(column + 1, row).value = sqlite3_column_text(hStmt, column)
ret = sqlite3_step(hStmt)
ElseIf ret
= SQLITE_DONE
Then DB_QUERY
= SQLITE_OK
Else DB_QUERY
= SQLITE_ERROR
'do some error catching
sqlite3_finalize hStmt
DB_AffectedRows = sqlite3_changes(hSqlite)
GetDataType = "INTEGER"
GetDataType = "FLOAT"
GetDataType = "BLOB"
GetDataType = "NULL"
GetDataType = "TEXT"
sqlite3_close hSqlite