Jul 16, 2004 #1 lfc77 Programmer Joined Aug 12, 2003 Messages 218 Location GB I have a field that I want use INSERT INTO statements to enter data with 10000+ characters. Can anybody tell me how to do this? Thanks, lfc77
I have a field that I want use INSERT INTO statements to enter data with 10000+ characters. Can anybody tell me how to do this? Thanks, lfc77
Jul 16, 2004 #2 amorous Programmer Joined Sep 5, 2003 Messages 1,008 Location US Better approach is guess is to first split the string and store it in an array... Then you can insert the array elements in the database fields and when retrieve back you can concatenate the string back... Not sure whether its the better way to do or not... -VJ Upvote 0 Downvote
Better approach is guess is to first split the string and store it in an array... Then you can insert the array elements in the database fields and when retrieve back you can concatenate the string back... Not sure whether its the better way to do or not... -VJ
Jul 16, 2004 #3 SQLSister Programmer Joined Jun 18, 2002 Messages 7,292 Location US make the field a text or ntext datatype. Then you might need to use writetest and updatetext functions to manipualte the data. Questions about posting. See faq183-874 Upvote 0 Downvote
make the field a text or ntext datatype. Then you might need to use writetest and updatetext functions to manipualte the data. Questions about posting. See faq183-874
Jul 17, 2004 #4 ESquared Programmer Joined Dec 23, 2003 Messages 6,129 Location US SQLSister was trying to say writetext Upvote 0 Downvote
Jul 17, 2004 #5 SQLSister Programmer Joined Jun 18, 2002 Messages 7,292 Location US I was indeed. Although some students I know might enjoy haing a writetest function. Questions about posting. See faq183-874 Upvote 0 Downvote
I was indeed. Although some students I know might enjoy haing a writetest function. Questions about posting. See faq183-874