PHP 클래스 yajra\Oci8\Query\OracleBuilder

상속: extends Illuminate\Database\Query\Builder
파일 보기 프로젝트 열기: yajra/laravel-oci8 1 사용 예제들

공개 메소드들

메소드 설명
insertLob ( array $values, array $binaries, string $sequence = 'id' ) : integer Insert a new record and get the value of the primary key.
updateLob ( array $values, array $binaries, string $sequence = 'id' ) : boolean Update a new record with blob field.
whereIn ( string $column, mixed $values, string $boolean = 'and', boolean $not = false ) : Builder | OracleBuilder Add a "where in" clause to the query.

보호된 메소드들

메소드 설명
runSelect ( ) : array Run the query as a "select" statement against the connection.

메소드 상세

insertLob() 공개 메소드

Insert a new record and get the value of the primary key.
public insertLob ( array $values, array $binaries, string $sequence = 'id' ) : integer
$values array
$binaries array
$sequence string
리턴 integer

runSelect() 보호된 메소드

Run the query as a "select" statement against the connection.
protected runSelect ( ) : array
리턴 array

updateLob() 공개 메소드

Update a new record with blob field.
public updateLob ( array $values, array $binaries, string $sequence = 'id' ) : boolean
$values array
$binaries array
$sequence string
리턴 boolean

whereIn() 공개 메소드

Split one WHERE IN clause into multiple clauses each with up to 1000 expressions to avoid ORA-01795
public whereIn ( string $column, mixed $values, string $boolean = 'and', boolean $not = false ) : Builder | OracleBuilder
$column string
$values mixed
$boolean string
$not boolean
리턴 Illuminate\Database\Query\Builder | OracleBuilder