Lines Matching defs:param
24 * @param filename the name of the database file
25 * @param mode open mode (e.g. SQLITE_OPEN_READONLY)
51 * @param filename the name of the database file
52 * @param mode open mode (e.g. SQLITE_OPEN_READONLY)
53 * @param vfs VFS name (for SQLite >= 3.5)
80 * @param filename the name of the database file
81 * @param mode open mode (e.g. SQLITE_OPEN_READONLY)
82 * @param vfs VFS name (for SQLite >= 3.5)
83 * @param ver2 flag to force version on create (false = SQLite3, true = SQLite2)
126 * @param filename the name of the auxiliary file or null
171 * @param sql the SQL statement to be executed
172 * @param cb the object implementing the callback methods
202 * @param sql the SQL statement to be executed
203 * @param cb the object implementing the callback methods
204 * @param args arguments for the SQL statement, '%q' substitution
258 * @param bh the object implementing the busy callback method
273 * @param ms number of millisecond to wait
288 * @param sql the SQL statement to be executed
289 * @param maxrows the max. number of rows to retrieve
328 * @param sql the SQL statement to be executed
340 * @param sql the SQL statement to be executed
341 * @param maxrows the max. number of rows to retrieve
342 * @param args arguments for the SQL statement, '%q' substitution
381 * @param sql the SQL statement to be executed
382 * @param args arguments for the SQL statement, '%q' substitution
395 * @param sql the SQL statement to be executed
396 * @param args arguments for the SQL statement, '%q' substitution
397 * @param tbl TableResult to receive result set
434 * @param sql the SQL statement to be checked
461 * @param name the name of the new function
462 * @param nargs number of arguments to function
463 * @param f interface of function
477 * @param name the name of the new function
478 * @param nargs number of arguments to function
479 * @param f interface of function
494 * @param name the name of the function whose return type is to be set
495 * @param type return type code, e.g. SQLite.Constants.SQLITE_NUMERIC
522 * @param error_code new error code
546 * @param error_code the error code
554 * @param enc name of encoding
570 * @param auth the authorizer function
585 * @param tr the trace function
599 * @param dest destination database
600 * @param destName schema of destination database to be backed up
601 * @param srcName schema of source database
623 * @param pr the trace function
639 * @param op operation code
640 * @param info output buffer, must be able to hold two
642 * @param flag reset flag
657 * @param op operation code
658 * @param info output buffer, must be able to hold two
660 * @param flag reset flag
676 * @param sql SQL statement to be compiled
692 * @param sql SQL statement to be compiled
693 * @param args arguments for the SQL statement, '%q' substitution
709 * @param sql SQL statement to be prepared
723 * @param db database name
724 * @param table table name
725 * @param column column name
726 * @param row row identifier
727 * @param rw if true, open for read-write, else read-only
749 * @param sql SQL statement
750 * @param vm Vm object
758 * @param sql SQL statement
759 * @param args arguments for the SQL statement, '%q' substitution
760 * @param vm Vm object
768 * @param sql SQL statement
769 * @param stmt Stmt object
777 * @param db database name
778 * @param table table name
779 * @param column column name
780 * @param row row identifier
781 * @param rw if true, open for read-write, else read-only
782 * @param blob Blob object
793 * @param n number of SQLite VM opcodes until callback is invoked
794 * @param p the object implementing the progress callback method
810 * @param ekey the key as byte array
824 * @param skey the key as String
848 * @param ekey the key as byte array
862 * @param skey the key as String
884 * @param onoff boolean to enable or disable shared cache
899 * @param d double value (julian date in SQLite3 format)
912 * @param s string (double value) (julian date in SQLite3 format)
928 * @param ms millisecond value of java.lang.Date
950 Class param[] = new Class[1];
951 param[0] = String.class;
953 param);