All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sfm.querydsl.README.md Maven / Gradle / Ivy

There is a newer version: 8.2.3
Show newest version
QueryDSL Jdbc
------

```java
SQLQuery sqlQuery = new SQLQueryImpl(conn, new HSQLDBTemplates());
try {
	return sqlQuery
		.from(qTestDbObject)
		.where(qTestDbObject.id.eq(1l))
		.list(new QueryDslMappingProjection(DbObject.class, 
				qTestDbObject.id,
				qTestDbObject.name, 
				qTestDbObject.email, 
				qTestDbObject.creationTime, 
				qTestDbObject.typeName, 
				qTestDbObject.typeOrdinal ));
} finally {
	conn.close();
}
```






© 2015 - 2025 Weber Informatics LLC | Privacy Policy