コード例 #1
0
        private bool GenerarStringMySQL()
        {
            clsParametros objParametros = new clsParametros();

            if (!objParametros.GerenarStringMySQL())
            {
                strError      = objParametros.Error;
                objParametros = null;
                return(false);
            }
            strStingConexion = objParametros.StringConexion;
            objParametros    = null;
            return(true);
        }