PHP Databases Handling In which version of PHP was MySQL Native Driver(also known as mysqlnd) introduced? PHP 5.1 PHP 5.0 PHP 5.3 PHP 5.2 PHP 5.1 PHP 5.0 PHP 5.3 PHP 5.2 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 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 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? num_rows() affected_rows() changed_rows() new_rows() num_rows() affected_rows() changed_rows() new_rows() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods recuperates any memory consumed by a result set? free() destroy() remover() alloc() free() destroy() remover() alloc() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following statements is used to create a table? CREATE table_name (column_name column_type); CREATE table_name (column_type column_name); CREATE TABLE table_name (column_name column_type); CREATE TABLE table_name (column_type column_name); CREATE table_name (column_name column_type); CREATE table_name (column_type column_name); CREATE TABLE table_name (column_name column_type); CREATE TABLE table_name (column_type column_name); ANSWER DOWNLOAD EXAMIANS APP