Re: non-text data

2006-08-14 Thread Dave Shariff Yadallee - System Administrator a.k.a. The Root of the Problem
On Mon, Aug 14, 2006 at 02:29:41PM +1000, Chris wrote:
 Dave Shariff Yadallee - System Administrator a.k.a. The Root of the 
 Problem wrote:
 On Mon, Aug 14, 2006 at 10:42:50AM +1000, Chris wrote:
 Dave Shariff Yadallee - System Administrator a.k.a. The Root of the 
 Problem wrote:
 I use SELECT all from * ... and one row is a gif.
 
 How do I get that gif to appear as a gif and not text?
 In your connecting programming language.
 
 Mysql doesn't know or care whether it's a gif, pdf, word doc or anything 
 else.
 
 Whatever programming language you are using to connect to mysql and 
 fetch the data will be able to convert that binary data and display an 
 image.
 
 
 PHP?
 
 http://www.php.net/gd
 
 -- 
 MySQL General Mailing List
 For list archives: http://lists.mysql.com/mysql
 To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
 
 
 -- 
 This message has been scanned for viruses and
 dangerous content by MailScanner, and is
 believed to be clean.


All right, so how would one set up a select where

rows 1 and 2 are text and row 3 is a blob
and for argument sake assume jpg for the moment. 

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: non-text data

2006-08-14 Thread Chris




All right, so how would one set up a select where

rows 1 and 2 are text and row 3 is a blob
and for argument sake assume jpg for the moment. 



You want to select a row based on the content (image) of the jpg?

Not possible unless you pass the whole blob into mysql so it can 
retrieve the record which would be extremely slow and extremely 
expensive in terms of cpu / memory.


As you probably saw in the cross-post to the php-general list, you're 
much better off just storing the filename in the database and storing 
the image itself on the filesystem. Then you can easily search for 
images with filename 'logo.jpg'.


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: non-text data

2006-08-13 Thread Chris
Dave Shariff Yadallee - System Administrator a.k.a. The Root of the 
Problem wrote:

I use SELECT all from * ... and one row is a gif.

How do I get that gif to appear as a gif and not text?


In your connecting programming language.

Mysql doesn't know or care whether it's a gif, pdf, word doc or anything 
else.


Whatever programming language you are using to connect to mysql and 
fetch the data will be able to convert that binary data and display an 
image.


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: non-text data

2006-08-13 Thread Dave Shariff Yadallee - System Administrator a.k.a. The Root of the Problem
On Mon, Aug 14, 2006 at 10:42:50AM +1000, Chris wrote:
 Dave Shariff Yadallee - System Administrator a.k.a. The Root of the 
 Problem wrote:
 I use SELECT all from * ... and one row is a gif.
 
 How do I get that gif to appear as a gif and not text?
 
 In your connecting programming language.
 
 Mysql doesn't know or care whether it's a gif, pdf, word doc or anything 
 else.
 
 Whatever programming language you are using to connect to mysql and 
 fetch the data will be able to convert that binary data and display an 
 image.


PHP?
 
 -- 
 MySQL General Mailing List
 For list archives: http://lists.mysql.com/mysql
 To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
 
 
 -- 
 This message has been scanned for viruses and
 dangerous content by MailScanner, and is
 believed to be clean.
 

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: non-text data

2006-08-13 Thread Chris
Dave Shariff Yadallee - System Administrator a.k.a. The Root of the 
Problem wrote:

On Mon, Aug 14, 2006 at 10:42:50AM +1000, Chris wrote:
Dave Shariff Yadallee - System Administrator a.k.a. The Root of the 
Problem wrote:

I use SELECT all from * ... and one row is a gif.

How do I get that gif to appear as a gif and not text?

In your connecting programming language.

Mysql doesn't know or care whether it's a gif, pdf, word doc or anything 
else.


Whatever programming language you are using to connect to mysql and 
fetch the data will be able to convert that binary data and display an 
image.




PHP?


http://www.php.net/gd

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]