duanjun7801 2017-04-16 17:21
浏览 382
已采纳

如何使用Golang从文件直接执行MSSQL脚本

I have been looking around for the answer to the question above with no luck. Excuse me if it is a duplicate. So basically I am trying to execute a sql script directly from file but I keep on getting the " Incorrect syntax near ''. " error

func AnotherDatabase() (sql.Result, error) {
     rc, err := os.Open("./myscript.sql")
     if err != nil {
        return nil,err
     }
     buf := new(bytes.Buffer)
     buf.ReadFrom(rc)
     contents := buf.String()

     db, err := sql.Open("mssql", "mydatabase")
     if err != nil {
       return nil,err
     }
     defer db.Close()

     res, err := db.Exec(contents)
     if err != nil {
       return nil,err
     }
    return res,nil
}
  • 写回答

1条回答 默认 最新

  • dongyi5425 2017-04-17 16:11
    关注

    I have realized the illegal character causing issues was probably an extended ASCII character so I used the below method to strip off unnecessary characters from the file contents :

    func stripCtlAndExtFromBytes(str string) string {
      b := make([]byte, len(str))
      var bl int
      for i := 0; i < len(str); i++ {
        c := str[i]
        if c >= 32 && c < 127 {
          b[bl] = c
          bl++
         }
     }
     return string(b[:bl])
    }
    

    as stated here https://rosettacode.org/wiki/Strip_control_codes_and_extended_characters_from_a_string#Go

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 nginx中的CORS策略应该如何配置
  • ¥30 信号与系统实验:采样定理分析
  • ¥100 我想找人帮我写Python 的股票分析代码,有意请加mathtao
  • ¥20 Vite 打包的 Vue3 组件库,图标无法显示
  • ¥15 php 同步电商平台多个店铺增量订单和订单状态
  • ¥15 关于logstash转发日志时发生的部分内容丢失问题
  • ¥17 pro*C预编译“闪回查询”报错SCN不能识别
  • ¥15 微信会员卡接入微信支付商户号收款
  • ¥15 如何获取烟草零售终端数据
  • ¥15 数学建模招标中位数问题