Re: [INTERFACES] New code for JDBC driver
От
Bruce Momjian
Тема
Re: [INTERFACES] New code for JDBC driver
Дата
Msg-id
200106301642.f5UGgkj14915@candle.pha.pa.us
Ответ на
New code for JDBC driver (Arsalan Zaidi)
Список
Дерево обсуждения
Re: [INTERFACES] New code for JDBC driver Barry Lind <barry@xythos.com>
> No response for my query since yesterday.
>
> I've changed the code in Connection.escapeSQL() to look for semicolons
> outside '' and ""'s.
>
> It's not been well tested, but it seems to work. Someone might want to add
> it to the source tree, or to their own local versions if they wish.
>
OK, here is the diff, I think. Can jdbc people comment on it?
--
Bruce Momjian | http://candle.pha.pa.us
pgman@candle.pha.pa.us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026
*** Connection.java Wed Jun 6 20:09:32 2001
--- /bjm/x Sat Jun 30 12:35:39 2001
***************
*** 931,937 ****
--- 21,123 ----
index = sql.indexOf("{d");
}
//System.out.println ("modified SQL: " + sql);
+
+
+
+
+ //---- Added by Arsalan
+ String query = sql;
+
+ //2== uninitialised 1==true 0==false
+ int openTick = 2;
+ int openQuote = 2;
+ char oneChar;
+
+ // query = query.toLowerCase();
+
+ if(query.indexOf(";") == -1) // no semi's at all
+ {
return sql;
}
+ for(int i=0; iВ списке pgsql-jdbc по дате отправления