28.10.2012, 02:17
You can just escape the strings manually by using the back-slash before apostrophes.
pawn Код:
new query[128];
format(query, sizeof(query), "INSERT INTO `table` ('Password') VALUES (\'%s\')", "password123");