Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 cassandra 数据库上执行 crud 数据库操作,但最终我遇到了一个问题,即 cassandra jdbc 驱动程序需要在数据库中使用 create columnfamily cql 命令创建预定义的列族定义。
如果我尝试插入一个新的 column-value ,那么插入语句也会失败,而不是在前面的 create columnfamily 语句中指定的。
我想知道这是正常行为还是出了什么问题。
任何帮助将不胜感激。
当您使用 cql 时,您必须先创建列定义。在后半部分这似乎有问题,因为无论是否定义,都可以随时插入任何键值。你能在这里显示代码以便我可以追踪问题吗