허당 레몬도리
데이터베이스에서 BLOB 값 가져오기
가. 언어유형/C# 2009. 3. 2. 21:50

// Assumes that connection is a valid SqlConnection object. SqlCommand command = new SqlCommand( "SELECT pub_id, logo FROM pub_info", connection); // Writes the BLOB to a file (*.bmp). FileStream stream; // Streams the BLOB to the FileStream object. BinaryWriter writer; // Size of the BLOB buffer. int bufferSize = 100; // The BLOB byte[] buffer to be filled by GetBytes. byte[] outByte = new byte..