Using Delphi I need to create a class which will contain specific table structure (without data), including all fields, constraints, foreign keys, indexes. The goal is having "standard" table, compare them and find differences. This thing ought to be included into my big project so I can't use any "outer" comparators. Furthermore, this functionality might be extended, so I need to have my own realization. The question is how can I retrieve this information, having connection string and knowing specific table name. SQL Server 2008 is being used.
feedback
|
|
If you look at Delphi source, it's done this way : Select * from Table where 1=2 Update: Metadata can be retrieved with Information Schema Views , for example constraints :
| ||||
feedback
|
|
Been a very long time since I touched Delphi, but I do remember a couple things I used to do. Like
returns 0 records but the TQuery is 'populated' with the meta data. Or I think on a TClientDataSet you can set the rows to -1, which has the same effect. As I said, it's been a long time since I tinkered in Delphi and I was using the BDE and not native clients so this could all be useless info. Hope this helps a bit though. | |||
feedback
|