I put the question on the MySql forum but did not get far. This is a real headache. I have entered 40 records into MySql using import from a file from Access. Using PhpMyAdmin. I keep having problems selecting some records past record 30 for editing. I get a query appear instead of the record :
This is what I see when I select the records not shown on page 2 for editing:
MySQL returned an empty result set (i.e. zero rows).SQL query:SELECT *
FROM `template`
WHERE `ID` =37
AND CONVERT( `Location`
USING utf8 ) = ''
AND CONVERT( `OrderNumber`
USING utf8 ) = ''
AND CONVERT( `PWRD`
USING utf8 ) = ''
AND `OrderDate` IS NULL
AND `Group` =5
AND CONVERT( `Description`
USING utf8 ) = 'SX321 LARGE'
AND CONVERT( `FujiPartNumber`
USING utf8 ) = 'P10WSXL124A'
AND CONVERT( `Duration`
USING utf8 ) = '124 mins'
AND CONCAT( `UnitPrice` ) = 7.94
AND `Qty` =0
AND CONCAT( `OrdSubTotal` ) IS NULL
AND CONCAT( `RunningTotal` ) IS NULL
AND CONVERT( `Title`
USING utf8 ) = '';
All I am trying to do is put something in the Title field. I have re-installed PhpMyAdmin / MySql several times. The installation is a package from XAMPP. I have also tried installing WAMP5, that produced the same results. Any ideas would be very greatfull, losing so much time on this. Thanks
This is what I see when I select the records not shown on page 2 for editing:
MySQL returned an empty result set (i.e. zero rows).SQL query:SELECT *
FROM `template`
WHERE `ID` =37
AND CONVERT( `Location`
USING utf8 ) = ''
AND CONVERT( `OrderNumber`
USING utf8 ) = ''
AND CONVERT( `PWRD`
USING utf8 ) = ''
AND `OrderDate` IS NULL
AND `Group` =5
AND CONVERT( `Description`
USING utf8 ) = 'SX321 LARGE'
AND CONVERT( `FujiPartNumber`
USING utf8 ) = 'P10WSXL124A'
AND CONVERT( `Duration`
USING utf8 ) = '124 mins'
AND CONCAT( `UnitPrice` ) = 7.94
AND `Qty` =0
AND CONCAT( `OrdSubTotal` ) IS NULL
AND CONCAT( `RunningTotal` ) IS NULL
AND CONVERT( `Title`
USING utf8 ) = '';
All I am trying to do is put something in the Title field. I have re-installed PhpMyAdmin / MySql several times. The installation is a package from XAMPP. I have also tried installing WAMP5, that produced the same results. Any ideas would be very greatfull, losing so much time on this. Thanks