Thank you for the help. I don't know why all of a sudden we are having these issues.
Last one: I have 2 simple linked reports for editing a record. All works well - the data is changed appropriately. But even with a dbr.refresh, upon return to the first report the revised data is not displayed. It is out of sync with the actual data in the table.
Here are the procs:
DROP PROCEDURE IF EXISTS sp_DBR_Blog_Meta_Descriptions_Two
$$
CREATE PROCEDURE sp_DBR_Blog_Meta_Descriptions_Two
()
BEGIN
select 'dbr.hidecolumn', '[cdseopage]';
select 'dbr.title', 'Blog Meta Description, Meta Keyword & Page Title Editor';
select 'dbr.subtitle', 'Allows the editing of these fields in real-time.';
select 'dbr.column.title', '[descr]', 'Meta Description';
select 'dbr.column.title', '[title]', 'Page Title';
select 'dbr.column.title', '[KW]', 'Meta Keywords';
select 'dbr.column.title', '[cdseoid]', 'ID';
select 'dbr.report', 'sp_DBR_Meta_Edit_Two', '[cdseoid]', 'popup', 'zID=[cdseoid]', 'zTitle<=[title]', 'zKW<=[KW]', 'zDescr<=[descr]', 'zPage=[cdseopage]';
select w.cdseoID as 'CID[cdseoid]',
w.cdseoTitle as 'Title[title]',
w.cdseoKeyword as 'kw[KW]',
w.cdseoPage as '[cdseopage]',
w.cdseoDescription as 'Description[descr]',
date_format(from_unixtime(z.date), '%b, %D %Y') as 'Posting Date'
from fbtscom_xcart.wcm_cdseo w, fbtscom_xcart.wcm_cms_entries z
where w.cdseoType = 'xcmsentry'
and w.cdseoReplaceID = z.entryid
and z.status = 1
order by z.views DESC;
END
$$
DROP PROCEDURE IF EXISTS sp_DBR_Meta_Edit_Two
$$
CREATE PROCEDURE sp_DBR_Meta_Edit_Two
(
zID int,
zTitle text,
zKW text,
zDescr text,
zPage int)
BEGIN
/*
select 'dbr.column.title', 'zTitle', 'Page Title';
select 'dbr.column.title', 'zDescr', 'Meta Description';
select 'dbr_column.title', 'zKW', 'Meta Keywords';
select 'dbr.column.title', 'zID', 'ID';
*/
select 'dbr.title', 'Editing Meta Descriptions, etc.';
update fbtscom_newxcart.wcm_cdseo
set
cdseoTitle = zTitle,
cdseoDescription = zDescr,
cdseoKeyword = zKW
where cdseoID = zID and cdseoPage = zPage;
select 'dbr.refresh';
END
$$
10,000 thanks!!!