create_function_compat method
int
create_function_compat(
- PtrSqlite3 db,
- String name,
- int nArg,
- int eTextRep,
- PtrVoid pApp,
- PtrDefpxFunc xFunc,
- PtrDefpxFunc xStep,
- PtrDefxFinal xFinal,
- PtrDefxFree xDestroy,
Implementation
int create_function_compat(
cpf.PtrSqlite3 db,
String name,
int nArg,
int eTextRep,
cpf.PtrVoid pApp,
cpf.PtrDefpxFunc xFunc,
cpf.PtrDefpxFunc xStep,
cpf.PtrDefxFinal xFinal,
cpf.PtrDefxFree xDestroy) {
if (libVersionNumber >= 3007003) {
return create_function_v2(db, name, nArg, eTextRep, pApp, xFunc, xStep, xFinal, xDestroy);
}
return create_function(db, name, nArg, eTextRep, pApp, xFunc, xStep, xFinal);
}