Posts: 737
Threads: 338
Joined: Jan 2013
Hi,
If i specife a callback but i don't create public forward, because i just wanna test there will be no mistake?
Posts: 985
Threads: 13
Joined: Sep 2011
Reputation:
0
What do you mean? Are you trying to say that you want to create a public callback without forwarding it? If so, you can do that(if you ignore the compiler warning). I wouldn't advise it, though.
Posts: 737
Threads: 338
Joined: Jan 2013
No... How to know if any querie is succefully completed or no?
Posts: 737
Threads: 338
Joined: Jan 2013
Can i do
Код:
mysql_tquery(connectionHandle, "UPDATE ..");
if( mysql_errno( ) != 0)
{
print("ERROR");
}
Can i do mysql_errno? and mysql_errno working with mysql_tquery
Posts: 526
Threads: 52
Joined: Feb 2013
Reputation:
0
You could test it with some code just to see if it works or not. That's what I usually do before coming here and asking.
Anyway, since mysql_errno returns the error code of the error message from the previous MySQL operation I suppose it is possible, though I never tried.