PHP Databases Handling Which one of the following methods recuperates any memory consumed by a result set? free() remover() alloc() destroy() free() remover() alloc() destroy() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling SQL is not case sensitive. SELECT is the same as select. False True False True ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling The (|/) tells the server to match ___________ backward slash forward slash either nothing or a forward slash nothing backward slash forward slash either nothing or a forward slash nothing 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 contents of OTHERTABLE will be deleted The database will remain unchanged The contents of OTHERTABLE will be deleted, as will be all the contents of MYTABLE whose ID is 1 The contents of both OTHERTABLE and MYTABLE will be deleted The contents of OTHERTABLE will be deleted The database will remain unchanged The contents of OTHERTABLE will be deleted, as will be all the contents of MYTABLE whose ID is 1 The contents of both OTHERTABLE and MYTABLE will be deleted ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which of the methods are used to manage result sets using both associative and indexed arrays? get_array() and get_row() get_array() and get_column() fetch_array() and fetch_row() fetch_array() and fetch_column() get_array() and get_row() get_array() and get_column() fetch_array() and fetch_row() fetch_array() and fetch_column() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Transactions are used to treat sets of SQL statements atomically. False True False True ANSWER DOWNLOAD EXAMIANS APP