I need to store the value of an INPUT box that might have more than 255 characters into an Access database accessed from my ASP page.
I read somewhere that the maximum characters that can be store in a single recordis 255 ...I even got error messages when trying to store a value of more than 90 characters. Any solution to this ?
I figured I could always get the LEN of the string and then split it into multiple strings of like 80 Characters then store multiple records in my Access database.....but that seems like a long process for something quite simple...I'm sure there must be an easier solution....
I read somewhere that the maximum characters that can be store in a single recordis 255 ...I even got error messages when trying to store a value of more than 90 characters. Any solution to this ?
I figured I could always get the LEN of the string and then split it into multiple strings of like 80 Characters then store multiple records in my Access database.....but that seems like a long process for something quite simple...I'm sure there must be an easier solution....