Пример #1
0
        public static bool ExecuteNonQuery(string connectionString, List <ICommandCustom> CommandList)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

            return(fwCommandHelper.ExecuteNonQuery(connectionString, CommandList));
        }
Пример #2
0
        public static bool ExecuteNonQuery(ITransactionCustom Transaction, List <ICommandCustom> CommandList)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

            return(fwCommandHelper.ExecuteNonQuery(Transaction, CommandList));
        }
Пример #3
0
        public static string checkParam(string param)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

            return(fwCommandHelper.checkParam(param));
        }
Пример #4
0
        public static DataTable ExecuteDataTable(string connectionString, ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(connectionString);

            return(fwCommandHelper.ExecuteDataTable(connectionString, Command));
        }
Пример #5
0
        public static DataTable ExecuteDataTable(ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

            return(fwCommandHelper.ExecuteDataTable(Command));
        }
Пример #6
0
        public static bool isCanConnection(string connectionString)
        {
            CommandCustomHelper _FWCommandHelper = new CommandCustomHelper(connectionString);

            return(_FWCommandHelper.isCanConnection(connectionString));
        }
Пример #7
0
        public static DataTable ExecuteDataTable(ITransactionCustom Transaction, ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(Transaction);

            return(fwCommandHelper.ExecuteDataTable(Transaction, Command));
        }
Пример #8
0
        public static string checkParam(DatabaseTypeCustom DatabaseTypeCustom, string param)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(DatabaseTypeCustom);

            return(fwCommandHelper.checkParam(param));
        }
Пример #9
0
        public static int ExecuteNonQuery(ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

            return(fwCommandHelper.ExecuteNonQuery(Command));
        }
Пример #10
0
        public static int ExecuteNonQuery(ITransactionCustom Transaction, ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(Transaction);

            return(fwCommandHelper.ExecuteNonQuery(Transaction, Command));
        }
Пример #11
0
        public static int ExecuteNonQuery(string connectionString, ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(connectionString);

            return(fwCommandHelper.ExecuteNonQuery(connectionString, Command));
        }
Пример #12
0
        public static int ExecuteScalar(ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

            return(fwCommandHelper.ExecuteScalar(Command));
        }
Пример #13
0
        public static Type getValueType(DatabaseTypeCustom DatabaseTypeCustom, IDbTypeCustom dbType)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(DatabaseTypeCustom);

            return(fwCommandHelper.getValueType(dbType));
        }
Пример #14
0
        public static string getDbTypeString(DatabaseTypeCustom DatabaseTypeCustom, IDbTypeCustom dbType)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(DatabaseTypeCustom);

            return(fwCommandHelper.getDbTypeString(dbType));
        }
Пример #15
0
        public static bool ExecuteNonQuery(List <ICommandCustom> CommandList)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

            return(fwCommandHelper.ExecuteNonQuery(CommandList));
        }
Пример #16
0
        public static DataSet ExecuteDataSet(IConnectionCustom Connection, ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(Connection);

            return(fwCommandHelper.ExecuteDataSet(Connection, Command));
        }
Пример #17
0
        public static string joinToSqlString <T>(List <T> tList)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

            return(fwCommandHelper.joinToSqlString(tList));
        }
Пример #18
0
        public static DatabaseTypeCustom getDatabaseType(string connectionString)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(connectionString);

            return(fwCommandHelper.DatabaseTypeCustom);
        }