PHP Databases Handling Which one of the following statements is used to create a table? CREATE table_name (column_name column_type); CREATE table_name (column_type column_name); CREATE TABLE table_name (column_name column_type); CREATE TABLE table_name (column_type column_name); CREATE table_name (column_name column_type); CREATE table_name (column_type column_name); CREATE TABLE table_name (column_name column_type); CREATE TABLE table_name (column_type column_name); ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling The updated MySQL extension released with PHP 5 is typically referred to as. mysqly MySQL mysqli mysql mysqly MySQL mysqli mysql 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? row() fetch_row() get_row() fetch() row() fetch_row() get_row() fetch() 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 method is used to retrieve the number of rows affected by an INSERT, UPDATE, or DELETE query? num_rows() changed_rows() affected_rows() new_rows() num_rows() changed_rows() affected_rows() new_rows() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which method rolls back the present transaction? commit() back() undo() rollback() commit() back() undo() rollback() ANSWER DOWNLOAD EXAMIANS APP