-
What is the variable that is a handle to a database object?
-
- $sth
- $h
- $dbh
- $fh
- None of these
Correct Option: C
The variable named ‘$dbh’ is a handle to an open file. ‘$h’ is a generic handle and the meaning depends on context. ‘$dbh’ is a handle to a database object. ‘$sth’ is a handle to a query object.