Example #1
0
        public static bool ExecuteNonQuery(string connectionString, List <ICommandCustom> CommandList)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

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

            return(fwCommandHelper.ExecuteNonQuery(Transaction, CommandList));
        }
Example #3
0
        public static string checkParam(string param)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

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

            return(fwCommandHelper.ExecuteDataTable(connectionString, Command));
        }
Example #5
0
        public static DataTable ExecuteDataTable(ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

            return(fwCommandHelper.ExecuteDataTable(Command));
        }
Example #6
0
        public static bool isCanConnection(string connectionString)
        {
            CommandCustomHelper _FWCommandHelper = new CommandCustomHelper(connectionString);

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

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

            return(fwCommandHelper.checkParam(param));
        }
Example #9
0
        public static int ExecuteNonQuery(ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

            return(fwCommandHelper.ExecuteNonQuery(Command));
        }
Example #10
0
        public static int ExecuteNonQuery(ITransactionCustom Transaction, ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(Transaction);

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

            return(fwCommandHelper.ExecuteNonQuery(connectionString, Command));
        }
Example #12
0
        public static int ExecuteScalar(ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

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

            return(fwCommandHelper.getValueType(dbType));
        }
Example #14
0
        public static string getDbTypeString(DatabaseTypeCustom DatabaseTypeCustom, IDbTypeCustom dbType)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(DatabaseTypeCustom);

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

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

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

            return(fwCommandHelper.joinToSqlString(tList));
        }
Example #18
0
        public static DatabaseTypeCustom getDatabaseType(string connectionString)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(connectionString);

            return(fwCommandHelper.DatabaseTypeCustom);
        }