Search found 1 match
- 11.09.2007, 19:33
- Forum: SQLite
- Topic: inserting/modifying non displayable charackters
- Replies: 1
- Views: 1276
inserting/modifying non displayable charackters
When defining a field in a table as char(1) or wider because it is not really relevant for sqlite since it knows only TEXT. Then I want to insert values like chr(9) chr(0) and many others because I see a char as a value between -127 upto 127 I have to do this like follows. INSERT INTO T VALUES(x'09'...