I'm looking how to extract information from the SQL query and bind that information to what I will be populating in my objects.
For example, the queries:
SELECT drivers.id, name, cars.id, make, model, driver_id FROM drivers, cars WHERE driver_id = drivers.id;
and
SELECT * FROM drivers JOIN...