Re: setObject(...) with native Java arrays like String[] ?

From: Craig Ringer <ringerc(at)ringerc(dot)id(dot)au>
To: PostgreSQL JDBC <pgsql-jdbc(at)postgresql(dot)org>
Subject: Re: setObject(...) with native Java arrays like String[] ?
Date: 2012-08-22 03:34:12
Message-ID: 50345334.5010205@ringerc.id.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

Also, maybe something this should go in the README?

---------------------------------------------------------------------------

TESTING

If you want to run the unit tests, create a user with username "test"
and password "password" in a Pg instance that listens on 127.0.0.1:5432
(the default). Create a database "test" owned by user "test".

psql -U postgres
postgres=# CREATE USER test WITH PASSWORD 'test';
postgres=# CREATE DATABASE test OWNER test;

Now run "ant test" to execute the tests against your new DB. You should
drop the test user and DB after testing as the well-known password could
lead to a security issue.

---------------------------------------------------------------------------

In response to

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Maciek Sakrejda 2012-08-22 04:52:06 Re: setObject(...) with native Java arrays like String[] ?
Previous Message Craig Ringer 2012-08-22 03:32:50 Re: setObject(...) with native Java arrays like String[] ?