One question about callablestatement

From: 张元超 <zhangyuanchao(at)highgo(dot)com>
To: "pgsql-jdbc(at)postgresql(dot)org" <pgsql-jdbc(at)postgresql(dot)org>
Subject: One question about callablestatement
Date: 2016-01-20 02:14:48
Message-ID: 93de5deeabac41d99b0cd910fdfc6c64@EX01.highgo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

Hi,
Now ,i found one question about callablestatement.if i have a function whoes name containts '}',and i call it by callablestatement,there will be a 'PSQLException'. Like this:

org.postgresql.util.PSQLException: Malformed function or procedure escape syntax at offset 19.
at org.postgresql.core.Parser.modifyJdbcCall(Parser.java:644)
at org.postgresql.jdbc2.CachedQueryCreateAction.create(CachedQueryCreateAction.java:40)
at org.postgresql.jdbc2.CachedQueryCreateAction.create(CachedQueryCreateAction.java:21)
at org.postgresql.util.LruCache.borrow(LruCache.java:94)
at org.postgresql.jdbc2.AbstractJdbc2Connection.borrowQuery(AbstractJdbc2Connection.java:106)
at org.postgresql.jdbc2.AbstractJdbc2Statement.<init>(AbstractJdbc2Statement.java:227)
at org.postgresql.jdbc3.AbstractJdbc3Statement.<init>(AbstractJdbc3Statement.java:49)
at org.postgresql.jdbc3g.AbstractJdbc3gStatement.<init>(AbstractJdbc3gStatement.java:29)
at org.postgresql.jdbc4.AbstractJdbc4Statement.<init>(AbstractJdbc4Statement.java:33)
at org.postgresql.jdbc42.AbstractJdbc42Statement.<init>(AbstractJdbc42Statement.java:27)
at org.postgresql.jdbc42.Jdbc42Statement.<init>(Jdbc42Statement.java:31)
at org.postgresql.jdbc42.Jdbc42PreparedStatement.<init>(Jdbc42PreparedStatement.java:21)
at org.postgresql.jdbc42.Jdbc42CallableStatement.<init>(Jdbc42CallableStatement.java:17)
at org.postgresql.jdbc42.Jdbc42Connection.prepareCall(Jdbc42Connection.java:46)
at org.postgresql.jdbc3.AbstractJdbc3Connection.prepareCall(AbstractJdbc3Connection.java:325)
at org.postgresql.jdbc2.AbstractJdbc2Connection.prepareCall(AbstractJdbc2Connection.java:333)

The function name i used is "test_fu}n2".Yeah,i kown that may be nobody will create a function with some name like this,but, it can be created successfully.Ok, i check the code of jdbc,i found some problem lead to the question above. The code file is org/postgresql/core/Parser.java,and row 603 to row 646,the handle of '}' .

I have no idea if it is necessary to modify it.

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Pavel Kajaba 2016-01-20 09:24:24 Re: [pgjdbc] Implement JDBC specs via pre-processor step (#435)
Previous Message Vladimir Sitnikov 2016-01-19 21:56:27 Re: [pgjdbc] Implement JDBC specs via pre-processor step (#435)