Quoting Alessandro Coppelli ([EMAIL PROTECTED]):

>  I have this simple table
> 
> create table tbl  (
>      sid int not null auto_increment ,
>      filed1 LONGTEXT,
>     field2 LONGTEXT,
>    primary key (sid)
> )
> 
>  When I insert one item   ( insert into tbl values (filed1,filed2) )  I
> obtain  error .

Try

  insert into tbl ( field1, field2 ) values ( 'foo', 'bar' );

James

---------------------------------------------------------------------
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