PHP Databases Handling Which one of the following statements instantiates the mysqli class? $mysqli->new.mysqli() $mysqli = new mysqli() mysqli = new mysqli() mysqli->new.mysqli() $mysqli->new.mysqli() $mysqli = new mysqli() mysqli = new mysqli() mysqli->new.mysqli() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling In PHP in order to access MySQL database you will use: mysqlconnect() function mysql_connect() function sql_connect() function mysql-connect() function mysqlconnect() function mysql_connect() function sql_connect() function mysql-connect() function 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 both OTHERTABLE and MYTABLE 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 OTHERTABLE will be deleted The contents of both OTHERTABLE and MYTABLE 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 OTHERTABLE will be deleted ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which version of MySQL introduced the prepared statements? MySQL 4.2 MySQL 4.0 MySQL 4.3 MySQL 4.1 MySQL 4.2 MySQL 4.0 MySQL 4.3 MySQL 4.1 ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling The ............. statement is used to delete a table. REMOVE TABLE DEL TABLE DROP TABLE DELETE TABLE REMOVE TABLE DEL TABLE DROP TABLE DELETE TABLE ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods recuperates any memory consumed by a result set? destroy() free() alloc() remover() destroy() free() alloc() remover() ANSWER DOWNLOAD EXAMIANS APP