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.

link|improve this question

1  
While the question isn't the same, someone posted an answer (the one with the comment block and all the SQL script) that retrieves all the table definitions, database info, etc. that may help. – Ken White Feb 24 at 13:52
There is no general way to do so, therefore you;ll have to declare an abstract base and populate actual schema data from DBMS-specific storage (eg: INFORMATION_SCHEMA on SQL-92 capable DBMS) – user539484 Feb 24 at 17:28
Using TADOConnection.OpenSchema you will be able to get most of your information. other schema related information could be found in the sys tables (depending on your sql-sever version). – kobik Feb 25 at 19:18
feedback

2 Answers

up vote 3 down vote accepted

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 :

SELECT * FROM databaseName.INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE 
Where TABLE_NAME='tableName' 
link|improve this answer
That only retrieves column names, not constraints, foreign keys, indexes, and other metadata. – Ken White Feb 24 at 13:46
feedback

Been a very long time since I touched Delphi, but I do remember a couple things I used to do. Like

select top 0 * from table

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.

link|improve this answer
Same as Antonio, hat only retrieves column names, not constraints, foreign keys, indexes, and other metadata. – Ken White Feb 24 at 13:47
feedback

Your Answer

 
or
required, but never shown

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