08/KukSQLite_01.php
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
2 <html>
3 <head>
4 <meta http-equiv="Author" content="Imrich BURANSKY" />
5 <meta http-equiv="Content-Type" content="text/html; charset=Windows-1250" />
6 <title>Metody SQLiteDatabase</title>
7 </head>
8 <body>
9 <h3>Metódy triedy SQLiteDatabase</h3>
10 <pre>
11 <?php
12 $db = new SQLiteDatabase ("kuk.sqlite");
13 print_r( get_class_methods( $db ) );
14 ?>
15 </pre>
16 </body>
17 </html>
18 <!-- Vysledok
19
20 Metódy triedy SQLiteDatabase
21 Array
22 (
23 [0] => __construct
24 [1] => query
25 [2] => queryExec
26 [3] => arrayQuery
27 [4] => singleQuery
28 [5] => unbufferedQuery
29 [6] => lastInsertRowid
30 [7] => changes
31 [8] => createAggregate
32 [9] => createFunction
33 [10] => busyTimeout
34 [11] => lastError
35 [12] => fetchColumnTypes
36 )
37
38 -->