usually this level of database abstraction is based on a prepared statement to handle the place owner function. The given function of the RDBM operator compiles the query, I do not think that it is possible to prepare the query if the table is not specified.
You must use the descent function of your library and include the table name in the query.
example:
$tablename = escapement_function($strTable);
Database->prepare("SELECT bomb FROM {$tablename} WHERE id=?")
->execute($strID);
source
share