Add support to user defined scalar functions

This commit is contained in:
Gwenael Treguier
2015-08-09 09:52:53 +02:00
parent e8967388e6
commit 0a454eed79
4 changed files with 255 additions and 0 deletions

View File

@@ -92,3 +92,6 @@ pub fn code_to_str(code: c_int) -> &'static str {
_ => "Unknown error code",
}
}
pub const SQLITE_UTF8 : c_int = 1;
pub const SQLITE_DETERMINISTIC : c_int = 0x800;