List of tables in a database

zzoemie

New member
Local time
Today, 19:00
Joined
Mar 5, 2008
Messages
7
Hi,

I wonder if there is a possibility to select a table from a database by using a sort of explorer window.
My problem is this:
I want to import a *.xls file in a table.
I want to be able to select a certain *.xls file from a list (so far no probs) en add it contents to a table selected in a browser window.
A table ofcourse who the exact field structure.

Anyone?
 
You could use the below SQL to populate a list box.

SELECT MSysObjects.Name
FROM MSysObjects
WHERE (((MSysObjects.Type)=1))
 
Is this also possible without showing the system files?

Thanks for the solution.
 
Exclude them in the SQL by adding further criteria.
 

Users who are viewing this thread

Back
Top Bottom