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? new_rows() num_rows() affected_rows() changed_rows() new_rows() num_rows() affected_rows() changed_rows() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling If there is no error, then what will the error() method return? FALSE 0 TRUE Empty String FALSE 0 TRUE Empty String ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling The updated MySQL extension released with PHP 5 is typically referred to as. MySQL mysql mysqly mysqli MySQL mysql mysqly mysqli 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, as will be all the contents of MYTABLE whose ID is 1 The contents of both OTHERTABLE and MYTABLE will be deleted The contents of OTHERTABLE will be deleted The database will remain unchanged 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 contents of OTHERTABLE will be deleted The database will remain unchanged ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which of the following DBMSs do not have a native PHP extension? MySQL Microsoft SQL Server None of these PostgreSQL IBM DB/2 MySQL Microsoft SQL Server None of these PostgreSQL IBM DB/2 ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling SQL is not case sensitive. SELECT is the same as select. False True False True ANSWER DOWNLOAD EXAMIANS APP