- VS 80 build & OS version detection

- SF #3564756: iOS trunk compile fix
This commit is contained in:
Aleksandar Fabijanic
2012-09-11 02:02:23 +00:00
parent 70dbe84a31
commit 69be5d7e98
25 changed files with 177 additions and 33 deletions

View File

@@ -92,6 +92,14 @@ bool Extractor::extract(std::size_t pos, long& val)
val = sqlite3_column_int(_pStmt, (int) pos);
return true;
}
bool Extractor::extract(std::size_t pos, unsigned long& val)
{
if (isNull(pos)) return false;
val = sqlite3_column_int(_pStmt, (int) pos);
return true;
}
#endif