[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: psql and jdbc1.2



Khalid Ezzaraoui wrote:

> I got an "SQLException: InputStream as parameter not supported" from my
> software in Win98.

Very simple: The PostgreSQL JDBC driver does not support InputStreams in
prepared statements:

--- src/interfaces/jdbc/postgresql/jdbc2/PreparedStatement.java ---

    public void setBinaryStream(int parameterIndex, InputStream x,
                                int length) throws SQLException
        {
            throw new PSQLException("postgresql.prep.is");
        }

--- src/interfaces/jdbc/postgresql/jdbc2/PreparedStatement.java ---

-- 
Stefan Gybas


Reply to: