Can anyone offer a solution to a rather strange problem? We have a galleryTable in our database with various fields including imagePath, imageThumbPath, imageDesc, imageName etc. A few weeks ago we had a problem after converting from MySQL to SQL Server where some fields refused to come out of the database. imageName was retrievable as was imagePath but imageDesc and a couple of other fields wouldn't come out of the DB. We eventually solved this by changing the variable names in our ASP pages from something like:
imageDescription = recordSet("imageDesc")
to:
imageDesc1 = recordSet("imageDesc")
For no apparent reason this seemed to work.
Now however it has started happening again with the same table but different fields. We have tried changing the variable names but not suprisingly this hasn't worked.#
Any ideas what the problem might be? Is it due to the MySQL converion do you think?
Thanks in advance,
Chris
imageDescription = recordSet("imageDesc")
to:
imageDesc1 = recordSet("imageDesc")
For no apparent reason this seemed to work.
Now however it has started happening again with the same table but different fields. We have tried changing the variable names but not suprisingly this hasn't worked.#
Any ideas what the problem might be? Is it due to the MySQL converion do you think?
Thanks in advance,
Chris