1: <?php
2:
3: 4: 5: 6:
7:
8: namespace Nette\Database\Drivers;
9:
10: use Nette;
11:
12:
13: 14: 15: 16: 17:
18: class OdbcDriver extends Nette\Object implements Nette\Database\ISupplementalDriver
19: {
20:
21:
22:
23:
24: 25: 26:
27: public function delimite($name)
28: {
29: return '[' . str_replace(array('[', ']'), array('[[', ']]'), $name) . ']';
30: }
31:
32:
33: 34: 35:
36: public function formatBool($value)
37: {
38: return $value ? '1' : '0';
39: }
40:
41:
42: 43: 44:
45: public function formatDateTime( $value)
46: {
47: return $value->format('#m/d/Y H:i:s#');
48: }
49:
50:
51: 52: 53:
54: public function formatLike($value, $pos)
55: {
56: $value = strtr($value, array("'" => "''", '%' => '[%]', '_' => '[_]', '[' => '[[]'));
57: return ($pos <= 0 ? "'%" : "'") . $value . ($pos >= 0 ? "%'" : "'");
58: }
59:
60:
61: 62: 63:
64: public function applyLimit(& $sql, $limit, $offset)
65: {
66: if ($limit >= 0) {
67: $sql = preg_replace('#^\s*(SELECT|UPDATE|DELETE)#i', '$0 TOP ' . (int) $limit, $sql, 1, $count);
68: if (!$count) {
69: throw new Nette\InvalidArgumentException('SQL query must begin with SELECT, UPDATE or DELETE command.');
70: }
71: }
72:
73: if ($offset) {
74: throw new Nette\NotSupportedException('Offset is not supported by this database.');
75: }
76: }
77:
78:
79: 80: 81:
82: public function normalizeRow($row)
83: {
84: return $row;
85: }
86:
87:
88:
89:
90:
91: 92: 93:
94: public function getTables()
95: {
96: throw new Nette\NotImplementedException;
97: }
98:
99:
100: 101: 102:
103: public function getColumns($table)
104: {
105: throw new Nette\NotImplementedException;
106: }
107:
108:
109: 110: 111:
112: public function getIndexes($table)
113: {
114: throw new Nette\NotImplementedException;
115: }
116:
117:
118: 119: 120:
121: public function getForeignKeys($table)
122: {
123: throw new Nette\NotImplementedException;
124: }
125:
126:
127: 128: 129:
130: public function getColumnTypes(\PDOStatement $statement)
131: {
132: return Nette\Database\Helpers::detectTypes($statement);
133: }
134:
135:
136: 137: 138:
139: public function isSupported($item)
140: {
141: return $item === self::SUPPORT_SUBSELECT;
142: }
143:
144: }
145: