create_function method

int create_function(
  1. PtrSqlite3 db,
  2. String zFunctionName,
  3. int nArg,
  4. int eTextRep,
  5. PtrVoid pApp,
  6. PtrDefpxFunc xFunc,
  7. PtrDefpxFunc xStep,
  8. PtrDefxFinal xFinal,
)

Cross platform interface api for sqlite3_create_function

Implementation

int create_function(
        cpf.PtrSqlite3 db,
        String zFunctionName,
        int nArg,
        int eTextRep,
        cpf.PtrVoid pApp,
        cpf.PtrDefpxFunc xFunc,
        cpf.PtrDefpxFunc xStep,
        cpf.PtrDefxFinal xFinal) =>
    _sqlite.create_function(db, zFunctionName, nArg, eTextRep, pApp, xFunc, xStep, xFinal);