-
Notifications
You must be signed in to change notification settings - Fork 0
/
alunos.class.php
212 lines (176 loc) · 3.97 KB
/
alunos.class.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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<?
//conectando
$host="localhost";
$user="root";
$pass="joselito";
$banco="sae";
include "adodb5/adodb.inc.php";
$cdb = &ADONewConnection('mysql');
$cdb->PConnect($host, $user, $pass, $banco);
global $cdb;
//fecha conectando
class Alunos {
//dados dos telefones
private $Id;
private $Ra;
private $Nome;
private $Numero;
private $Classe;
private $Escola;
private $Status;
/// setters
public function setId($Id){
$this->Id=$Id;
}
public function setRa($Ra){
$this->Ra=$Ra;
}
public function setNome($Nome){
$this->Nome=$Nome;
}
public function setNumero($Numero){
$this->Numero=$Numero;
}
public function setClasse($Classe){
$this->Classe=$Classe;
}
public function setEscola($Escola){
$this->Escola=$Escola;
}
public function setStatus($Status){
$this->Status=$Status;
}
// getters
public function getId(){
return $this->Id;
}
public function getRa(){
return $this->Ra;
}
public function getNome(){
return $this->Nome;
}
public function getNumero(){
return $this->Numero;
}
public function getClasse(){
include "classes.class.php";
$classe=new Classes;
$classe->setId($this->Classe);
$a=$classe->getSQLClasse();
return $a;
}
public function getEscola(){
include "escola.class.php";
$escola=new Escola;
$escola->setId($this->Escola);
$a=$escola->getEscola();
return $a;
}
public function getStatus(){
return $this->Status;
}
function getSQLAlunos(){
$sql="SELECT * FROM tb_alunos WHERE ";
$valor=$this->serializar();
if(count($valor)>0){
foreach($valor as $campo => $vlr){
$sql.=" ".$campo."='".$vlr."' AND ";
}
$sql=substr($sql,0,-4);
$rs=$GLOBALS["cdb"]->Execute($sql);
if($rs->_numOfRows>0){
while(!$rs->EOF){
$a=new Classe;
$a->setId($rs->fields["id"]);
$a->setRa($rs->fields["ra"]);
$a->setNome($rs->fields["nome"]);
$a->setNumero($rs->fields["numero"]);
$a->setClasse($rs->fields["classe"]);
$a->setEscola($rs->fields["escola"]);
$a->setStatus($rs->fields["classe_status"]);
$b[]=$a;
$rs->MoveNext();
}
} else {
print $GLOBALS["cdb"]->ErrorMsg();
$b=NULL;
}
} else {
$b=NULL;
}
return $b;
}
public function salvar(){
if ($this->getId() == 0){
return $this->insere();
} else {
return $this->update();
}
}
private function insere(){
$sql="INSERT INTO tb_alunos (";
$valor=$this->serializar();
foreach($valor as $campo => $vlr){
$sql.=" ".$campo.", ";
}
$sql=substr($sql,0,-2).") VALUES (";
foreach($valor as $campo => $vlr){
$sql.=" '".$vlr."', ";
}
$sql=substr($sql,0,-2).")";
if($GLOBALS["cdb"]->Execute($sql)){
return $GLOBALS["cdb"]->Insert_ID();
} else {
$err[]=$GLOBALS["cdb"]->ErrorMsg();
return false;
}
}
public function delete(){
$sql ="DELETE FROM tb_alunos WHERE id = '".$this->getId()."'";
if($GLOBALS["cdb"]->Execute($sql)){
$this->setId(0);
}
}
private function update(){
if($this->Id>0){
$sql="UPDATE tb_alunos SET ";
$valor=$this->serializar();
foreach($valor as $campo => $vlr){
$sql.=" ".$campo."='".$vlr."', ";
}
$sql=substr($sql,0,-2)." WHERE id='$this->Id'";
if($GLOBALS["cdb"]->Execute($sql)){
return $this->Id;
} else {
print $GLOBALS["cdb"]->ErrorMsg();
return false;
}
}
}
private function serializar(){
if($this->Id!=NULL){
$valor["id"]=$this->Id;
}
if($this->Ra!=NULL){
$valor["ra"]=$this->Ra;
}
if($this->Nome!=NULL){
$valor["nome"]=$this->Nome;
}
if($this->Numero!=NULL){
$valor["numero"]=$this->Numero;
}
if($this->Classe!=NULL){
$valor["classe"]=$this->Classe;
}
if($this->Escola!=NULL){
$valor["escola"]=$this->Escola;
}
if($this->Status!=NULL){
$valor["status"]=$this->Status;
}
return $valor;
}
}
?>