Steven Dowd
|
| Posted: 05/29/2002, 1:33 PM |
|
There is a small bug in the MySQL.sql file that's installed with Beta5
in the Insert into Countries section Line 557/558 there is an extra ;
that causes the countries db to not fillup correctly with phpmyadmin
INSERT INTO countries(country_id,country_name)
VALUES(119,'Mali');;
this should be
INSERT INTO countries(country_id,country_name)
VALUES(119,'Mali');
______________________
Steven.Dowd@dowd.co.uk
http://www.dowd.co.uk
______________________
|
|
|
 |
Alexey Alexapolsky
|
| Posted: 05/30/2002, 2:15 AM |
|
Thanks , CCS team is notified.
--
Alex
CodeCharge Developer
"Steven Dowd" <newspost.steven.dowd@dowd.co.uk> wrote in message
news:ad3dvc$t3s$1@news.codecharge.com...
> There is a small bug in the MySQL.sql file that's installed with Beta5
>
> in the Insert into Countries section Line 557/558 there is an extra ;
> that causes the countries db to not fillup correctly with phpmyadmin
>
> INSERT INTO countries(country_id,country_name)
> VALUES(119,'Mali');;
>
> this should be
>
> INSERT INTO countries(country_id,country_name)
> VALUES(119,'Mali');
>
>
>
>
>
>
> ______________________
>
>Steven.Dowd@dowd.co.uk
> http://www.dowd.co.uk
> ______________________
>
>
|
|
|
 |
|