M
Mike Labosh
What is the best way to run
If you are creating a view in SQL Server from an ADP Project, you put the
create view statement in a string and then DoCmd.RunSQL the string (I think)
If you are trying to programmatically create an Access query, you need to
create a DAO.QueryDef object, set its SQL property, and then append it to
the QueryDefs Collection of your DAO.Database.
a select statment to produce a view.
Example link if possible
If you are creating a view in SQL Server from an ADP Project, you put the
create view statement in a string and then DoCmd.RunSQL the string (I think)
If you are trying to programmatically create an Access query, you need to
create a DAO.QueryDef object, set its SQL property, and then append it to
the QueryDefs Collection of your DAO.Database.