PHP Databases Handling Which of the following DBMSs do not have a native PHP extension? IBM DB/2 Microsoft SQL Server None of these MySQL PostgreSQL IBM DB/2 Microsoft SQL Server None of these MySQL PostgreSQL ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling The ............. statement is used to delete a table. DROP TABLE DELETE TABLE DEL TABLE REMOVE TABLE DROP TABLE DELETE TABLE DEL TABLE REMOVE TABLE ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling In PHP in order to access MySQL database you will use: mysql-connect() function sql_connect() function mysql_connect() function mysqlconnect() function mysql-connect() function sql_connect() function mysql_connect() function mysqlconnect() function ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following lines need to be uncommented or added in the php.ini file so as to enable mysqli extension? extension=mysqli.dl extension=php_mysqli.dl extension=php_mysqli.dll extension=mysql.dll extension=mysqli.dl extension=php_mysqli.dl extension=php_mysqli.dll extension=mysql.dll ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which method retrieves each row from the prepared statement result and assigns the fields to the bound results? fetch() row() fetch_row() get_row() fetch() row() fetch_row() get_row() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following statements is used to create a table? CREATE table_name (column_type column_name); CREATE table_name (column_name column_type); CREATE TABLE table_name (column_type column_name); CREATE TABLE table_name (column_name column_type); CREATE table_name (column_type column_name); CREATE table_name (column_name column_type); CREATE TABLE table_name (column_type column_name); CREATE TABLE table_name (column_name column_type); ANSWER DOWNLOAD EXAMIANS APP