blob: 246c4a27f520cc119546974fef592d4723b69b6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php
Prado::using('System.Data.*');
Prado::using('System.Data.Common.Sqlite.TSqliteMetaData');
Prado::using('System.Data.DataGateway.TTableGateway');
class SqliteColumnTest extends UnitTestCase
{
/**
* @return TSqliteMetaData
*/
function meta_data()
{
$conn = new TDbConnection('sqlite:c:/test.db');
return new TSqliteMetaData($conn);
}
function test_it()
{
//$table = $this->meta_data()->getTableInfo('foo');
//var_dump($table);
}
function test_table()
{
$conn = new TDbConnection('sqlite:c:/test.db');
//$table = new TTableGateway('Accounts', $conn);
// var_dump($table->findAll()->readAll());
}
}
?>
|