sql >> Base de Datos >  >> RDS >> Sqlserver

Forma efectiva de memoria para leer datos BLOB en C#/SQL 2005

Vea este excelente artículo aquí o esta entrada de blog para una larga explicación de cómo hacerlo.

Básicamente, necesita usar un SqlDataReader y especificar SequentialAccess a él cuando lo crea; luego puede leer (o escribir) el BLOB de la base de datos en fragmentos del tamaño que sea mejor para usted.

Básicamente algo como:

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