bst wrote:
> CREATE TABLE test (a BIT(8));
> How can I set bit string field in PreparedStatement?
As far as I can tell, there's no standard way to do this; the JDBC spec
thinks BIT is just like BOOLEAN.
You could use setString() and an explicit cast to bit(8) in your query,
perhaps..
-O