Re: PostgreSQL/Oracle/MSSQL differences (was: streaming result - Mailing list pgsql-jdbc

From David Wall
Subject Re: PostgreSQL/Oracle/MSSQL differences (was: streaming result
Date
Msg-id 012001c28cca$00a6a980$3201a8c0@expertrade.com
Whole thread Raw
In response to Re: PostgreSQL/Oracle/MSSQL differences (was: streaming result  ("Hale Pringle" <halepringle@yahoo.com>)
List pgsql-jdbc
> One big difference that you should look for is case sensitivity in WHERE
> clauses.  I know that SQL-SERVER defaults to case-insensitive and you have
> to go through hoops to do a case sensitive search.  PostreSQL defaults to
> case sensitive and uses the non-standard "ILIKE" verb to generate a
> case-insensitive WHERE clause.

You don't need to use ILIKE if you use: ... lower(attr) LIKE "abc"   This
works in Oracle and PG.

David


pgsql-jdbc by date:

Previous
From: Laszlo Hornyak
Date:
Subject: Re: PostgreSQL/Oracle/MSSQL differences (was: streaming result sets: progress)
Next
From: "David Hooker"
Date:
Subject: Re: PostgreSQL/Oracle/MSSQL differences (was: streaming result