1: <?php
2:
3: /**
4: * This file is part of the Nette Framework (https://nette.org)
5: * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
6: */
7:
8: namespace Nette\Database\Drivers;
9:
10: use Nette;
11:
12:
13: /**
14: * Supplemental SQLite2 database driver.
15: */
16: class Sqlite2Driver extends SqliteDriver
17: {
18: public function formatLike($value, $pos)
19: {
20: throw new Nette\NotSupportedException;
21: }
22:
23:
24: public function getForeignKeys($table)
25: {
26: throw new Nette\NotSupportedException; // @see http://www.sqlite.org/foreignkeys.html
27: }
28:
29:
30: public function getColumnTypes(\PDOStatement $statement)
31: {
32: }
33: }
34: