forked from FelipeOAlbert/simplecrud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
banco.php
175 lines (153 loc) · 3.79 KB
/
banco.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<?php
/**
* Classe de conexão ao banco
*
* PHP version 5
*
* @category PHP
* @package Banco
* @author Albert <[email protected]>
* @copyright 1997-2005 The PHP Group
* @license http://www.php.net/license/3_01.txt PHP License 3.01
* @version SVN: 1.0.1
* @since File available since Release 1.0.1
* @deprecated File deprecated in Release 2.0.0
*/
namespace banco;
/**
* Banco
*
* Esta classe é responsável pela conexão ao banco de dados e suas
* diversas funcionalidades de crud
*/
class Banco
{
private $host = 'localhost';
private $db = 'crud';
private $user = 'root';
private $pass = '123qwe';
private $conexao = null;
private $query = null;
/**
* Class constructor
*
* @return void
*/
public function __construct()
{
return $this->conecta();
}
/**
* Method constructor
*
* @access public
* @return string
*/
public function conecta()
{
$this->conexao = mysql_connect($this->host, $this->user, $this->pass) or die(mysql_error());
$status = mysql_select_db($this->db, $this->conexao) or die(mysql_error());
return $status;
}
/**
* Method rodaquery
*
* @param string $query é requerida
*
* @access public
* @return void
*/
public function rodaquery($query)
{
$this->query = mysql_query($query) or die(mysql_error());
}
/**
* Method contaLinhas
*
* @access public
* @return string
*/
public function contaLinhas()
{
$linhas = mysql_num_rows($this->query);
return $linhas;
}
/**
* Method retornaDados
*
* @param bool $linha é requerida
*
* @access public
* @return array
*/
public function retornaDados($linha = false)
{
$retorno = array();
if ($linha) {
$retorno = mysql_fetch_assoc($this->query);
} else {
while ($dados = mysql_fetch_assoc($this->query)) {
$retorno[] = $dados;
}
}
return $retorno;
}
/**
* Method salvar
*
* @param numeric $id variavel requerida
* @param array $data variavel requerida
*
* @access public
* @return bool
*/
public function salvar($id, $data = array())
{
if (intval($id) > 0) {
$retorno = mysql_query('UPDATE funcionario SET nome="'.$this->limpaString($data['nome']).'", profissao="'.$this->limpaString($data['profissao']).'" WHERE id = "'.$id.'"') or die(mysql_error());
} elseif (is_string($id) == false) {
$retorno = mysql_query('INSERT INTO funcionario (nome, profissao) VALUES("'.$this->limpaString($data['nome']).'", "'.$this->limpaString($data['profissao']).'")') or die(mysql_error());
}
if (isset($retorno) and $retorno == true) {
return true;
}
return false;
}
/**
* Method apagar
*
* @param numeric $id variavel requerida
*
* @access public
* @return bool
*/
public function apagar($id)
{
$retorno = mysql_query('DELETE FROM funcionario WHERE id ="'.$id.'"');
return true;
}
/**
* Method limpaString
*
* @param string $value variavel requerida
*
* @access public
* @return string
*/
public function limpaString($value)
{
return mysql_real_escape_string($value);
}
/**
* Method limpaBanco
*
* @access public
* @return bool
*/
public function limpaBanco()
{
$this->rodaquery('TRUNCATE TABLE funcionario;');
return true;
}
}
$banco = new Banco();