22.06.2013, 15:59
Yep, I'll change the message.
Has anyone any other suggestions? R27 has now y_inline support, but only this as feature seems quite boring.
A preview:
Has anyone any other suggestions? R27 has now y_inline support, but only this as feature seems quite boring.
A preview:
pawn Code:
public OnPlayerConnect(playerid) {
inline Test2(d1, d2) {
new
Rows,
Fields;
cache_get_data(Rows, Fields, SQL);
printf("Rows: %d; Fields: %d", Rows, Fields);
}
mysql_tquery_inline(SQL, Query, using inline Test2, "dd", 22, 42);
return 1;
}