storing files in blob field

2004-03-30 Thread Michael Scholz
Hello, i try to store some files into a blob-fields of a myisam-table at mysql 4.1. If the file includes bytes with hex-value 00, mysql will only store the bytes before this ' 0-byte ' . How can i store a file including bytes with value 00? Thanks, Michael Scholz

Re: storing files...

2002-04-09 Thread Victoria Reznichenko
Nick, Tuesday, April 09, 2002, 5:21:00 PM, you wrote: NS> Is there a way to store files in MySQL? Looking to store somthing like a NS> zip file in the databaseand be able to retrieve/download it from something like ASP. Yes, you can store files in the BLOB fields. You can find some info about B

storing files...

2002-04-09 Thread Nick Stuart
Is there a way to store files in MySQL? Looking to store somthing like a zip file in the databaseand be able to retrieve/download it from something like ASP. Thanks -Nick - Before posting, please check: http://www.mysq

Re: storing files in mySQL

2002-03-05 Thread shawn allen
...and so I'm tempted for the third time to bring up my issue which has to date resulted in no response: BLOB columns causing various, seemingly random "out of memory" errors on FreeBSD. Is this problem too low-level for the list? I see plenty of responses to questions about simple queries, even

RE: RE: storing files in mySQL

2002-03-05 Thread Dang Nguyen
Thanks to everyone who responded to my query. Your responses have given me a bit to think about. Dang Nguyen - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/

Re: storing files in mySQL

2002-03-05 Thread Tod Harter
On Tuesday 05 March 2002 10:05, Thomas Spahni wrote: There are some good reasons for wanting to store data directly in the database, sometimes. For instance I built an application recently that used blobs. The reason is simplicity and security. In a web application it is nice to just dump the

Re: storing files in mySQL

2002-03-05 Thread Thomas Spahni
On Mon, 4 Mar 2002, Dang Nguyen wrote: > I'd like to know how to load files, such as MS-Word documents or PDF > documents, in a mySQL database. I've setup a blob type in a table, but > where do I go from there? > > The purpose of this is to store files uploaded from a web page and processed > w

RE: storing files in mySQL

2002-03-05 Thread Administrator
ent: Tuesday, March 05, 2002 6:13 AM To: 'Mysql List (E-mail)' Subject: RE: storing files in mySQL Why not rather have pointers to the files on a directory and store this in a db field ? Saves you a lot of DB space ? Ant -Original Message- From: Dang Nguyen [mailto:[EMAIL PROTECTED

RE: storing files in mySQL

2002-03-05 Thread Anton
Why not rather have pointers to the files on a directory and store this in a db field ? Saves you a lot of DB space ? Ant -Original Message- From: Dang Nguyen [mailto:[EMAIL PROTECTED]] Sent: 04 March 2002 09:05 To: Mysql List (E-mail) Subject: storing files in mySQL Hi everyone, I&#

RE: storing files in mySQL

2002-03-04 Thread Sébastien DIDIER
l Regards, Sébastien DIDIER Zarcrom SAS - Web Hosting www.zarcrom.fr > -Message d'origine- > De : Dang Nguyen [mailto:[EMAIL PROTECTED]] > Envoyé : lundi 4 mars 2002 20:05 > À : Mysql List (E-mail) > Objet : storing files in mySQL > > > Hi everyone, > > I'

storing files in mySQL

2002-03-04 Thread Dang Nguyen
Hi everyone, I'd like to know how to load files, such as MS-Word documents or PDF documents, in a mySQL database. I've setup a blob type in a table, but where do I go from there? The purpose of this is to store files uploaded from a web page and processed with Java servlets. Then, the files sh

Re: storing files in database

2001-02-18 Thread Rolf Hopkins
Blob field may do the trick but wouldn't it easier to store it on the drive? - Original Message - From: "I.SivaramaKrishnan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 16, 2001 17:05 Subject: storing files in database >

Re: Antwort: [Fwd: storing files in database]

2001-02-17 Thread Donald Korth
3:23 PM Subject: Antwort: [Fwd: storing files in database] On 16.02.2001 10:08:26 I.SivaramaKrishnan wrote: > NOTE: Since iam not a member of this group, please reply by cc`ing to my mail > id. That's a behavior I never quite understood - you come to list seeking for

Antwort: [Fwd: storing files in database]

2001-02-16 Thread alexander . skwar
On 16.02.2001 10:08:26 I.SivaramaKrishnan wrote: > NOTE: Since iam not a member of this group, please reply by cc`ing to my mail > id. That's a behavior I never quite understood - you come to list seeking for advice. Fine. Next you say that you do not care at all about the list. Geez, if yo

Antwort: storing files in database

2001-02-16 Thread alexander . skwar
On 16.02.2001 10:05:54 I.SivaramaKrishnan wrote: > Hi all, > > Basically I have a requirement where I have to store xml files in the database. > The table that I visualised for the purpose will contain two columns, one being > the key (varchar) and the other for the xml file. What data type sh

Re: storing files in database

2001-02-16 Thread Thiru
Are U going to search thru the XML data in the future? If so U have to be carefull .. If not, depending on size u have these options 1. text(64K) or blob(64K) 2. mediumtext(16MB) or mediumblob(16MB) Cheers! Thiru If U may search thru the XML data at some point, On Fri, 16 Feb 2001 14:35:5

[Fwd: storing files in database]

2001-02-16 Thread I.SivaramaKrishnan
  NOTE: Since iam not a member of this group, please reply by cc`ing to my mail id. --  Sivaramakrishnan I AdventNet (India) Development center. Madras, India. Phone: 91 44 243 2414   Hi all, Basically I have a requirement where I have to store xml files in the database.  The table that I visu

storing files in database

2001-02-16 Thread I.SivaramaKrishnan
Hi all, Basically I have a requirement where I have to store xml files in the database. The table that I visualised for the purpose will contain two columns, one being the key (varchar) and the other for the xml file. What data type should I use for the second column. Are there any inherent pro