golang gocql.NewCluster undefined没有字段或方法

时间:2016-01-14 00:49:32

标签: go cassandra gocql

我正在尝试查询测试密钥空间,如:

package main

import "fmt"
import  _ "github.com/gocql/gocql"

var (
    gocql string
)

func main() {
    // connect to the cluster
    cluster := gocql.NewCluster("127.0.0.1")
    cluster.Keyspace = "dbaccess"
    session, _ := cluster.CreateSession()
    defer session.Close()

    if err := session.Query("SELECT name, age FROM people WHERE name='doug'").Scan(&name, &age); err != nil {
        log.Fatal(err)
    }
    fmt.Println(name, age)
}

但我收到的错误如下:

12: gocql.NewCluster undefined (type string has no field or method NewCluster)

这是否意味着它试图指向gocql / gocql文件夹中的方法但找不到它,或者导入内容的语法是错误的?

1 个答案:

答案 0 :(得分:2)

我认为您的问题是您在此处将gocql var声明为字符串:

var (
    gocql string
)

您应该删除它,它应该解决该特定问题。

另外您的导入声明:

import  _ "github.com/gocql/gocql"

不应包含下划线(_),因为您明确使用gocql而不仅仅是导入其副作用。