Exemplo n.º 1
0
        public static bool ExecuteNonQuery(string connectionString, List <ICommandCustom> CommandList)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            return(fwCommandHelper.DatabaseTypeCustom);
        }