Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / .NET Framework / ADO.NET / January 2006

Tip: Looking for answers? Try searching our database.

DataReader Limits data returned!

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
TY - 26 Jan 2006 13:55 GMT
I have a stored procedure that returns xml data (using For XML), it returns
about 9000 records. I use a datareader to write the data to a XML file.
For some reason, the datareader doesn't write all data, it seems like the
data returned has some size limit.

here is my code, my code is based on a msdn example for using getBytes were
it writes data to the stream by chunks based on the buffer size:

       '----some code here to fill in the stored procedure name and
parameters.
       Dim mydatareader As SqlDataReader
       connectionObj.Open()
       mydatareader = CommandObj.ExecuteReader

       Dim fs As FileStream
       Dim bw As BinaryWriter
       Dim bufferSize As Integer = 100
       Dim outChar(bufferSize - 1) As Char
       Dim retval As Long
       Dim startindex As Long = 0

       If mydatareader.Read Then

           fs = New FileStream("c:\test.xml", FileMode.OpenOrCreate,
FileAccess.Write)
           bw = New BinaryWriter(fs)
           retval = mydatareader.GetChars(0, startindex, outChar, 0, 100)

           ' Continue reading and writing while there are bytes beyond the
size of the buffer.
           Do While retval = bufferSize
               'bw.Write(outByte)
               bw.Write(outChar)
               bw.Flush()

               ' Reposition the start index to the end of the last buffer
and fill the buffer.
               startindex += bufferSize
               retval = mydatareader.GetChars(0, startindex, outChar, 0,
bufferSize)
           Loop

           'Write the remaining buffer.
           bw.Write(outChar, 0, CType(retval - 1, Integer))
           bw.Flush()

           ' Close the output file.
           bw.Close()
           fs.Close()
       End If
       connectionObj.Close()
       connectionObj.Dispose()
       CommandObj.Dispose()
W.G. Ryan - MVP - 26 Jan 2006 14:53 GMT
>I have a stored procedure that returns xml data (using For XML), it returns
> about 9000 records. I use a datareader to write the data to a XML file.
[quoted text clipped - 50 lines]
>        connectionObj.Dispose()
>        CommandObj.Dispose()
W.G. Ryan - MVP - 26 Jan 2006 14:54 GMT
>I have a stored procedure that returns xml data (using For XML), it returns
> about 9000 records. I use a datareader to write the data to a XML file.
[quoted text clipped - 50 lines]
>        connectionObj.Dispose()
>        CommandObj.Dispose()
--Ty, is the problem that the records aren't all getting written or that no
one record is getting written completely?

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.