Thank you.
Could you clarify - IsFunctionRegistered() method checks only functionName uniqueness or takes into account several parameters (paramCount, functionType, etc..)?
As far as I know functionName must be unique for a connection - so I cannot add my own FLOOR function with 3 parameters for example - right?
			
									
									
						User defined functions support
Re: User defined functions support
There are two overloads:
			
									
									
						Code: Select all
    public bool IsFunctionRegistered(string name, int argumentCount = 0)
    public bool IsFunctionRegistered(SQLiteFunction function)Re: User defined functions support
Thank you. 
It's working perfectly.
			
									
									
						It's working perfectly.