getting table names from MS Access (.mdb file) in MFC
-
hi all, i need to get the table names from .mdb file in MFC.Can any on e help in this regard. Thanks in advance.
-
hi all, i need to get the table names from .mdb file in MFC.Can any on e help in this regard. Thanks in advance.
Hi, Did you search CodeProject or Google?
It is a crappy thing, but it's life -^ Carlo Pallini
-
Hi, Did you search CodeProject or Google?
It is a crappy thing, but it's life -^ Carlo Pallini
try following, I didn't tried it my self just found on googling
SELECT [Name] from msysobjects where ([type] =1 and Flags = 0) or [type] = 6
Share your experience with others Check my Blog...
-
Hi, Did you search CodeProject or Google?
It is a crappy thing, but it's life -^ Carlo Pallini
I searched from both.but i didn't get the suitable one.So that only i posted this question.
-
I searched from both.but i didn't get the suitable one.So that only i posted this question.
suthakar56 wrote:
I searched from both.but i didn't get the suitable one.So that only i posted this question.
Strange! CP search engine returned the following article as the first result while I searched for "MFC access": Easy way to mix the MFC Document/View and MS Access database applications.[^] I sure did get more relevant results when I modified the search terms. Take a look at the CDatabase[^] class as well for your need.
It is a crappy thing, but it's life -^ Carlo Pallini