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 both OTHERTABLE and MYTABLE will be deleted 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 database will remain unchanged The contents of both OTHERTABLE and MYTABLE will be deleted 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 ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which of the following DBMSs do not have a native PHP extension? PostgreSQL Microsoft SQL Server IBM DB/2 MySQL None of these PostgreSQL Microsoft SQL Server IBM DB/2 MySQL None of these ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which of the methods are used to manage result sets using both associative and indexed arrays? get_array() and get_row() fetch_array() and fetch_column() get_array() and get_column() fetch_array() and fetch_row() get_array() and get_row() fetch_array() and fetch_column() get_array() and get_column() fetch_array() and fetch_row() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling In which version of PHP was MySQL Native Driver(also known as mysqlnd) introduced? PHP 5.3 PHP 5.2 PHP 5.0 PHP 5.1 PHP 5.3 PHP 5.2 PHP 5.0 PHP 5.1 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? affected_rows() new_rows() changed_rows() num_rows() affected_rows() new_rows() changed_rows() num_rows() ANSWER DOWNLOAD EXAMIANS APP