PHP Databases Handling Which one of the following methods is responsible for sending the query to the database? send_query() query_send() sendquery() query() send_query() query_send() sendquery() query() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following method is used to retrieve the number of rows affected by an INSERT, UPDATE, or DELETE query? changed_rows() affected_rows() num_rows() new_rows() changed_rows() affected_rows() num_rows() new_rows() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling SQL is not case sensitive. SELECT is the same as select. True False True False ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which version of MySQL introduced the prepared statements? MySQL 4.1 MySQL 4.3 MySQL 4.0 MySQL 4.2 MySQL 4.1 MySQL 4.3 MySQL 4.0 MySQL 4.2 ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods is used to recuperating prepared statements resources? finish() final() end() close() finish() final() end() close() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling What will happen at the end of the following sequence of SQL commands?BEGIN TRANSACTIONDELETE FROM MYTABLE WHERE ID=1DELETE FROM OTHERTABLEROLLBACK TRANSACTION The database will remain unchanged The contents of OTHERTABLE will be deleted The contents of OTHERTABLE will be deleted, as will be all the contents of MYTABLE whose ID is 1 The contents of both OTHERTABLE and MYTABLE will be deleted The database will remain unchanged The contents of OTHERTABLE will be deleted The contents of OTHERTABLE will be deleted, as will be all the contents of MYTABLE whose ID is 1 The contents of both OTHERTABLE and MYTABLE will be deleted ANSWER DOWNLOAD EXAMIANS APP