We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SqlDataSource
1 parent 5d1b7a2 commit caf4a2dCopy full SHA for caf4a2d
src/main/java/edu/ie3/datamodel/io/source/sql/SqlDataSource.java
@@ -163,16 +163,6 @@ protected interface AddParams {
163
void addParams(PreparedStatement ps) throws SQLException;
164
}
165
166
- /**
167
- * Creates a stream with maps representing a data point in the SQL data source using an entity
168
- * class.
169
- */
170
- protected Stream<Map<String, String>> buildStreamByEntityClass(
171
- Class<? extends Entity> entityClass, AddParams addParams) {
172
- String query = createBaseQueryString(schemaName, entityClass.getSimpleName());
173
- return executeQuery(query, addParams);
174
- }
175
-
176
/**
177
* Creates a stream with maps representing a data point in the SQL data source using an explicit
178
* table name.
0 commit comments