PHP Databases Handling Which of the methods are used to manage result sets using both associative and indexed arrays? get_array() and get_column() fetch_array() and fetch_row() fetch_array() and fetch_column() get_array() and get_row() get_array() and get_column() fetch_array() and fetch_row() fetch_array() and fetch_column() get_array() and get_row() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling In PHP in order to access MySQL database you will use: sql_connect() function mysql_connect() function mysql-connect() function mysqlconnect() function sql_connect() function mysql_connect() function mysql-connect() function mysqlconnect() function ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which of the following methods is used to execute the statement after the parameters have been bound? bind_result() bound_param() bind_param() bound_result() bind_result() bound_param() bind_param() bound_result() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling The (|/) tells the server to match ___________ either nothing or a forward slash backward slash nothing forward slash either nothing or a forward slash backward slash nothing forward slash ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling The ............. statement is used to delete a table. DEL TABLE DROP TABLE DELETE TABLE REMOVE TABLE DEL TABLE DROP TABLE DELETE TABLE REMOVE TABLE 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 the result set to include a description of the NAME field 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 rows with the same ID to be sorted by NAME 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 ascending order It causes the dataset returned by the query to be sorted in descending order It causes rows with the same ID to be sorted by NAME in descending order ANSWER DOWNLOAD EXAMIANS APP