PHP Databases Handling Which one of the following databases has PHP supported almost since the beginning? SQL MySQL Oracle Database SQL+ SQL MySQL Oracle Database SQL+ ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling In PHP in order to access MySQL database you will use: mysqlconnect() function sql_connect() function mysql-connect() function mysql_connect() function mysqlconnect() function sql_connect() function mysql-connect() function mysql_connect() function ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Use the .............. to delete the data inside the table, and not the table itself? DROP TABLE REMOVE TABLE DELETE TABLE TRUNCATE TABLE DROP TABLE REMOVE TABLE DELETE TABLE TRUNCATE TABLE ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods recuperates any memory consumed by a result set? remover() free() alloc() destroy() remover() free() alloc() destroy() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which method returns the error code generated from the execution of the last MySQL function? errorno() errnumber() errno() errornumber() errorno() errnumber() errno() errornumber() 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