02.02.2012, 17:52
If i wanna doing a query in mysql, i do this
And after that i said O.o too lines for one query.
I wanna do it likes this
it is possible?
Quote:
new name[10]; name = "lorigio"; new Query[200]; format(Query, sizeof(Query), "update table set var = '%s'", name); mysql_query(Query); |
I wanna do it likes this
Quote:
new name[10]; name = "lorigio"; mysql_query(format("update table set var = '%s'", name)); <-- format return a string[] |