Hi Leonardo, Another idea might be linking Cache tables to MS Access throguh ODBC and reading table and field definitions with ADOX.
Regards, Teoman "Leonardo J. Tramontina" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Does anyone know if it's possible and how to do to generate a SQL script to > create the tables of my application? > Let me be more clear: I have my classes and would like to generate a script > to create tables based on my classes definitions in order to make tests in > others relational data bases. For example, for my class Person, I have Name > (%String, MAXLEN = 50, required) and DOB (%Date, format 4, required) > properties. I�d like it generates the following script: > > CREATE TABLE User.Person (Name char(50) not null, > DOB date not null) > > > Thanks, > Leonardo > >
