Q
Which PHP function is used to execute an SQL query in PDO extension?

Answer & Solution

Answer: Option A
Solution:
The pdo_query() function in PHP PDO extension is used to execute an SQL query. It sends an SQL query to the database and returns a PDOStatement object representing the result set (if applicable).
Related Questions on Average

What is the purpose of the PDO::commit() method in PHP PDO extension?

A). Fetching data from the database

B). Inserting records into the database

C). Closing the database connection

D). Committing a transaction

What is the primary advantage of using prepared statements in PHP for database operations?

A). Better performance

B). Improved security against SQL injection

C). Easier syntax

D). Compatibility with older PHP versions

What is the primary purpose of the mysqli_query() function in PHP?

A). Establishing a database connection

B). Inserting records into the database

C). Updating records in the database

D). Executing SQL queries

Which operation is used to delete specific records from a database table using SQL?

A). DELETE

B). REMOVE

C). ERASE

D). CLEAR

What is the primary purpose of the PDO::beginTransaction() method in PHP PDO extension?

A). Fetching data from the database

B). Inserting records into the database

C). Initiating a transaction

D). Closing the database connection

Which SQL operation is used to update the structure of an existing database table?

A). ALTER

B). UPDATE

C). MODIFY

D). CHANGE

Which PHP function is used to execute an SQL query in MySQLi extension?

A). mysqli_execute()

B). mysqli_query()

C). mysqli_fetch()

D). mysqli_prepare()

What is the purpose of the PDO::lastInsertId() method in PHP PDO extension?

A). Closing the database connection

B). Fetching data from the database

C). Inserting records into the database

D). Retrieving the ID generated by the last INSERT statement

Which SQL operation is used to remove all records from a database table?

A). TRUNCATE

B). CLEAR

C). DELETE

D). REMOVE

Which operation is used to insert new records into a database table using SQL?

A). CREATE

B). INSERT

C). UPDATE

D). DELETE