Questions and Verified Answers |
Already Graded A+
PDO is short for:
a) PHP Database Oriented Programming
b) PHP Database Object
c) PHP Data Operations
d) PHP Data Object - 🧠ANSWER ✔✔d) PHP Data Object
The acronym PDO stands for:
, a) PHP Decadal Oscillation
b) PHP Data Objects
c) PHP Designation of Origin
d) PHP Development and Operation - 🧠ANSWER ✔✔b) PHP Data Objects
To get the number of row returned from a query operation use the
numRows() method - 🧠ANSWER ✔✔False
PDO Supports every major database system - 🧠ANSWER ✔✔True
$sql = "SELECT * FROM movies";
$result = $dbc->query($sql)
if ($result==false) {
}
In the above statement, if $result is FALSE, then there are no records in
the 'movies' table. - 🧠ANSWER ✔✔False
PDO Offers: