mysql client command \G and blob fields

2007-11-27 Thread dpgirago
I've been experimenting with storing image data in blob fields, and I was surprised that using the mysql client to select the field with a semi-colon query terminator resulted in the binary data being dumped to the terminal (with lots of beeping) while using the \G query terminator result

Re: Problem with Selecting Text and Blob fields

2004-02-20 Thread PeterWR
Hi, I have had problems reading BLOB fields using MyODBC (I can't see if this is Your way of doing this). I have solved reading/updating BLOB using the samples from http://www.vbmysql.com/ - http://www.vbmysql.com/articles/visual-basic_mysql/blobaccessvb.html Best regards

Problem with Selecting Text and Blob fields

2004-02-20 Thread Jacob Joseph
When a select query is run on a mysql table with text and blob fields, the text fields return the whole text but the blob fields return only the first 4 bytes of the blob data. I use MySQL 4.0.17 with VB6.0 on Windows 2000. What should I do to retrieve complete data from the blob field? Any help

Re: Extracting images from blob fields.

2004-01-04 Thread robert_rowe
You need to select into dumpfile instead of outfile. See the section of the manual on select syntax: http://www.mysql.com/doc/en/SELECT.html -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Extracting images from blob fields.

2004-01-04 Thread Richard Davies
I have a small single user database into which I wish to insert and extract images. From the manual this seems to work to insert the image insert into images values(LOAD_FILE("/home/richard/scan.tiff")); but how do I get it back again? I thought this might work but it doesn't select * into ou

Re: Blob fields

2003-10-05 Thread colbey
he question related to this topic, hopefully you could help me on this. > Is that possible that we insert an encrypted image into blob fields where the > encryption is done by using mysql existing function (AES_Encrypt) from the client > side? > If yes, how is the procedure ? > Tha

Re: Blob fields

2003-10-04 Thread sian_choon
Hi, I have the question related to this topic, hopefully you could help me on this. Is that possible that we insert an encrypted image into blob fields where the encryption is done by using mysql existing function (AES_Encrypt) from the client side? If yes, how is the procedure ? Thanks in

Re: Blob fields

2003-10-01 Thread Jeremy Zawodny
On Wed, Oct 01, 2003 at 05:51:18PM +0100, Angelo Carmo wrote: > I people, > > Who knows how to insert an image file into blob fileds. Lots of us know how. And we've discussed it on the list about 600 times already. I'm sure you'll find an answer in the list archives. Jeremy -- Jeremy D. Zawo

Blob fields

2003-10-01 Thread Angelo Carmo
I people,     Who knows how to insert an image file  into blob fileds.   Thanks.   Angelo Carmo. VI-Veiculo de Ideias / Supermercados Horta Tel: 289899670 Tlm: 912179154 [EMAIL PROTECTED]

Re: BLOB fields

2003-07-04 Thread Egor Egorov
"Sreesekhar Palaparthy" <[EMAIL PROTECTED]> wrote: >If i have a table having fields of different datatypes > which > include BLOB/TEXT type, how do i give an insert statement?? Can > i > give a query to insert only BLOB/TEXT field seperately? Please > help me out. You can insert data

BLOB fields

2003-07-04 Thread Sreesekhar Palaparthy
Hi, If i have a table having fields of different datatypes which include BLOB/TEXT type, how do i give an insert statement?? Can i give a query to insert only BLOB/TEXT field seperately? Please help me out. ___ Click below to experience S

RE: MySQL BLOB fields and large binary data

2003-01-23 Thread Aigars Grins
7;t too great. Just a pointer.. -- Aigars -Original Message- From: Bruno Batarelo [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 14, 2003 20:37 To: [EMAIL PROTECTED] Subject: MySQL BLOB fields and large binary data Greetings Seemingly MySQL has a persistant problem that I could no

MySQL BLOB fields and large binary data

2003-01-14 Thread Bruno Batarelo
Greetings Seemingly MySQL has a persistant problem that I could not solve whatever I tried to do. It seems that it is impossible to send large amount of binary data to mysql's BLOB field. It is written in manual that 4.0x versions do not have limit for max_allowed_packet. It is also written that b

Re: Performances with BLOB fields in mySql

2002-05-20 Thread Andrei Cojocaru
Well how large is the BLOB field? Andrei Cojocaru [EMAIL PROTECTED] - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, May 20, 2002 2:51 AM Subject: Performances with BLOB fields in mySql > My application (C++, mySql++, WINNT) is ver

Re: INSERTING BLOB Fields in a Table

2002-05-20 Thread Neville Lewis
How would u insert thru the SQL prompt an Image file and once inserted what is the process of accessing it. I have a free server space with mysql db & as such I cant create subfolders with access privileges. So if I jus store the path in the DB & display the path later, any one can just type tha

Performances with BLOB fields in mySql

2002-05-19 Thread marco_ratto
My application (C++, mySql++, WINNT) is very time-critical and space-critical and use blob field. How can I improve performances? Which parameters can I set? There's literature about this question? Thak's, I'm sorry for my English. Bye, Marco

Performances with BLOB fields in mySql

2002-05-17 Thread marco_ratto
> > Da: <[EMAIL PROTECTED]> > Data: Fri, 17 May 2002 16:30:58 CEST > A: [EMAIL PROTECTED] > Oggetto: Performances with BLOB fields in mySql > > My application (C++, mySql++, WINNT) is very time-critical and space-critical and >use blob field. > How can

Performances with BLOB fields in mySql

2002-05-17 Thread marco_ratto
My application (C++, mySql++, WINNT) is very time-critical and space-critical and use blob field. How can I improve performances? Which parameters can I set? There's literature about this question? Thak's, I'm sorry for my English. Bye, Marco

Performance with BLOB fields in mySql

2002-05-17 Thread marco_ratto
My application (C++, mySql++, WINNT) is very time-critical and space-critical and use blob field. How can I improve performances? Which parameters can I set? There's literature about this question? Thak's and excuse my English. Bye, Marco

Extracting Blob fields in C API

2002-02-20 Thread Mike Brickman
Hi, I am trying to extract blob data from a query using the C API functions (actually I am using Delphi). I understand the structure of the result set and need to know the length of the blob field to extract it. As far as I can tell the only way to find the length of the fields is by using the

Whats the best way to export & retrieve BLOB fields?

2001-11-15 Thread M
Hello, I use BLOB fields to store pictures, it works nice, but problem arises when trying to backup/restore data, or else export BLOB fields to another database. I tried to use MysqlFront to export / import data, but it appears can't deal with BLOB, so it writes null character on TXT fil

RE: Storing objects in BLOB fields

2001-06-20 Thread Alok K. Dhir
AM > To: [EMAIL PROTECTED] > Subject: Storing objects in BLOB fields > > > Would anyone can kindly answer my question : > How to store/retrieve objects in blob fields, plz keep > in mind that I am using java. > > Regards > > Muhammad Saeed >

Storing objects in BLOB fields

2001-06-20 Thread Saeed Saleem
Would anyone can kindly answer my question : How to store/retrieve objects in blob fields, plz keep in mind that I am using java. Regards Muhammad Saeed Sr. Software Developer eTrango Pakistan (pvt) Ltd.

RE: Inserting images into BLOB Fields

2001-05-20 Thread Mike
Thank you!!! -Original Message- From: indrek siitan [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 20, 2001 9:51 PM To: Mike; [EMAIL PROTECTED] Subject: RE: Inserting images into BLOB Fields Hi, > How can I insert an image file into a blob field? I search the MySQL > Documen

RE: Inserting images into BLOB Fields

2001-05-20 Thread indrek siitan
Hi, > How can I insert an image file into a blob field? I search the MySQL > Documents but nothing came up specificaly on inserting images from files. INSERT INTO sig VALUES ( 1, 'Paul', 'Davolio', LOAD_FILE('d:/signatures/paul.txt') ); Rgds, Tfr --==< [EMAIL PROTECTED]

Inserting images into BLOB Fields

2001-05-20 Thread Mike
How can I insert an image file into a blob field? I search the MySQL Documents but nothing came up specificaly on inserting images from files. Using the Windows version. Here's the script CREATE TABLE sig ( ItemID INT NOT NULL AUTO_INCREMENT, FirstNameCHAR