Nathan Biggs wrote:
> Does anyone know where there is information on adding custom functions 
> to sqlite?  I have been using the CreateAggregate function to define my 
> custom function, but just wanted to see if it was faster by re-compiling 
> sqlite with the function in it already.  I have the sqlite source code 
> and have been able to compile it without issues.  I am just looking for 
> where do I add my custom function in the code.
> 

Nathan,

You would do that by adding a CreateAggregate call in func.c, the same 
as SQLite uses for its builtin aggregate functions. It will be no faster 
than what you have now.

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

Reply via email to