我是cassandra的新手,我目前在虚拟应用程序中使用CassandraCSharpDriver。我想获取用户在给定密钥空间中描述的所有表的列表。
Cluster cluster = Cluster.Builder().AddContactPoints("IPAddress").Build();
Session session = cluster.Connect("MyKeySpace");
在这段代码中,我想获取MyKeySpace所有表的列表
答案 0 :(得分:5)
你可以运行:
select * from system.schema_columnfamilies where keyspace_name='MyKeySpace';
它违反"系统"密钥空间。
答案 1 :(得分:5)
我将介绍如何使用DataStax Cassandra C#驱动程序准备该表列表:
连接到您的群集:
Cluster cluster = Cluster.Builder().AddContactPoints("IPAddress").Build();
Session session = cluster.Connect();
我将创建一个List<String>
并使用预准备语句(因为这只是一个好主意)来绑定键空间的名称。我的CQL语句只选择columnfamily_name
,这应该是你需要的。
List<String> tableList = new List<String>();
String strCQL = "SELECT columnfamily_name "
+ "FROM system.schema_columnfamilies WHERE keyspace_name=? ";
PreparedStatement pStatement = _session.Prepare(strCQL);
BoundStatement boundStatement = new BoundStatement(pStatement);
boundStatement.Bind("MyKeySpace");
现在我执行语句,遍历结果,并将每个表名添加到上面创建的List中。
RowSet results = session.Execute(boundStatement);
foreach (Row result in results.GetRows())
{
tableName = result.GetValue<String>("columnfamily_name");
tableList.Add(tableName);
}
现在您应该有一个可以添加到UI的表列表。
答案 2 :(得分:1)
获取列名称:
SELECT column_name FROM system.schema_columns WHERE keyspace_name = 'KeySpaceName' AND columnfamily_name = 'TableName';
获取列系列名称,即表名:
select columnfamily_name from system.schema_columnfamilies where keyspace_name='KeySpaceName';
答案 3 :(得分:0)
还可以选择使用群集元数据来获取密钥空间的字符串列表,如此
var cluster = Cluster.Builder().AddContactPoints("IPAddress").Build();
var keyspaces = cluster.Metadata.GetKeyspaces();
foreach (var keyspaceName in keyspaces)
{
Console.WriteLine(keyspaceName);
}