Thomas Spahni wrote:
> On Mon, 26 Aug 2002, Donald J Miller wrote:
>
> > Hello everyone,
> >
> > I am trying to create a mysql table to hold either the entire contents
> > of text or WordPerfect files. I've read about BLOB or TEXT type columns
> > so I've tried creating a table such as:
> >
> >
On Mon, 26 Aug 2002, Donald J Miller wrote:
> Hello everyone,
>
> I am trying to create a mysql table to hold either the entire contents
> of text or WordPerfect files. I've read about BLOB or TEXT type columns
> so I've tried creating a table such as:
>
> CREATE TABLE filetest(fileid int(5) n
On 26 Aug 2002, at 15:32, Donald J Miller wrote:
> CREATE TABLE filetest(fileid int(5) not null, file BLOB null);
>
> I 've created the table and have used LOAD DATA in order to populate the
> database however I get numerous errors. Can someone shed some light as
> to how to do this correctly?
Hello everyone,
I am trying to create a mysql table to hold either the entire contents
of text or WordPerfect files. I've read about BLOB or TEXT type columns
so I've tried creating a table such as:
CREATE TABLE filetest(fileid int(5) not null, file BLOB null);
I 've created the table and have