On 20/07/2009 11:05 PM, Le Hyaric Bruno wrote:
> Hi,
> 
> I'm making some testing with sqlite3.
> I need to know how bitwise operator work? with which type?
> Is that possible to use these operators on blob of thousands of bits?
> 
> To give an idea of the context, I need to store a lot of data (issued 
> from code coverage analysis).
> I'm trying to store this data as bit arrays (array of 200000 bits :-x).
> And I want to know if bitwise operators work with such arrays?

sqlite> select 1 | 2;
3
sqlite> select X'01' | X'02';
0

Doesn't look like it.

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to