sql >> Database >  >> RDS >> Sqlserver

Geheugen effectieve manier om BLOB-gegevens te lezen in C#/SQL 2005

Bekijk dit uitstekende artikel hier of deze blogbericht voor een lange uitleg hoe het moet.

In principe moet u een SqlDataReader gebruiken en SequentialAccess specificeren ernaar toe wanneer u het maakt - dan kunt u de BLOB uit de database lezen (of schrijven) in brokken van elke grootte die het beste voor u is.

Eigenlijk zoiets als:

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. EF 6 - Hoe parallelle queries correct uit te voeren

  2. SQL (oracle) om twee lijsten te vergelijken

  3. Efficiënt extern roosteren met MySQL en ejabberd

  4. Mysql-partitionering en joins