ElSql icon indicating copy to clipboard operation
ElSql copied to clipboard

Manage external SQL files in Java with a little DSL goodness

Results 7 ElSql issues
Sort by recently updated
recently updated
newest added

It seems the `@LIKE` processing, where it generates an `=` comparison instead of a `LIKE` when possible, is broken in the presence of escaped wildcard characters. If you provide `test\_test`...

Currently, ElsqlBundle is a final class. This becomes problematic when trying to mock an ElsqlBundle using Mockito. Mockito cannot mock final classes. Use case: In my Spring application, ElsqlBundle is...

Perhaps I've missed it, but it would be useful to have a way to escape @ symbols that appear in the Query body and aren't ElSql tags. Looking at the...

It would be good to have a simple example that is shipped as part of elsql and not refer to that big OpenGamma project.

Is there anything in the SqlServer2008 configuration that is known to be specific to the 2008 version of SQL Server? If not, it would be preferable to have a generic...

When I use ElSqlBundle to read external sql file. An multiline SQL changed to one line sql. For example: @name(example) SELECT COUNT(*) FROM Employee this is changed to SELECT COUNT(*)...

Hi folks, I want to use the JPA and ElSql together, but I don't know if that is possible. The goal is to use JPA configuration and export my queries...