guest2013-1
guest
- Joined
- Aug 22, 2003
- Messages
- 19,800
- Reaction score
- 13
Hi guys,
Wrote a little application that will do a data transformation from custom XML files into SQL Server or mySQL and the ability to transform already written data in SQL Server to mySQL as well.
I'm just playing around with code so don't suggest other programs I could use.
What I found though is SQLDataReader cuts off a very big string (varchar(MAX) in SQL 2005)
Is there a limitation on this? I read a few threads saying something about 8k size limit but wtf? I split up the data in 2 parts and combine them "on the other side" before pushing to mySQL but even that gets cut off (so essentially bigger than 16k which means I have to divide it into three)
Anyone experienced this or know a work around?
Wrote a little application that will do a data transformation from custom XML files into SQL Server or mySQL and the ability to transform already written data in SQL Server to mySQL as well.
I'm just playing around with code so don't suggest other programs I could use.
What I found though is SQLDataReader cuts off a very big string (varchar(MAX) in SQL 2005)
Is there a limitation on this? I read a few threads saying something about 8k size limit but wtf? I split up the data in 2 parts and combine them "on the other side" before pushing to mySQL but even that gets cut off (so essentially bigger than 16k which means I have to divide it into three)
Anyone experienced this or know a work around?