Package | Description |
---|---|
com.yakindu.bridges.ea.core.jdbc |
This package contains the extension point interface for database drivers used by the
EAResource implementation to read and write data from and to EA model
databases. |
Modifier and Type | Method and Description |
---|---|
IDatabaseAccess.Where |
IDatabaseAccess.Where.withNewWhere(java.lang.String where)
Convenience function to duplicate a where condition with equal conditions and delimiter but different where
clause; if conditions have already been joined, the result is re-used.
|
Modifier and Type | Method and Description |
---|---|
void |
IDatabaseAccess.delete(java.lang.String table,
IDatabaseAccess.Where where)
The same as
IDatabaseAccess.delete(String, String) but with possibly very large where condition. |
java.util.List<java.util.Map<java.lang.String,java.lang.Object>> |
IDatabaseAccess.select(java.lang.String table,
IDatabaseAccess.Where where,
java.lang.String... columns)
The same as
IDatabaseAccess.select(String, String, String...) , but with flexible where condition that may have a large
number of expressions. |
<T> java.util.List<T> |
IDatabaseAccess.selectList(java.lang.String table,
IDatabaseAccess.Where where,
java.lang.String column)
Returns a list of values for the given column for all rows that match the where condition.
|
Copyright (c) 2015 itemis AG, and others. All rights reserved.