incoronado wrote:
I'm trying to insert text data that includes an underscore.  SQLite is
removing the underscore.  Is there any way to escape the underscore?
It works for me without any special escaping.

   sqlite> create table t(a text);
   sqlite> insert into t values ('_');
   sqlite> select * from t;
   _
   sqlite> insert into t values ('_2_');
   sqlite> insert into t values ('__4__');
   sqlite> select * from t;
   _
   _2_
   __4__
   sqlite>

HTH
Dennis Cote

-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to