PHP Databases Handling The updated MySQL extension released with PHP 5 is typically referred to as. MySQL mysql mysqli mysqly MySQL mysql mysqli mysqly ANSWER DOWNLOAD EXAMIANS APP
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: mysql_connect() function mysql-connect() function mysqlconnect() function sql_connect() function mysql_connect() function mysql-connect() function mysqlconnect() function sql_connect() function ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods is used to recuperating prepared statements resources? finish() close() end() final() finish() close() end() final() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following statements should be used to include a file? #include ; #include ‘filename’; include ‘filename’; @include ‘filename’; #include ; #include ‘filename’; include ‘filename’; @include ‘filename’; 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 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 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 ANSWER DOWNLOAD EXAMIANS APP