02.07.2018, 16:26
Does it really matter which one comes first and which one does not?
When you want the opposite, you do exactly that:
or simply add the statement inside !(statement)
When you want the opposite, you do exactly that:
pawn Код:
if(g_SQL != MYSQL_INVALID_HANDLE && mysql_errno(g_SQL) == 0)
pawn Код:
if(!(g_SQL == MYSQL_INVALID_HANDLE || mysql_errno(g_SQL) != 0))