Click here to Skip to main content
16,019,018 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have been creating an application recently and I need some help on database table schemas. I have programmed the application in vb.net 3.5 using a mysql database.

What the application does is not really important… except that I am trying to get the schema for a table in the database. To date the way I have been getting the schema for a table in the database is as follows

Dim conn As New MySqlConnection(ConnString) ‘ConnString is defined elsewhere
conn.Open()
Dim cmd As MySqlCommand = conn.CreateCommand
cmd.CommandText = "SELECT * FROM widgets WHERE widgetID=1"

‘Create a datareader and execute it
Dim dr As MySqlDataReader
dr = cmd.ExecuteReader()

‘Create a datatable to put the schema into
Dim dtSchema As New DataTable
dtSchema = dr.GetSchemaTable

I am seeking a way of getting the schema for the table above without having to execute the select command. This will help me in my quest to make my app work with more than one DB provider. I don’t want my app to have any SQL commands if at all possible. (my intention is to only use stored procedures in the database)

Any help is appreciated
Posted

1 solution

This[^] article will help you get started.
 
Share this answer
 
Comments
ProEnggSoft 29-Feb-12 20:39pm    
Useful link. My 5.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900