sql >> Databasteknik >  >> RDS >> Sqlserver

Minneseffektivt sätt att läsa BLOB-data i C#/SQL 2005

Se denna utmärkta artikel här eller detta blogginlägg för en lång förklaring hur man gör.

I grund och botten måste du använda en SqlDataReader och ange SequentialAccess till den när du skapar den - då kan du läsa (eller skriva) BLOB från databasen i bitar av vilken storlek som helst som är bäst för dig.

I princip något som:

SqlDataReader myReader = getEmp.ExecuteReader(CommandBehavior.SequentialAccess);

while (myReader.Read())
{
   int startIndex = 0;

   // Read the bytes into outbyte[] and retain the number of bytes returned.
   retval = myReader.GetBytes(1, startIndex, outbyte, 0, bufferSize);

   // Continue reading and writing while there are bytes beyond the size of the buffer.
   while (retval == bufferSize)
   {
      // write the buffer to the output, e.g. a file
      ....

      // Reposition the start index to the end of the last buffer and fill the buffer.
      startIndex += bufferSize;
      retval = myReader.GetBytes(1, startIndex, outbyte, 0, bufferSize);
   }

   // write the last buffer to the output, e.g. a file
   ....
}

// Close the reader and the connection.
myReader.Close();

Marc



  1. NHibernate-mappning för Oracle INTERVAL DAY TO SECOND datatyp

  2. LOAD DATA LOCAL INFILE stoppar importen vid 69 000 rader

  3. ANDROID&PHP - Hur man visar JSONArray från MySql med PHP

  4. kombinera två välj uttalande i två kolumner?