Subject | Re: Why can I read but not write? |
---|---|
Author | Roman Rokytskyy |
Post date | 2004-03-23T12:06:02Z |
> 1. I can both read and write to my database with isql OK.Update statements are executed via statement.executeUpdate(sql); See
> 2. Using both Driver and the Connection Pool example approaches,
> I can read using SELECT but cannot write with UPDATE, etc.
> ...
> rs = statement.executeQuery(sql);
JDBC tutorial from Sun.
Roman