It seems somewhat messy to bind a result
$obj_statement->bind_result(....)
listing every value that might be in a table using a query like
$str_query = "SELECT * FROM tableName WHERE id=?";
so is there a more elagent method to implementing bind_result() in the object ortiented style - possibly using an array somehow?