I have an application written in Java that I am thinking of porting to webware.  They 
client's needs are changing quickly and I
think I could develop faster in python.

Currently I use a really nice query builder class (
http://enhydra.enhydra.org/software/documentation/javadoc/com/lutris/dods/builder/generator/query/QueryBuilder.html
 )

It lets me write code like:
QueryBuilder qb;
  qb = new QueryBuilder( "cats" ); // cats is the table
  qb.addWhereClause( "owner.name", "Smith", QueryBuilder.NOT_NULL, 
QueryBuilder.EXACT_MATCH );
  qb.addWhereClause( "paws", 3, QueryBuilder.GREATER_THAN );
  qb.addReferentialWhereClause( "cat.ownerId", "owner.Id" );
  ResultSet rs = qb.executeQuery( conn );

Is there anything like this for Python/webware. I was testing out the 5rc3 version of 
middlekit but it does not let me just add
WHERE clauses, although I can add one WHERE clause that I build up myself.

Thanks,
-Aaron
http://www.metrony.com
===================================================================
As Isaac Newton would say now:
        If I see further than others, it is because I stand on
        the shoulders of giants too dumb to patent their discoveries.
  (Gregory Palast, http://www.observer.co.uk/ )



_______________________________________________
Webware-discuss mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to