Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- mysqlpp::Row row;
- {
- mysqlpp::UseQueryResult res;
- {
- mysqlpp::Query query = conn.query();
- query << "SELECT USER();";
- res = query.use();
- row = res.fetch_row();
- }
- if( row.empty() )
- {
- CryLogAlways( "[SQL] Query Result \'row\'is invalid, this game will not show up on the Online List!" );
- return;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment