Пример #1
0
 public NewProjectSet(Maticsoft.CodeBuild.CodeBuilders codebuild, Hashtable Tablist, string outpath, string proname)
 {
     InitializeComponent();
     cb         = codebuild;
     TabSelList = Tablist;
     _outpath   = outpath;
     _proname   = proname;
 }
Пример #2
0
        public DataExport(string longservername, string dbname)
        {
            InitializeComponent();
            DbName             = dbname;
            dbset              = Maticsoft.CmConfig.DbConfig.GetSetting(longservername);
            dbobj              = Maticsoft.DBFactory.DBOMaker.CreateDbObj(dbset.DbType);
            dbobj.DbConnectStr = dbset.ConnectStr;
            cb  = new Maticsoft.CodeBuild.CodeBuilders(dbobj);
            dsb = Maticsoft.DBFactory.DBOMaker.CreateScript(dbset.DbType);// ObjHelper.CreatDsb(longservername);

            this.lblServer.Text = dbset.Server;
        }
Пример #3
0
 Hashtable TabSelList;                //选择的所有表
 public NewProjectSet(Maticsoft.CodeBuild.CodeBuilders codebuild, Hashtable Tablist)
 {
     InitializeComponent();
     cb         = codebuild;
     TabSelList = Tablist;
 }