Changeset 36

User picture

Author: ricardoborges

(2010/02/09 03:51) About 2 years ago

update on SchemaExport parameters 

Affected files

Updated branches/core_refactoring/src/Core/Model/ProjectsRepository.cs Download diff

3536
219
                using (SQLiteConnection con = new SQLiteConnection("Data Source=" + path + ";Version=3;New=True"))
219
                using (SQLiteConnection con = new SQLiteConnection("Data Source=" + path + ";Version=3;New=True"))
220
                {
220
                {
221
                    con.Open();
221
                    con.Open();
222
                    new SchemaExport(cfg).Execute(true, true, true, con, Console.Out);
222
                    new SchemaExport(cfg).Execute(true, true, false, con, Console.Out);
223
                }
223
                }
224
            }
224
            }
225
225