I’m looking at the access problem. Here’s the view definition.
I had to change the quote character to get it past the forums formatter.
CREATE
ALGORITHM = TEMPTABLE
DEFINER = 'ogsonca'@'localhost'
SQL SECURITY INVOKER
VIEW 'ogsonca_ottawa_branch'.'nameindex_library' AS
SELECT
'ogsonca_ottawa_branch'.'nameindex'.'SURNAME' AS 'SURNAME',
'ogsonca_ottawa_branch'.'nameindex'.'NAME_DATE' AS 'NAME_DATE',
'ogsonca_ottawa_branch'.'nameindex'.'PAGE' AS 'PAGE',
'Library Info' AS 'Comment',
'ogsonca_ottawa_branch'.'nameindex'.'LIBREF' AS 'LIBREF',
'ogsonca_ottawa_branch'.'library'.'subcallid' AS 'subcallid',
'ogsonca_ottawa_branch'.'library'.'callid' AS 'callid',
'ogsonca_ottawa_branch'.'library'.'ID' AS 'ID',
'ogsonca_ottawa_branch'.'library'.'Category' AS 'Category',
'ogsonca_ottawa_branch'.'library'.'Classification' AS 'Classification',
'ogsonca_ottawa_branch'.'library'.'Collection' AS 'Collection',
'ogsonca_ottawa_branch'.'library'.'Description' AS 'Description',
'ogsonca_ottawa_branch'.'library'.'keyword' AS 'keyword',
'ogsonca_ottawa_branch'.'library'.'created' AS 'created',
'ogsonca_ottawa_branch'.'library'.'Title' AS 'Title',
'ogsonca_ottawa_branch'.'library'.'Publisher' AS 'Publisher',
'ogsonca_ottawa_branch'.'library'.'Author' AS 'Author',
'ogsonca_ottawa_branch'.'library'.'Abstract' AS 'Abstract',
'ogsonca_ottawa_branch'.'library'.'ISBN' AS 'ISBN',
'ogsonca_ottawa_branch'.'library'.'modified' AS 'modified',
'ogsonca_ottawa_branch'.'library'.'Status' AS 'Status',
'ogsonca_ottawa_branch'.'library'.'dewey' AS 'dewey',
'ogsonca_ottawa_branch'.'library'.'Oldbook' AS 'Oldbook',
'ogsonca_ottawa_branch'.'library'.'donated_by' AS 'donated_by'
FROM
('ogsonca_ottawa_branch'.'nameindex'
JOIN 'ogsonca_ottawa_branch'.'library' ON (('ogsonca_ottawa_branch'.'nameindex'.'LIBREF' = 'ogsonca_ottawa_branch'.'library'.'Classification')))