[GENERAL] Image data type equivalent in postgresql

2003-09-18 Thread Josué Maldonado
Hello list, That's the question, what is the equivalent data type of the msSQL image data type ? TIA, -- Josué Maldonado. ---(end of broadcast)--- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command

Re: [GENERAL] Image data type equivalent in postgresql

2003-09-18 Thread Mike Mascari
Josué Maldonado wrote: Hello list, That's the question, what is the equivalent data type of the msSQL image data type ? You can use 'bytea' for binary data. You can use 'text' and base64 encode the image before insertion. You can, of course, create your own 'image' type using CREATE TYPE.