InterviewSolution
Saved Bookmarks
| 1. |
What is the general statement-issuing routine?(a) mysql_real_query()(b) mysql_query_real()(c) mysql_image_query()(d) mysql_query_image() |
|
Answer» Correct choice is (a) mysql_real_query() To elaborate: The general statement-issuing routine is mysql_real_query(). The statement is provided as a counted string (a string plus a length). The length of the statement string must be kept track of. |
|