07.06.2012, 22:56
which version of mysql plugin are you using
if you use R7 you need to do this
if you use R7 you need to do this
pawn Код:
mysql_function_query(1,"INSERT INTO ........................",true,"GetLastInsertID","");
forward GetLastInsertID();
public GetLastInsertID()
{
printf("%d",mysql_insert_id(1));
return 1;
}