1 | <?php |
||
7 | class OracleBuilder extends Builder |
||
8 | { |
||
9 | /** |
||
10 | * Insert a new record and get the value of the primary key. |
||
11 | * |
||
12 | * @param array $values |
||
13 | * @param array $binaries |
||
14 | * @param string $sequence |
||
15 | * @return int |
||
16 | */ |
||
17 | 6 | public function insertLob(array $values, array $binaries, $sequence = 'id') |
|
31 | |||
32 | /** |
||
33 | * Update a new record with blob field. |
||
34 | * |
||
35 | * @param array $values |
||
36 | * @param array $binaries |
||
37 | * @param string $sequence |
||
38 | * @return boolean |
||
39 | */ |
||
40 | 6 | public function updateLob(array $values, array $binaries, $sequence = 'id') |
|
56 | |||
57 | /** |
||
58 | * Add a "where in" clause to the query. |
||
59 | * Split one WHERE IN clause into multiple clauses each |
||
60 | * with up to 1000 expressions to avoid ORA-01795 |
||
61 | * |
||
62 | * @param string $column |
||
63 | * @param mixed $values |
||
64 | * @param string $boolean |
||
65 | * @param bool $not |
||
66 | * @return \Illuminate\Database\Query\Builder|\Yajra\Oci8\Query\OracleBuilder |
||
67 | */ |
||
68 | 9 | public function whereIn($column, $values, $boolean = 'and', $not = false) |
|
87 | |||
88 | /** |
||
89 | * Run the query as a "select" statement against the connection. |
||
90 | * |
||
91 | * @return array |
||
92 | */ |
||
93 | 27 | protected function runSelect() |
|
105 | } |
||
106 |