- 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

@@ -114,6 +114,13 @@ void Binder::bind(std::size_t pos, const long& val, Direction dir)
poco_assert(dir == PD_IN);
realBind(pos, MYSQL_TYPE_LONGLONG, &val, 0);
}
void Binder::bind(std::size_t pos, const unsigned long& val, Direction dir)
{
poco_assert(dir == PD_IN);
realBind(pos, MYSQL_TYPE_LONGLONG, &val, 0);
}
#endif