Re: Blob retrieval from database using shell

2005-07-31 Thread Enrique Sanchez Vela
to compare binary files "cmp" does a better work than diff. to answer your question ...echo might be adding a new-line char (\n) at the end of the file, why don't you try printf, most shells include such, also try the echo switches not to print the new-line at the end of the command (for bash: ech

Re: Blob retrieval from database using shell

2005-07-30 Thread Gleb Paharenko
Hello. Maybe mysql puts the name of the column (firmwareimage), at the beginning of the output (--skip-column-names should prevent it). Rakesh Gupta <[EMAIL PROTECTED]> wrote: > > > > > Hi There, > I am trying to insert blob in table and then retrieve it from table using > Lin