I have a unbound form with unlinked tables ADO.
My question is about sql and combo boxes.
Which is better
Using a table as the source of the table
rs.Open ("SELECT * FROM tCustomers)
Or using a stored query off of the same table
rs.Open ("SELECT * FROM qCustomers)
I would assume that using the table as the query source would be faster. Although after reading a whole lot in this forum I gather that queries are faster and save the database some size.
How would i do the equivilent of
Dim db AS DAO.Database
Dim rs AS DAO.Recordset
Set db = CurrentDB
Set rs = db.OpenRecordset("qCustomer")
in ADO with unlinked tables
Thanks
My question is about sql and combo boxes.
Which is better
Using a table as the source of the table
rs.Open ("SELECT * FROM tCustomers)
Or using a stored query off of the same table
rs.Open ("SELECT * FROM qCustomers)
I would assume that using the table as the query source would be faster. Although after reading a whole lot in this forum I gather that queries are faster and save the database some size.
How would i do the equivilent of
Dim db AS DAO.Database
Dim rs AS DAO.Recordset
Set db = CurrentDB
Set rs = db.OpenRecordset("qCustomer")
in ADO with unlinked tables
Thanks