Le Hyaric Bruno <[email protected]> wrote: > But is there someone who can tell me where can I plug my specific > operators?
You cannot provide your own operations, but you can provide your own functions: http://sqlite.org/c3ref/create_function.html Then you can write something like select blob_OR(blob1, blob2) from mytable; where blob_OR is your custom function. Igor Tandetnik _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

