I have used CTRL+ENTER (ACCESS Office 2007) and this is not seen inside MYsql table. Is this actually technically possible or how to solve this?
Demaestro
9:12 pm on Jun 1, 2011 (gmt 0)
Are you asking how to store the character equivalent of CTRL+ENTER?
toplisek
6:29 am on Jun 2, 2011 (gmt 0)
Yes
coopster
12:16 pm on Jun 2, 2011 (gmt 0)
You can store character sequence strings [dev.mysql.com] like that in your MySQL table columns. Did you import the data and lose the escape sequence upon import?
toplisek
12:51 pm on Jun 2, 2011 (gmt 0)
Yes, it is issue upon import.
coopster
12:58 pm on Jun 2, 2011 (gmt 0)
First, determine whether or not it is an export issue. You can do this by opening up the file in hex mode after exporting it from Access. Search for a known CTRL+ENTER escape sequence and look at the hex representation of the data. Make sure it exists in the exported file. If it's not there, it's obviously not going to show up in your imported records :)
Once you have confirmed that you now have to import it correctly using LOAD DATA INFILE [dev.mysql.com]. Make sure you don't mix up your termination characters with the other sequence characters.