SA-MP Forums Archive
SQL error. No callback found - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: SQL error. No callback found (/showthread.php?tid=590528)



SQL error. No callback found - GGRPSkripter - 30.09.2015

I have these error in my sqllog.txt. Any idea how to fix this?

[19:45:07][debug] Natives: : sql_query: Statement executed (stmt->id = 3195, stmt->error = 0). No callback found!
[19:45:07][debug] Natives: : sql_query: Executing statement (stmt->id = 3196, stmt->query = UPDATE `Bankomati` SET `Opljackan` = '0', `OpljackanVreme` = '0', `Novac` = '500000' WHERE `ID` = '26')...


Re: SQL error. No callback found - austin070 - 30.09.2015

1. What version of the MySQL plugin are you using?
2. Post the line or the group of lines involved in the statement.


Re: SQL error. No callback found - PrO.GameR - 30.09.2015

None of those lines are errors, they are both DEBUG msgs
also I noticed you are not using BlueG's plugin or at least a really old one, which one are you using ?


Re: SQL error. No callback found - MD5 - 01.10.2015

The error(s) are, because it's disagreeing with your MySQL table on (PhpMyAdmin).


Re: SQL error. No callback found - GGRPSkripter - 01.10.2015

I'm using latest version of sql plugin.

Код:
format(promenljiva1, sizeof(promenljiva1), "UPDATE `Bankomati` SET `Opljackan` = '%d' WHERE `ID` = '%d'",ATMInfo[id][atmOpljackan], id);
			sql_query(mysql, promenljiva2);
			format(promenljiva2, sizeof(promenljiva2), "UPDATE `Bankomati` SET `OpljackanVreme` = '%d' WHERE `ID` = '%d'", ATMInfo[id][atmOpljackanVreme], id);
			sql_query(mysql, promenljiva2);
			format(promenljiva3, sizeof(promenljiva3), "UPDATE `Bankomati` SET `Novac` = '%d' WHERE `ID` = '%d'", ATMInfo[id][atmNovac], id);
			sql_query(mysql, promenljiva3);