phptek / silverstripe-jsontext

JSON storage and querying
Other
22 stars 12 forks source link

DB-specific JSONBackend subclasses #2

Closed phptek closed 8 years ago

phptek commented 8 years ago

To ensure good separation of concerns, JSONBackend should be made abstract and each supported RDBMS should have its own subclass e.g. PostgresJSONBackend and MariaDBJSONBackend.

These subclasses will then eventually support a range of the more useful JSON functions of each RDBMS. For example with Postgres, the functions found here under "Processing Functions" https://www.postgresql.org/docs/9.5/static/functions-json.html

phptek commented 8 years ago

Implemented in c01072340...closing.