PHP Class Pimcore\Model\Object\Data\KeyValue\Dao

Inheritance: extends Pimcore\Model\Dao\AbstractDao
Show file Open project: pimcore/pimcore

Public Methods

Method Description
create ( ) : boolean Create a new record for the object in database
createUpdateTable ( )
delete ( ) : void Deletes object from database
getTableName ( ) : string
init ( ) : void Get the valid columns from the database
load ( )
save ( ) : void Save object to database
update ( ) : void Save changes to database, it's an good idea to use save() instead

Method Details

create() public method

Create a new record for the object in database
public create ( ) : boolean
return boolean

createUpdateTable() public method

public createUpdateTable ( )

delete() public method

Deletes object from database
public delete ( ) : void
return void

getTableName() public method

public getTableName ( ) : string
return string

init() public method

Get the valid columns from the database
public init ( ) : void
return void

load() public method

public load ( )

save() public method

Save object to database
public save ( ) : void
return void

update() public method

Save changes to database, it's an good idea to use save() instead
public update ( ) : void
return void