Re: [sqlite] Re: Merging two tables

2007-09-05 Thread RaghavendraK 70574
How to plug custom search algorthim within Sqlite? For example, select * from table where a = 'xxx'; Instead of using normal inbuilt search can it be userDefined function? regards ragha - To unsubscribe, send email

[sqlite] Re: Merging two tables

2007-09-05 Thread Igor Tandetnik
Scott Derrick <[EMAIL PROTECTED]> wrote: Whats the procedure and rules for merging two tables? Whatever you code them to be. There is no built-in mechanism for merging two tables, if that's what you are asking. You will have to design and implement any such mechanism yourself. Igor