> Hi there,
>
[quoted text clipped - 14 lines]
> execute is used.
> Is there a special reason for this?
Look at the return values of those specific methods. You'll see what they are
good for.
> 2) In my testapplication i could use the same statement more than
> once. Is there a reason why one should create new statements for each
> query? And why is there no exception thrown when i try to use it
> twice?
No, you don't have to create new Statements every time.
But if you're repeatedly using the same Statement, you'd better use a
PreparedStatement (it can be handled more efficiently by the database),
which better to work with anyway once you have to pass arguments to your
query.

Signature
Regards,
Christophe Vanfleteren