Re: [sqlite] Create a function to limit results based on conditions

2004-05-06 Thread Brad Campbell
George Ionescu wrote: Hello SQLite users, Hello Dr. Hipp, I would like to implement my own RegExp functions (to limit results based on conditions). From my understanding, sqlite_create_function cannot be used for this (the function can only return a value; it cannot tell sqlite not to return a row)

[sqlite] Create a function to limit results based on conditions

2004-05-06 Thread George Ionescu
Hello SQLite users, Hello Dr. Hipp, I would like to implement my own RegExp functions (to limit results based on conditions). From my understanding, sqlite_create_function cannot be used for this (the function can only return a value; it cannot tell sqlite not to return a row). What is the appr