1DB.execPrepared(3kaya) Kaya module reference DB.execPrepared(3kaya)
2
3
4
6 DB::execPrepared - Execute a prepared statement
7
9 DBResult execPrepared( DBStatement<a> statement, [String] params )
10
12 statement The prepared database statement
13
14 params A list of parameters to be inserted into the query. An Exception
15 may be thrown if the number of parameters does not match the expected
16 number. This version of the function may not be used to insert NULL
17 values.
18
20 Execute a prepared statement, replacing parameters as specified. A sin‐
21 gle prepared statement may be used by multiple execPrepared functions,
22 which increases efficiency.
23
25 Kaya standard library by Edwin Brady, Chris Morris and others
26 (kaya@kayalang.org). For further information see http://kayalang.org/
27
29 The Kaya standard library is free software; you can redistribute it
30 and/or modify it under the terms of the GNU Lesser General Public
31 License (version 2.1 or any later version) as published by the Free
32 Software Foundation.
33
35 DB.DBResult (3kaya)
36 DB.DBStatement (3kaya)
37 DB.exec (3kaya)
38 DB.execPrepared (3kaya)
39 DB.incExecPrepared (3kaya)
40 DB.prepare (3kaya)
41
42
43
44Kaya December 2010 DB.execPrepared(3kaya)