美文网首页
`squel` 包在使用中的一些坑

`squel` 包在使用中的一些坑

作者: 耀得嘛 | 来源:发表于2019-06-06 14:11 被阅读0次

    如果要再使用 squel 包,最好加上这些参数,以避免坑

    const sql = squel
      .insert({
        autoQuoteTableNames: true,
        autoQuoteFieldNames: true,
        replaceSingleQuotes: true
      })
      .into(table)
      .setFieldsRows(rows);
    

    相关文章

      网友评论

          本文标题:`squel` 包在使用中的一些坑

          本文链接:https://www.haomeiwen.com/subject/yizyxctx.html