On Tue, Jun 16, 2009 at 6:44 PM, Seysan<afsh...@gmail.com> wrote: > String cmd = String.Format("SELECT filename,content FROM documents > WHERE did={0}",did); > contentCommand = sqlconn.CreateCommand(); > contentCommand.CommandText = cmd; > rdr = contentCommand.ExecuteReader();
If rdr is a IDataReader, then it should work like: int len = rdr.GetBytes( 0, 0, null, 0, 0 ); byte[] buf = new byte[ len ]; rdr.GetBytes( 0, 0, buf, 0, len ); -- Joel Lucsy "The dinosaurs became extinct because they didn't have a space program." -- Larry Niven _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users