Example #1
0
 public svnImplement(string SQLServer, string DatabaseName, string UserLogin, string Password, string SVNDirectory,
                     bool StoredProcedures, bool Tables, bool FullTextIndices, bool Functions, bool Views, bool UDDT)
 {
     SVNGeneratorForSQL2005.SVNGenerator svg = new SVNGeneratorForSQL2005.SVNGenerator(SQLServer, DatabaseName, UserLogin, Password, SVNDirectory,
                                                                                       StoredProcedures, Tables, FullTextIndices, Functions, Views, UDDT, false);
     svg.OnMessageHandler(Notification);
     svg.Process();
     Notification("Done");
 }
 public svnImplement(string SQLServer, string DatabaseName, string UserLogin, string Password, string SVNDirectory,
     bool StoredProcedures, bool Tables, bool FullTextIndices, bool Functions, bool Views, bool UDDT)
 {
     SVNGeneratorForSQL2005.SVNGenerator svg = new SVNGeneratorForSQL2005.SVNGenerator(SQLServer, DatabaseName, UserLogin, Password, SVNDirectory,
        StoredProcedures, Tables, FullTextIndices, Functions, Views, UDDT, false );
        svg.OnMessageHandler(Notification);
        svg.Process();
        Notification("Done");
 }