Which one of the following methods can be used to diagnose and display information about a MySQL connection error? mysqli_connect_error() connect_errno() connect_error() mysqli_connect_errno() TRUE ANSWER : ? YOUR ANSWER : ?
Transactions are used to treat sets of SQL statements atomically. True False TRUE ANSWER : ? YOUR ANSWER : ?
Once your application can generate administrative links, you need to load those links into _________ start.php index.ini index.php php.ini TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is not an SQL aggregate function? AVG MIN CURRENT_DATE() SUM MAX TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following statements can be used to select the database? $mysqli->select_db(‘databasename’); mysqli=select_db(‘databasename’); $mysqli=select_db(‘databasename’); mysqli->select_db(‘databasename’); TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following lines need to be uncommented or added in the php.ini file so as to enable mysqli extension? extension=mysql.dll extension=mysqli.dl extension=php_mysqli.dl extension=php_mysqli.dll TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following methods is used to execute the statement after the parameters have been bound? bound_param() bound_result() bind_result() bind_param() TRUE ANSWER : ? YOUR ANSWER : ?
Which version of MySQL introduced the prepared statements? MySQL 4.3 MySQL 4.1 MySQL 4.2 MySQL 4.0 TRUE ANSWER : ? YOUR ANSWER : ?
You need to check whether ______ is set, to determine whether you’re editing an entry or creating a new one. $_SET[‘url’]. $_GET[‘admin’]. $_SET[‘admin’]. $_GET[‘url’]. TRUE ANSWER : ? YOUR ANSWER : ?
The updated MySQL extension released with PHP 5 is typically referred to as. MySQL mysqli mysqly mysql TRUE ANSWER : ? YOUR ANSWER : ?