Sqlserver
 sql >> Base de Dados >  >> RDS >> Sqlserver

Maneira eficaz de memória para ler dados BLOB em C#/SQL 2005


Veja este excelente artigo aqui ou esta postagem do blog para uma longa explicação de como fazê-lo.

Basicamente, você precisa usar um SqlDataReader e especificar SequentialAccess a ele quando você o cria - então você pode ler (ou escrever) o BLOB do banco de dados em pedaços de qualquer tamanho que for melhor para você.

Basicamente 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();

Marco