summaryrefslogtreecommitdiff
path: root/tests/unit/Data/DbCommon/SqliteColumnTest.php
blob: 88117e9ed48784bc39f5691a0a7582aafdffca29 (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
30
31
32
<?php
Prado::using('System.Data.*');
Prado::using('System.Data.Common.Sqlite.TSqliteMetaData');
Prado::using('System.Data.DataGateway.TTableGateway');

/**
 * @package System.Data.DbCommon
 */
class SqliteColumnTest extends PHPUnit_Framework_TestCase
{
	/**
	 * @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());
	}
}