dflix/crudpdo

PDO中的CRUD

dev-master 2021-05-29 20:51 UTC

This package is auto-updated.

Last update: 2024-09-29 05:56:39 UTC


README

PDO中的CRUD

//在数据库中创建 $create = new Source\Create(); $create->ExeCreate($Tabela, $Dados);

//从数据库读取 $read = new Source\Read(); $read->ExeRead($Tabela, $Termos, $ParseString);

//在数据库中更新 $update = new Source\Update(); $update->ExeUpdate($Tabela, $Dados, $Termos, $ParseString);

//在数据库中删除 $delete = new Source\Delete(); $delete->ExeDelete($Tabela, $Termos, $ParseString);