Re: [DB-SIG] Escaping parameter markers

2013-05-24 Thread M.-A. Lemburg
On 23.05.2013 22:27, Chris Clark wrote: > On Thu, 23 May 2013 17:44:35 +0200, M.-A. Lemburg wrote: >> I've done some research on escaping parameter markers. Here's what >> I came up with: >> >> ODBC: Supports only qmark ('?'). The standard doesn't specify an >>escape sequence for ? in SQL

Re: [DB-SIG] Escaping parameter markers

2013-05-23 Thread Chris Clark
On Thu, 23 May 2013 17:44:35 +0200, M.-A. Lemburg wrote: I've done some research on escaping parameter markers. Here's what I came up with: ODBC: Supports only qmark ('?'). The standard doesn't specify an escape sequence for ? in SQL statements. JDBC: Supports qmark ('?') and named (':p

[DB-SIG] Escaping parameter markers

2013-05-23 Thread M.-A. Lemburg
I've done some research on escaping parameter markers. Here's what I came up with: ODBC: Supports only qmark ('?'). The standard doesn't specify an escape sequence for ? in SQL statements. JDBC: Supports qmark ('?') and named (':param'). The standard doesn't specify an escape sequence