Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can I retrieve full database structure using its connection string as collection of tables, its columns, relationships, etc?
Can I modify database using these objects?
Edit: Database - MS SQL Server. I need to be able to retrieve and edit database tables, column names, types, etc in code.

share|improve this question
You need to give us a bit more detail. What kind of database are you using. How far have you got on your own etc. – David Steele Jul 2 '11 at 15:08
1  
possible duplicate of stackoverflow.com/questions/887370/… – Eranga Jul 2 '11 at 15:14

1 Answer

up vote 1 down vote accepted

You can try DbConnection.GetSchema() , see here for a little tutorial.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.