How do I list all the queries in a MS Access file using OleDB in C#?

前端 未结 4 1207
余生分开走
余生分开走 2021-01-21 21:12

I have an Access 2003 file that contains 200 queries, and I want to print out their representation in SQL. I can use Design View to look at each query and cut and paste it to a

4条回答
  •  粉色の甜心
    2021-01-21 21:31

    In case you wanted to do a quick query by hand.

    SELECT MSysObjects.Name
    FROM MSysObjects
    WHERE type = 5
    

提交回复
热议问题