PHP 클래스 Bluz\Db\Query\Insert

상속: extends AbstractBuilder, use trait Bluz\Db\Query\Traits\Set
파일 보기 프로젝트 열기: bluzphp/framework 1 사용 예제들

공개 메소드들

메소드 설명
execute ( null $sequence = null ) : integer | string | array
getSql ( ) : string
insert ( string $table ) : Insert Turns the query being built into an insert query that inserts into a certain table

메소드 상세

execute() 공개 메소드

public execute ( null $sequence = null ) : integer | string | array
$sequence null
리턴 integer | string | array

getSql() 공개 메소드

public getSql ( ) : string
리턴 string

insert() 공개 메소드

Example $ib = new InsertBuilder(); $ib ->insert('users') ->set('name', 'username') ->set('password', md5('password'));
public insert ( string $table ) : Insert
$table string The table into which the rows should be inserted
리턴 Insert instance