PHP Databases Handling Use the .............. to delete the data inside the table, and not the table itself? DROP TABLE REMOVE TABLE TRUNCATE TABLE DELETE TABLE DROP TABLE REMOVE TABLE TRUNCATE TABLE DELETE TABLE 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 Which one of the following methods is used to recuperating prepared statements resources? close() end() finish() final() close() end() finish() final() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods is responsible for sending the query to the database? send_query() query() sendquery() query_send() send_query() query() sendquery() query_send() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which method returns the error code generated from the execution of the last MySQL function? errno() errornumber() errnumber() errorno() errno() errornumber() errnumber() errorno() 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 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 The contents of OTHERTABLE will be deleted ANSWER DOWNLOAD EXAMIANS APP