Issue with rename recordset
Hello,
I found this problem with last beta of DataBridge.
If I change the name of the recordset in a page, the rename process only the code in the head and not the values in the body.
Example, if I change this recordset from "rsTest"...:
<?php
$rsTest = new WA_MySQLi_RS("rsTest",$connCCLN,1);
$rsTest->setQuery("SELECT * FROM tbl_docs");
$rsTest->execute();
?>
... to "rsPages"...:
<?php
$rsPages = new WA_MySQLi_RS("rsPages",$connCCLN,1);
$rsPages->setQuery("SELECT * FROM tbl_docs");
$rsPages->execute();
?>
... the values in the body not changes (from "rsTest" to "rsPages") and Dreamweaver (last version 2018, english language, last version of mac os) view me an alert (see screenshot):
<?php echo($rsTest->getColumnVal("sezione_docs")); ?>
Is not realy important because I can rename manually but I think it's better to fix it.
Thanks.