Re: [sqlite] User-defined infix functions

2009-11-04 Thread Jay A. Kreibich
On Wed, Nov 04, 2009 at 01:50:40AM +0100, Jean-Christophe Deschamps scratched on the wall: > Is it currently possible to specify that a user-defined function is of > type infix, using the extension framework? No. > Would it be possible to have this feature someday, possibly as an > optional

Re: [sqlite] User-defined infix functions

2009-11-03 Thread John Crenshaw
Deschamps Sent: Tuesday, November 03, 2009 7:51 PM To: SQLite mailing list Subject: [sqlite] User-defined infix functions Is it currently possible to specify that a user-defined function is of type infix, using the extension framework? It would be really easier to use, say a Unicode-aware LIKE n

Re: [sqlite] User-defined infix functions

2009-11-03 Thread Jean-Christophe Deschamps
´¯¯¯ >In your specific example you could simply define a custom "LIKE" >function, and LIKE could become Unicode aware without any goofy new >operators. `--- Yes of course, but I'm doing so to keep the possibility to use the native operator as well.