コード例 #1
0
        public DataSet QueryDatabase(IDbCommand command)
        {
            switch (command.GetType().Name)
            {
            case "SqlCommand":
                using (var mss = new MsSqlServer()) { return(mss.QueryDatabase(command)); }

            case "MySqlCommand":
                using (var mys = new MySqlServer()) { return(mys.QueryDatabase(command)); }

            case "OracleCommand":
                using (var os = new OracleServer()) { return(os.QueryDatabase(command)); }

            case "NpgsqlCommand":
                using (var ps = new PostgresServer()) { return(ps.QueryDatabase(command)); }
            }
            return(null);
        }
コード例 #2
0
        public void UpdateRecords(IDbCommand command)
        {
            switch (command.GetType().Name)
            {
            case "SqlCommand":
                using (var mss = new MsSqlServer()) { mss.UpdateRecords(command); }
                break;

            case "MySqlCommand":
                using (var mys = new MySqlServer()) { mys.UpdateRecords(command); }
                break;

            case "OracleCommand":
                using (var os = new OracleServer()) { os.UpdateRecords(command); }
                break;

            case "NpgsqlCommand":
                using (var ps = new PostgresServer()) { ps.UpdateRecords(command); }
                break;

            default:
                throw new ArgumentOutOfRangeException(command.ToString());
            }
        }