PHP Databases Handling Which of the following methods is used to execute the statement after the parameters have been bound? bind_result() bind_param() bound_result() bound_param() bind_result() bind_param() bound_result() bound_param() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods is responsible for sending the query to the database? sendquery() send_query() query_send() query() sendquery() send_query() query_send() query() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods is used to recuperating prepared statements resources? end() close() finish() final() end() close() finish() final() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which method returns the error code generated from the execution of the last MySQL function? errorno() errnumber() errno() errornumber() errorno() errnumber() errno() errornumber() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling What does the DESC keyword do in the following query?SELECT * FROM MY_TABLE WHERE ID > 0 ORDER BY ID, NAME DESC It causes rows with the same ID to be sorted by NAME in descending order It causes rows with the same ID to be sorted by NAME in ascending order It causes the dataset returned by the query to be sorted in descending order It causes the result set to include a description of the NAME field It causes rows with the same ID to be sorted by NAME in descending order It causes rows with the same ID to be sorted by NAME in ascending order It causes the dataset returned by the query to be sorted in descending order It causes the result set to include a description of the NAME field ANSWER DOWNLOAD EXAMIANS APP