Tagged Questions
The sqlbuilder tag has no wiki summary.
17
votes
3answers
700 views
Java: JOOQ persistence framework performance and feed back
I've stumbled over a nice SQL builder framework, called JOOQ. BTW, in Russian JOOQ sounds like noun meaning "bug" (as an insect), "beetle" ;)
If you have any feedback about JOOQ, it's performance and ...
11
votes
4answers
1k views
Is there any good dynamic SQL builder library in Java?
Anyone knows some good SQL builder library for Java like Squiggle (not maintained anymore it seems). Preferably, a project in active development.
Preferably with syntax like Zend_Db_Select, something ...
4
votes
3answers
297 views
Good way to generate SQL strings in java?
Im not looking for a persistence layer like Hibernate, I just want to generate sql-strings and they should be compatible with PreparedStatement. I've tried libraries such as Squiggle, but it only ...
4
votes
4answers
851 views
Generic SQL builder .NET
I'm looking for a way to write an SQL statement in C# targeting different providers. A typical example of SQL statements differentiating is the LIMIT in PostgreSQL vs. TOP in MSSQL.
Is the only way ...
1
vote
5answers
3k views
SQL Builder for PHP, with JOIN support?
Are any of you aware of a library that helps you build/manipulate SQL queries, that supports JOIN's?
It would give a lot of flexibility i'd think if you have something where you could return an ...
0
votes
4answers
68 views
Question mark placeholder
How can I replace all '?' the variables? Something like:
$name = 'test' ;
$lname = 'lastTest';
$id = 1 ;
->where ( 'customers.name = ? and customers.lastname = ? and customers.id = ?' ...