tags:

views:

64

answers:

1

Hi Guys,

I am looking for simple query language for producing SQL commands...

For example:

  • Google Base Query Language (code.google.com/apis/base/docs/2.0/query-lang-spec.html)

  • CQL (Common Query Language)

  • Lucene Query Language (lucene.apache.org/java/2_3_2/queryparsersyntax.html)

Anybody could help me please?

Thanks

+1  A: 

I would always stick to the native database SQL for perfomance.

I dislike the idea that someone might change something in a generated layer that could ruin the query performance.

I realise this has certain draw backs, such as portability and that ORMs are popular these days.

Nanook
yep... I would do this... but i would like to use this natural query langanuage for searching module... so I need kind of "english" query langauge...