Hi I've been working on a django backend for monetdb. For people who are interested in it have a look at it
diff MonetSQLdb/converters.py ./converters.py
120,125d119
< def Boolean2Str(x, d):
< if x:
< return 'TRUE'
< else:
< return 'FALSE'
<
144d137
< types.BooleanType: Boolean2Str,
diff MonetSQLdb/cursors.py ./cursors.py
38d37
< self.lastrowid = 0
82d80
<
132,134d129
< if self._result.lastid()>0:
< self.lastrowid = self._result.lastid()
<