PHP Databases Handling Which of the following DBMSs do not have a native PHP extension? PostgreSQL Microsoft SQL Server IBM DB/2 MySQL None of these PostgreSQL Microsoft SQL Server IBM DB/2 MySQL None of these ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling The (|/) tells the server to match ___________ forward slash backward slash nothing either nothing or a forward slash forward slash backward slash nothing either nothing or a forward slash ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling In PHP in order to access MySQL database you will use: mysql_connect() function mysqlconnect() function sql_connect() function mysql-connect() function mysql_connect() function mysqlconnect() function sql_connect() function mysql-connect() function ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling SQL is not case sensitive. SELECT is the same as select. True False True False 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? affected_rows() new_rows() num_rows() changed_rows() affected_rows() new_rows() num_rows() changed_rows() 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, as will be all the contents of MYTABLE whose ID is 1 The contents of OTHERTABLE will be deleted The database will remain unchanged The contents of both OTHERTABLE and MYTABLE will be deleted The contents of OTHERTABLE will be deleted, as will be all the contents of MYTABLE whose ID is 1 The contents of OTHERTABLE will be deleted ANSWER DOWNLOAD EXAMIANS APP