本文整理了Java中com.datastax.driver.core.querybuilder.Select.escapeId()
方法的一些代码示例,展示了Select.escapeId()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Select.escapeId()
方法的具体详情如下:
包路径:com.datastax.driver.core.querybuilder.Select
类名称:Select
方法名:escapeId
暂无
代码示例来源:origin: com.facebook.presto.cassandra/cassandra-driver
Select(TableMetadata table, List<Object> columnNames, boolean isDistinct, boolean isJson) {
this(escapeId(table.getKeyspace().getName()),
escapeId(table.getName()),
Arrays.asList(new Object[table.getPartitionKey().size()]),
table.getPartitionKey(),
columnNames,
isDistinct,
isJson);
}
代码示例来源:origin: io.prestosql.cassandra/cassandra-driver
Select(TableMetadata table, List<Object> columnNames, boolean isDistinct, boolean isJson) {
this(escapeId(table.getKeyspace().getName()),
escapeId(table.getName()),
Arrays.asList(new Object[table.getPartitionKey().size()]),
table.getPartitionKey(),
columnNames,
isDistinct,
isJson);
}
代码示例来源:origin: com.stratio.cassandra/cassandra-driver-core
Select(TableMetadata table, List<Object> columnNames, boolean isDistinct) {
super(table);
this.table = escapeId(table.getName());
this.isDistinct = isDistinct;
this.columnNames = columnNames;
this.where = new Where(this);
}
内容来源于网络,如有侵权,请联系作者删除!