PHP Databases Handling The updated MySQL extension released with PHP 5 is typically referred to as. mysql mysqly mysqli MySQL mysql mysqly mysqli MySQL 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 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 The database will remain unchanged ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling If there is no error, then what will the error() method return? Empty String 0 FALSE TRUE Empty String 0 FALSE TRUE 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() num_rows() new_rows() affected_rows() changed_rows() num_rows() new_rows() affected_rows() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which method returns the error code generated from the execution of the last MySQL function? errno() errornumber() errorno() errnumber() errno() errornumber() errorno() errnumber() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Use the .............. to delete the data inside the table, and not the table itself? DROP TABLE DELETE TABLE TRUNCATE TABLE REMOVE TABLE DROP TABLE DELETE TABLE TRUNCATE TABLE REMOVE TABLE ANSWER DOWNLOAD EXAMIANS APP