本文整理汇总了PHP中Update::getRowCount方法的典型用法代码示例。如果您正苦于以下问题:PHP Update::getRowCount方法的具体用法?PHP Update::getRowCount怎么用?PHP Update::getRowCount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Update
的用法示例。
在下文中一共展示了Update::getRowCount方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Update
private function Update()
{
$Update = new Update();
$Update->ExeUpdate(self::entidade, $this->dados, "WHERE id = :id", "id={$this->id}");
if ($Update->getRowCount() >= 1) {
$this->error = ["O registro de <b>{$this->dados['nome']}</b> foi atualizado com sucesso!", WS_ACCEPT];
$this->result = true;
}
}
示例2: Update
private function Update()
{
$Update = new Update();
$Update->ExeUpdate(DB_EDUCANDOS, $this->Data, "WHERE educando_id = :id", "id={$this->EducandoId}");
if ($Update->getRowCount() >= 1) {
$this->Error = ["Educando foi atualizado com sucesso!", TW_ACCEPT];
$this->Result = true;
} else {
$this->Error = ["Erro ao realizar atualização!", TW_ERROR];
$this->Result = false;
}
}
示例3: Update
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<?php
require './_app/Config.inc.php';
$Dados = ['agent_name' => 'FireFox', 'agent_views' => '120'];
$update = new Update();
$update->ExeUpdate('ws_siteviews_agent', $Dados, "where agent_id = :id", 'id=5');
if ($update->getResult()) {
echo "{$update->getRowCount()} dado(s) atualizados com sucesso!<hr>";
}
$update->setPlaces('id=6');
$update->setPlaces('id=7');
$update->setPlaces('id=8');
// var_dump($update);
?>
</body>
</html>
示例4: Update
private function Update()
{
$Update = new Update();
$Update->ExeUpdate(DB_NUTRICAO_CATEGORIAS, $this->Data, "WHERE cat_id = :id", "id={$this->CatId}");
if ($Update->getRowCount() >= 1) {
$this->Error = ["Categoria foi atualizada com sucesso!", TW_ACCEPT];
$this->Result = true;
}
}
示例5: Update
private function Update()
{
$Update = new Update();
$Update->ExeUpdate(DB_PSICO_GRUPOS, $this->Data, "WHERE grupo_id = :id", "id={$this->GrupoId}");
if ($Update->getRowCount() >= 1) {
$this->Error = ["Grupo foi atualizado com sucesso!", TW_ACCEPT];
$this->Result = true;
}
}
示例6: updateUser
private function updateUser()
{
$ArrOnline = ['online_endview' => $_SESSION['useronline']['online_endview'], 'online_url' => $_SESSION['useronline']['online_url']];
$updateUser = new Update();
$updateUser->ExeUpdate('wm_siteviews_online', $ArrOnline, "WHERE online_session = :ses", "ses={$_SESSION['useronline']['online_session']}");
// Se o update nao for realizado com sucesso é por que a sessão foi morta então recria a sessão
if (!$updateUser->getRowCount()) {
$readSession = new Read();
$readSession->ExeRead('wm_siteviews_online', 'WHERE online_session = :onses', "onses={$_SESSION['useronline']['online_session']}");
if (!$readSession->getRowCount()) {
// Reinicializa a sessão do usuário
$this->setUser();
}
}
}
示例7: Update
private function Update()
{
$Update = new Update();
$Update->ExeUpdate(DB_VISITANTES, $this->Data, "WHERE visitante_id = :id", "id={$this->VisitanteId}");
if ($Update->getRowCount() >= 1) {
$this->Error = ["Visitante foi atualizado com sucesso!", TW_ACCEPT];
$this->Result = true;
}
}
示例8: UsuarioUpdate
private function UsuarioUpdate()
{
$ArrOnline = ['online_endview' => $_SESSION['useronline']['online_endview'], 'online_url' => $_SESSION['useronline']['online_url']];
$userUpdate = new Update();
$userUpdate->ExeUpdate('ws_siteviews_online', $ArrOnline, "where online_session = :ses", "ses={$_SESSION['useronline']['online_session']}");
if (!$userUpdate->getRowCount()) {
$readSes = new Read();
$readSes->ExeRead('ws_siteviews_online', "where online_session = :onses", "onses={$_SESSION['useronline']['online_session']}");
if (!$readSes->getRowCount()) {
$this->setUsuario();
}
}
}
示例9: Update
private function Update()
{
$Update = new Update();
$Update->ExeUpdate(DB_FAMILIA, array_merge($this->Pai, $this->Mae, $this->Data), "WHERE familia_id = :id", "id={$this->FamiliaId}");
if ($Update->getRowCount() >= 1) {
$Update->ExeUpdate(DB_FAMILIA_PAI_SITUACAO, $this->SituacaoPai, "WHERE familia_id = :id", "id={$this->FamiliaId}");
$Update->ExeUpdate(DB_FAMILIA_MAE_SITUACAO, $this->SituacaoMae, "WHERE familia_id = :id", "id={$this->FamiliaId}");
$this->updateResponsavel();
$this->Error = ["Família foi atualizada com sucesso!", TW_ACCEPT];
$this->Result = true;
}
}
示例10: Update
private function Update()
{
$Update = new Update();
$Update->ExeUpdate(DB_TURMAS, $this->Data, "WHERE turma_id = :id", "id={$this->TurmaId}");
if ($Update->getRowCount() >= 1) {
$this->Error = ["Turma foi atualizada com sucesso!", TW_ACCEPT];
$this->Result = true;
}
}
示例11: Update
private function Update()
{
$Update = new Update();
$Update->ExeUpdate(DB_NUTRICAO, $this->Data, "WHERE nutri_id = :id", "id={$this->NutriId}");
if ($Update->getRowCount() >= 1) {
$this->Error = ["Informação Nutricional foi atualizado com sucesso!", TW_ACCEPT];
$this->Result = true;
}
}
示例12: usuarioUpdate
private function usuarioUpdate()
{
$arrOnline = ['online_endview' => $_SESSION['patronatouseronline']['online_endview'], 'online_url' => $_SESSION['patronatouseronline']['online_url']];
$userUpdate = new Update();
$userUpdate->ExeUpdate(DB_SITEVIEWS_ONLINE, $arrOnline, "WHERE online_session = :ses", "ses={$_SESSION['patronatouseronline']['online_session']}");
if (!$userUpdate->getRowCount()) {
$readSes = new Read();
$readSes->ExeRead(DB_SITEVIEWS_ONLINE, "WHERE online_session = :onses", "onses={$_SESSION['patronatouseronline']['online_session']}");
if (!$readSes->getRowCount()) {
$this->setUsuario();
}
}
}
示例13: Update
private function Update()
{
$Update = new Update();
$Update->ExeUpdate(DB_PRODUTOS, $this->Data, "WHERE prod_id = :id", "id={$this->ProdId}");
if ($Update->getRowCount() >= 1) {
$this->Error = ["Produto foi atualizado com sucesso!", TW_ACCEPT];
$this->Result = true;
}
}
示例14: Update
private function Update()
{
$Update = new Update();
$Update->ExeUpdate(DB_FAMILIA_COMPOSICAO, $this->Data, "WHERE familia_id = :id AND id = :membro", "id={$this->FamiliaId}&membro={$this->Membro}");
if ($Update->getRowCount() >= 1) {
$this->Error = ["Membro da família foi atualizado com sucesso!", TW_ACCEPT];
$this->Result = true;
}
}
示例15: Update
private function Update()
{
$Update = new Update();
$Update->ExeUpdate(DB_CURSOS, $this->Data, "WHERE curso_id = :id", "id={$this->CursoId}");
if ($Update->getRowCount() >= 1) {
$this->Error = ["Curso foi atualizado com sucesso!", TW_ACCEPT];
$this->Result = true;
}
}