Hello all, When I use mysql_create to create the struce to access table,
I have a question about the BOLB type.
My table defined as follow:

drop table ClipBoard; #4-13
create table ClipBoard(  # added 4-12 xuan li
 id  INTEGER NOT NULL,
 data   blob,
 primary key(id)
);

Then I use
mysql_create_2{ ClipBoard,
    1,2,
    int,id,
    string, data
};

If I use this clipBoard class to access table. Sometimes there is a
error. I think string (the data type i am using) is not ok for blob. So
what is the right datatype for blob.

I know string is ok for text.

Thanks

Xuan Li


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to