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() num_rows() changed_rows() new_rows() affected_rows() num_rows() changed_rows() new_rows() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following databases has PHP supported almost since the beginning? SQL MySQL SQL+ Oracle Database SQL MySQL SQL+ Oracle Database ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling The (|/) tells the server to match ___________ nothing either nothing or a forward slash backward slash forward slash nothing either nothing or a forward slash backward slash forward slash ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods is responsible for sending the query to the database? query_send() sendquery() query() send_query() query_send() sendquery() query() send_query() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods can be used to diagnose and display information about a MySQL connection error? connect_error() connect_errno() mysqli_connect_error() mysqli_connect_errno() connect_error() connect_errno() mysqli_connect_error() mysqli_connect_errno() 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 both OTHERTABLE and MYTABLE 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 OTHERTABLE will be deleted The contents of both OTHERTABLE and MYTABLE 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 ANSWER DOWNLOAD EXAMIANS APP