21 Jul
2008
21 Jul
'08
2:07 p.m.
On Wed, 2008-07-16 at 18:04 +0200, Niels Nes wrote:
(ps72) throws a "Query did not produce a result set" in MonetDB?
No I don't. Could you try to run the queries with out java, ie simply using mclient -lsql?
Niels
Here you can see that the "exec 0();" command works before a table is created, but is lost once a table is created. sql>prepare select 0; sql>exec 0(); +--------------+ | single_value | +==============+ | 0 | +--------------+ sql>create table blah(blah integer); sql>exec 0(); sql>prepare select 1; sql>exec 0(); +--------------+ | single_value | +==============+ | 1 | +--------------+