本文整理匯總了Java中net.hydromatic.optiq.jdbc.OptiqConnection類的典型用法代碼示例。如果您正苦於以下問題:Java OptiqConnection類的具體用法?Java OptiqConnection怎麽用?Java OptiqConnection使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
OptiqConnection類屬於net.hydromatic.optiq.jdbc包,在下文中一共展示了OptiqConnection類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getConnection
import net.hydromatic.optiq.jdbc.OptiqConnection; //導入依賴的package包/類
public static Connection getConnection(ISnapshot snapshot)
throws SQLException {
try {
Class.forName("net.hydromatic.optiq.jdbc.Driver");
} catch (ClassNotFoundException e) {
throw new SQLException(
"Unable to load Optiq JDBC driver", e);
}
Properties info = new Properties();
info.put("lex", "JAVA");
info.put("quoting", "DOUBLE_QUOTE");
Connection connection = DriverManager.getConnection(
"jdbc:optiq:", info);
OptiqConnection con = connection
.unwrap(OptiqConnection.class);
if (snapshot == null)
return connection;
SchemaPlus root = con.getRootSchema();
HeapSchema prototype = SCHEMA_CACHE.get(snapshot);
HeapSchema heapSchema = new HeapSchema(root, "HEAP", snapshot,
prototype);
if (prototype == null)
SCHEMA_CACHE.put(snapshot, heapSchema);
root.add(heapSchema);
con.setSchema(heapSchema.getName());
return connection;
}
示例2: setConnectionProperties
import net.hydromatic.optiq.jdbc.OptiqConnection; //導入依賴的package包/類
private void setConnectionProperties() {
OptiqConnection conn = (OptiqConnection) optiqContext.getQueryProvider();
Properties connProps = conn.getProperties();
String propThreshold = connProps.getProperty(OLAPQuery.PROP_SCAN_THRESHOLD);
int threshold = Integer.valueOf(propThreshold);
olapContext.storageContext.setThreshold(threshold);
}
示例3: connect
import net.hydromatic.optiq.jdbc.OptiqConnection; //導入依賴的package包/類
@Override
public Connection connect(String url, Properties info) throws SQLException {
Connection connection = super.connect(url, info);
OptiqConnection optiqConnection = (OptiqConnection) connection;
final MutableSchema rootSchema = optiqConnection.getRootSchema();
try {
schema = new TableSchema<CosmosSql>(rootSchema, COSMOS, rootSchema.getSubSchemaExpression(COSMOS, TableSchema.class),
(CosmosSql) definer, CosmosTable.class, connector, auths, metadataTable);
schema.initialize();
rootSchema.addSchema(COSMOS, schema);
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e);
}
return optiqConnection;
}