Re: [GENERAL] Storing files in postgres db

2006-12-04 Thread MaXX
On Mon, 4 Dec 2006 00:28:52 +0800 [EMAIL PROTECTED] ("tam wei") wrote: > Dear all, > > I am intending to store the files inside the postgres DB using the > type text (all the files will be pre-encode into base64. The reason > for not using the type bytea as I encountered some undesired > format(t

Re: [GENERAL] Storing files in postgres db

2006-12-04 Thread Michal Taborsky - Internet Mall
Hello Tam Wei, tam wei wrote: I am intending to store the files inside the postgres DB using the type text (all the files will be pre-encode into base64. The reason for not using the type bytea as I encountered some undesired format(the original file alignment can't be preserved) while extractin

Re: [GENERAL] Storing files in postgres db

2006-12-04 Thread Richard Huxton
tam wei wrote: Dear all, I am intending to store the files inside the postgres DB using the type text (all the files will be pre-encode into base64. The reason for not using the type bytea as I encountered some undesired format(the original file alignment can't be preserved) while extracting the

[GENERAL] Storing files in postgres db

2006-12-03 Thread tam wei
Dear all, I am intending to store the files inside the postgres DB using the type text (all the files will be pre-encode into base64. The reason for not using the type bytea as I encountered some undesired format(the original file alignment can't be preserved) while extracting the content and dis