In order to achieve multiple database driven adaptation, we need to implement the following - [x] **src/drivers/base.ts** Unified interface definition - [x] **src/drivers/mysql.ts** MySQL adapter based on base.ts - [ ] **src/drivers/postgres.ts** Postgres adapter based on base.ts - [ ] **src/dso.ts** Do not import any driver, dynamically import the driver through the parameter of connect - [ ] **mysql.ts** At the same level as mod.ts, the export directly imports dso of MySQL driver - [ ] **postgres.ts** At the same level as mod.ts, the export directly imports dso of Postgress driver
In order to achieve multiple database driven adaptation, we need to implement the following