duanchigeng4313 2017-02-15 16:47
浏览 417
已采纳

奇怪的行为GoLang将字符串存储到变量中的长度限制为64个字节

I have been trying to store a large string into a string variable in GoLang , but for some unknown reason GoLang is limiting the string to 64 Bytes in length

The main purpose of this string concatenation is to generate a couchbase's N1QL query at runtime based on user input

userInput := []string{"apple", "boy", "cat", "dog"} 
var buffer string 
buffer = "SELECT * FROM DB WHERE DB.ITEM_NAME="+userInput[0]+
         "OR DB.ITEM_NAME="+userInput[1]

In such a case if I debug on variable buffer, for example I can see it contains only until "SELECT * FROM DB WHERE DB.ITEM_NAME="+userInput[0]+OR" depending upon user input size it varies and it caps the string to 64th character

  • 写回答

1条回答 默认 最新

  • duancongduo4109 2017-02-15 20:55
    关注

    The behaviour is as expected. The behaviour is not strange.

    Your code creates obviously wrong Couchbase N1QL:

    package main
    
    import (
        "fmt"
    )
    
    func main() {
        userInput := []string{"apple", "boy", "cat", "dog"}
        var buffer string
        buffer = "SELECT * FROM DB WHERE DB.ITEM_NAME=" + userInput[0] +
            "OR DB.ITEM_NAME=" + userInput[1]
        fmt.Println(buffer)
    }
    

    Output:

    SELECT * FROM DB WHERE DB.ITEM_NAME=appleOR DB.ITEM_NAME=boy
    

    Here is a plausible solution:

    package main
    
    import (
        "fmt"
    )
    
    func main() {
        userInput := []string{"apple", "boy", "cat", "dog"}
        query := fmt.Sprintf(
            `SELECT * FROM DB WHERE DB.ITEM_NAME=%q OR DB.ITEM_NAME=%q;`,
            userInput[0], userInput[1],
        )
        fmt.Println(query)
    }
    

    Output:

    SELECT * FROM DB WHERE DB.ITEM_NAME="apple" OR DB.ITEM_NAME="boy";
    

    Note: Beware of SQL injection.

    References:

    The Go Programming Language Specification

    Couchbase: Query Language Tutorial

    Couchbase: Querying with N1QL

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

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵