Topic: Postgres is case sensitive
Yes, WHERE in postgres is case sensitive. This complicates the login procedure and this is why people could not login to my forum!
$result = $db->query('SELECT id, group_id, password, save_pass FROM '.$db->prefix.'users WHERE username=\''.$db->escape($form_username).'\'')
Fails.
Try using ILIKE.