Here's what PostgreSQL logs when I click the Login button as above:
2012-05-16 17:00:03 AZST LOG: execute pdo_stmt_00000001: SET
search_path TO public
2012-05-16 17:00:03 AZST LOG: statement: DEALLOCATE pdo_stmt_00000001
2012-05-16 17:00:03 AZST LOG: execute pdo_stmt_00000002: SELECT
table_name as name FROM INFORMATION_SCHEMA.tables WHERE table_schema =
$1
2012-05-16 17:00:03 AZST DETAIL: parameters: $1 = 'public'
2012-05-16 17:00:03 AZST LOG: execute pdo_stmt_00000003: SELECT
DISTINCT table_schema AS schema, column_name AS name, data_type AS
type, is_nullable AS null,
column_default AS
default, ordinal_position AS position, character_maximum_length AS
char_length,
character_octet_length
AS oct_length FROM information_schema.columns
WHERE table_name = $1 AND
table_schema = $2 ORDER BY position
2012-05-16 17:00:03 AZST DETAIL: parameters: $1 = 'users', $2 =
'public'
2012-05-16 17:00:03 AZST LOG: statement: DEALLOCATE pdo_stmt_00000003
2012-05-16 17:00:03 AZST LOG: statement: DEALLOCATE pdo_stmt_00000002
Apparently it doesn't attempt to query users table itself. But if I
remove the users table clicking login barfs that table users does not
exist, so there's something else stopping it.
--
Our newest site for the community: CakePHP Video Tutorials
http://tv.cakephp.org
Check out the new CakePHP Questions site http://ask.cakephp.org and help others
with their CakePHP related questions.
To unsubscribe from this group, send email to
[email protected] For more options, visit this group at
http://groups.google.com/group/cake-php