Class SQLiteCustomFunction

  • All Implemented Interfaces:

    
    public final class SQLiteCustomFunction
    
                        

    Describes a custom SQL function.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • SQLiteCustomFunction

        SQLiteCustomFunction(String name, int numArgs, SQLiteDatabase.CustomFunction callback)

        Create custom function.

        Parameters:
        name - The name of the sqlite3 function.
        numArgs - The number of arguments for the function, or -1 to support any number of arguments.
        callback - The callback to invoke when the function is executed.
    • Method Detail