Beispiel #1
0
 public cDBMetadata(
     #region             // ToDos: here!
     // parameterless constructor, should have:
     // - Namespace
     // - any db related arguments
     // alternatively (using xml configuration), should have.
     // - xml path
     #endregion
     ) : base(
         null
         )
 {
     //#region ClaSSe...
     applicationname_ = string.Empty;
     namespace_       = string.Empty;
     //default_dbservertype_ = DBServerTypes.invalid;
     //default_configmode_ = string.Empty;
     subappname_           = string.Empty;
     pseudoreflectionable_ = false;
     sqlscriptoption_      = eSQLScriptOptions.RunImmediately;
     //---
     dbs_    = new cDBMetadata_DBs(this, this);
     tables_ = new cDBMetadata_Tables(this, this);
     //#endregion
 }
Beispiel #2
0
		public cDBMetadata(
			#region // ToDos: here!
			// parameterless constructor, should have:
			// - Namespace
			// - any db related arguments
			// alternatively (using xml configuration), should have.
			// - xml path
			#endregion
		) : base (
			null
		) {
			//#region ClaSSe...
			applicationname_ = string.Empty;
			namespace_ = string.Empty;
			//default_dbservertype_ = DBServerTypes.invalid;
			//default_configmode_ = string.Empty;
			subappname_ = string.Empty;
			pseudoreflectionable_ = false;
			sqlscriptoption_ = eSQLScriptOptions.RunImmediately;
			//---
			dbs_ = new cDBMetadata_DBs(this, this);
			tables_ = new cDBMetadata_Tables(this, this);
			//#endregion
		}