PHP Databases Handling Which one of the following statements is used to create a table? CREATE TABLE table_name (column_type column_name); CREATE table_name (column_type column_name); CREATE TABLE table_name (column_name column_type); CREATE table_name (column_name column_type); CREATE TABLE table_name (column_type column_name); CREATE table_name (column_type column_name); CREATE TABLE table_name (column_name column_type); CREATE table_name (column_name column_type); ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Use the .............. to delete the data inside the table, and not the table itself? REMOVE TABLE DELETE TABLE TRUNCATE TABLE DROP TABLE REMOVE TABLE DELETE TABLE TRUNCATE TABLE DROP TABLE ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods recuperates any memory consumed by a result set? destroy() remover() free() alloc() destroy() remover() free() alloc() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following databases has PHP supported almost since the beginning? Oracle Database SQL+ MySQL SQL Oracle Database SQL+ MySQL SQL ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling 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’); mysqli->select_db(‘databasename’); $mysqli->select_db(‘databasename’); mysqli=select_db(‘databasename’); $mysqli=select_db(‘databasename’); ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods can be used to diagnose and display information about a MySQL connection error? connect_error() mysqli_connect_error() connect_errno() mysqli_connect_errno() connect_error() mysqli_connect_error() connect_errno() mysqli_connect_errno() ANSWER DOWNLOAD EXAMIANS APP