You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mysqljs (others might too) requires query values to be escaped [via a question mark](https://github.com/mysqljs/mysql#performing-queries).
`usePlaceholderId` option is added In order to facilitate this behaviour
```javascript
let jsonSql = require('json-sql')({
dialect: 'mysql',
namedValues: false,
valuesPrefix: '?',
usePlaceholderId: false
});
```
0 commit comments