Browse Source

Adding mysql support.

pull/3224/head
mike12345567 5 years ago
parent
commit
5d0ce3bf89
  1. 7
      packages/server/src/integrations/mysql.ts

7
packages/server/src/integrations/mysql.ts

@ -262,6 +262,13 @@ module MySQLModule {
const operation = this._operation(json)
this.client.connect()
const input = this._query(json, { disableReturning: true })
if (Array.isArray(input)) {
const responses = []
for (let query of input) {
responses.push(await internalQuery(this.client, query))
}
return responses
}
let row
// need to manage returning, a feature mySQL can't do
if (operation === operation.DELETE) {

Loading…
Cancel
Save