Changeset 429 for trunk/admin/modules/Elezioni/aggiornadb.php
- Timestamp:
- Nov 9, 2024, 8:00:04 PM (5 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/modules/Elezioni/aggiornadb.php
r424 r429 241 241 $sql="update `".$prefix."_ele_lista` as t1 set t1.num_gruppo=(select t2.num_gruppo from `".$prefix."_ele_gruppo` as t2 where t2.id_gruppo=t1.id_gruppo) where t1.num_gruppo=0 and (select t2.num_gruppo from `".$prefix."_ele_gruppo` as t2 where t2.id_gruppo=t1.id_gruppo) is not null"; 242 242 $ret=aggiorna($sql,$dbi,'',$num); 243 echo "<br><span style=\"color: green;\">- La tabella ".$prefix."_ele_lista non richiede questo aggiornamento</span><br>";244 243 } 244 echo "<br><span style=\"color: green;\">- La tabella ".$prefix."_ele_lista Ú stata aggiornata</span><br>"; 245 245 if(!controllo($prefix.'_ele_lista','num_circ',++$num)) 246 246 { … … 289 289 $ret=aggiorna($sql,$dbi,'',$num); 290 290 }else echo "<br><span style=\"color: green;\">- La tabella ".$prefix."_ele_voti_candidati non richiede questo aggiornamento</span><br>"; 291 291 /*if(controllo($prefix.'_ele_candidati','num_lista',++$num)) 292 { 293 $sql="update `".$prefix."_ele_candidati` as t3 set t3.num_lista=(select t2.num_lista from `".$prefix."_ele_lista` as t2 left join `".$prefix."_ele_candidati` as t1 on t2.id_lista=t1.id_lista where t2.id_lista=t3.id_lista) where t3.num_lista=0"; 294 $ret=aggiorna($sql,$dbi,'',$num); 295 echo "<br>Aggiornata la tabella ".$prefix."_ele_candidati"; 296 }*/ 292 297 if(!controllo($prefix.'_ele_candidati','num_lista',++$num)) 293 298 { 294 299 $sql="ALTER TABLE `".$prefix."_ele_candidati` ADD `num_lista` INT(2) UNSIGNED NOT NULL AFTER `id_lista`"; 295 $ret=aggiorna($sql,$dbi,'',$num); 296 }else echo "<br><span style=\"color: green;\">- La tabella ".$prefix."_ele_candidati non richiede questo aggiornamento</span><br>"; 300 $sql2="update `".$prefix."_ele_candidati` as t1 set t1.num_lista=(select t2.num_lista from `".$prefix."_ele_lista` as t2 where t2.id_lista=t1.id_lista) where t1.num_lista=0 and (select t2.num_lista from `".$prefix."_ele_lista` as t2 where t2.id_lista=t1.id_lista) is not null"; 301 $ret=aggiorna($sql,$dbi,$sql2,$num); 302 }else{ 303 $sql="update `".$prefix."_ele_candidati` as t1 set t1.num_lista=(select t2.num_lista from `".$prefix."_ele_lista` as t2 where t2.id_lista=t1.id_lista) where t1.num_lista=0 and (select t2.num_lista from `".$prefix."_ele_lista` as t2 where t2.id_lista=t1.id_lista) is not null"; 304 $ret=aggiorna($sql,$dbi,'',$num); 305 } 306 echo "<br><span style=\"color: green;\">- La tabella ".$prefix."_ele_candidati Ú stata aggiornata</span><br>"; 297 307 298 308 if(!controllo($prefix.'_ele_sezioni','colore',++$num))
Note:
See TracChangeset
for help on using the changeset viewer.