• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to create dynamic query string

 
Ranch Hand
Posts: 851
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

I am thinking to make one select, update and insert query dynamically despite to use them with different column names every time in the project.

For example I want to do
1) how many Strings and Integer parameter will be passed
2) then these number of parameter will be set as method parameters e.g. public String query(int i1, int i2, String str1, Str2, Str3){
3) columns name will be passed according to the number of parameters already set
4) table, where clause or order by condition parameter will be set
5) and preparedStatement setInt or setString will be set according to the number of passed parameters

In my view that will be good way to call this method every time for any select, update and insert query because we'll make three methods for select, insert and update and all related queries will work

Please advise?

Best regards
 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i think you can use the "DetachedCriteria" to fit your demand.
 
Farakh khan
Ranch Hand
Posts: 851
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Ivy chen. Your tip is great

Best regards
 
reply
    Bookmark Topic Watch Topic
  • New Topic