PHP Classes

phpMyDBCompare Error

Recommend this page to a friend!

      phpMyDBCompare  >  All threads  >  phpMyDBCompare Error  >  (Un) Subscribe thread alerts  
Subject:phpMyDBCompare Error
Summary:Error on line 69
Messages:2
Author:Allan Gowen
Date:2011-03-01 12:38:16
Update:2011-03-01 12:50:12
 

  1. phpMyDBCompare Error   Reply   Report abuse  
Picture of Allan Gowen Allan Gowen - 2011-03-01 12:38:17
You have a slight error in your code (probably from a cut and paste).

On line 69 of phpMyDBCompare.inc.php you have...

$strSQL = "SHOW TABLES FROM {$this->LocalDatabase}";

When it should be

$strSQL = "SHOW TABLES FROM {$this->RemoteDatabase}";

  2. Re: phpMyDBCompare Error   Reply   Report abuse  
Picture of Gustavo Arcila Gustavo Arcila - 2011-03-01 12:50:12 - In reply to message 1 from Allan Gowen
Wow,

you're right I didn't saw that. It is fixed Now,

Thank you