Cassandra:无论数据类型如何,如何获取列数据的字符串值

Posted

技术标签:

【中文标题】Cassandra:无论数据类型如何,如何获取列数据的字符串值【英文标题】:Cassandra : How to get the String value of column data irrespective of datatype 【发布时间】:2016-02-27 06:44:09 【问题描述】:

我正在尝试从 com.datastax.driver.core.ResultSet 获取结果并打印出来:

ResultSet results = getSession().execute("Select * from test.table"); //getsession returns a session
int numcols = results.getColumnDefinitions().size();
for ( Row row : results ) 
    for (int colIndex = 0; colIndex < numcols; colIndex++) 
           System.out.println("data: " + row.getString(colIndex));
     

row.getString(colIndex) 在 String 以外的数据类型的情况下抛出异常。无论它是什么数据类型,我将如何获取字符串数据?

【问题讨论】:

是否有可以返回列类型的元数据检索调用?如果不是,你可能不走运,但如果有,你可以编写代码来处理所有的可能性。 【参考方案1】:

此代码将打印每列的类型和值

ResultSet results = getSession().execute("Select * from test.table");    
int numcols = results.getColumnDefinitions().size();
for ( Row row : results ) 
   for (int colIndex = 0; colIndex < numcols; colIndex++) 
         System.out.println("Type : "+row.getColumnDefinitions().getType(colIndex));
         Class c = row.getColumnDefinitions().getType(colIndex).asJavaClass();
         if(c == Integer.class) 
              System.out.println("Data :" + row.getInt(colIndex));
         
         //similar for other type
   

【讨论】:

以上是关于Cassandra:无论数据类型如何,如何获取列数据的字符串值的主要内容,如果未能解决你的问题,请参考以下文章

cassandra 2.0.11 - 分区键的列数

如何从Cassandra DB获取/导出所有数据

如何从java获取聚合Cassandra行数据

如何从 cassandra 或 hbase 中提取 leveldb 类型的数据存储(sstable + memtable)?

如何使用Cassandra来存储time-series类型的数据

如何检查 Cassandra 表的文本字段的长度