Jul 16, 2004 #1 lfc77 Programmer Aug 12, 2003 218 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 Sep 5, 2003 1,008 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 Jun 18, 2002 7,292 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 Dec 23, 2003 6,129 US SQLSister was trying to say writetext Upvote 0 Downvote
Jul 17, 2004 #5 SQLSister Programmer Jun 18, 2002 7,292 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