Hello all,

Is there a way that I can vew the tables once I have connected to an open connection?
Code:
' create a connection object 
        Dim conn As New AdsConnection(MyConnectionString)

            'make the connection to the server 
            conn.Open() 'Once connected I want to see the tables available
Once I know what tables are here I'll know what to select in my subsequent command object.

Thanks,

Strick