Пример #1
0
        DSNObject structDSN; /* the DSN struct */

        #endregion Fields

        #region Constructors

        /*
         * Constructor:
         */
        public DSNGenerator()
        {
            structDSN = new DSNObject();
        }
Пример #2
0
        DSNObject structDSN; /* the object that holds the data to print */

        #endregion Fields

        #region Constructors

        /*
         * Constructor: Initialize class variables,
         *  this must pull from an already created DSNObject
         *      DSNObject
         *          newDSN: the DSN to output to a file.
         */
        public ODBCDataSourceFile(DSNObject newDSN)
        {
            structDSN = newDSN;
        }
Пример #3
0
        DSNObject structDSN; /* the object that holds the data to print */

        #endregion Fields

        #region Constructors

        /*
         * Constructor: Initialize class variables,
         *  this must pull from an already created DSNObject
         *      DSNObject
         *          newDSN: the DSN to output to a file.
         */
        public ODBCFileGen(DSNObject newDSN)
        {
            structDSN = newDSN;
        }