Home » MYSQL » Data Types » Question
  1. What is the generic handle whose meaning depends on context?
    1. $h
    2. $dbh
    3. $sth
    4. $fh
    5. None of these
Correct Option: A

The variable named ‘$fh’ 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.



Your comments will be displayed only after manual approval.