Dsy Network www | forum | my | didattica | howto | wiki | el goog | stats | blog | dona | rappresentanti
Homepage
 Register   Calendar   Members  Faq   Search  Logout 
.dsy:it. : Powered by vBulletin version 2.3.1 .dsy:it. > Didattica > Corsi A - F > Basi di dati ~ informatica triennale > Help trigger in MySql
  Last Thread   Next Thread
Author
Thread    Expand all | Contract all    Post New Thread    Post A Reply
Collapse
Paul03
.arcimaestro.

User info:
Registered: Feb 2005
Posts: 290 (0.04 al dì)
Location: Oleggio
Corso: Informatica
Anno: 3
Time Online: 1 Day, 19:39:12 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged
Help trigger in MySql

Ciao come da oggetto non riesco a fare i trigger per l'occupazione delle sale e per l'aggiornamento del conto. Qualcuno mi sa aiutare? Ho già installato la versione più recente di mysql nella quale hanno introdotto i trigger. Quindi il problema è che non riesco proprio a farli a livello di codice. Mi sapete aiutare?

24-09-2008 14:35
Click Here to See the Profile for Paul03 Click here to Send Paul03 a Private Message Find more posts by Paul03 Add Paul03 to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
eriron76
.simpatizzante.

User info:
Registered: Jan 2008
Posts: 11 (0.00 al dì)
Location: dormelletto
Corso: Informatica
Anno: terzo
Time Online: 1:27:12 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

ciao, non so come hai costruito la base di dati, ma sulla mia ho fatto così:

CREATE TRIGGER NomeTrigger BEFORE INSERT ON prenotazione
FOR EACH ROW BEGIN
DECLARE contoutente INTEGER;
SELECT Conto INTO contoutente FROM utente WHERE ID = NEW.IDutente;
if (contoutente > 0)
then
UPDATE utente SET Conto = Conto - 0.2 WHERE ID = NEW.IDutente;
UPDATE spettacolo SET Data = Data, PostiLiberi = PostiLiberi - 1 WHERE ID = NEW.IDspettacolo;
SET NEW.Valido = 1;

end if;
END;
//

Dove la colonna valido in spettacoli mi serve per convalidare la prenotazione se il credito dell'utente è superiore a 0.

A me funziona, non so se per te va bene

ciao

29-09-2008 10:38
Click Here to See the Profile for eriron76 Click here to Send eriron76 a Private Message Find more posts by eriron76 Add eriron76 to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
All times are GMT. The time now is 19:55.    Post New Thread    Post A Reply
  Last Thread   Next Thread
Show Printable Version | Email this Page | Subscribe to this Thread | Add to Bookmarks

Forum Jump:
Rate This Thread:

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are ON
[IMG] code is ON
 

Powered by: vBulletin v2.3.1 - Copyright ©2000 - 2002, Jelsoft Enterprises Limited
Mantained by dsy crew (email) | Collabora con noi | Segnalaci un bug | Archive | Regolamento | Licenze | Thanks | Syndacate
Pagina generata in 0.028 seconds (77.51% PHP - 22.49% MySQL) con 25 query.