Jump to content
Fórum Script Brasil
  • 0

HELP


skastor

Question

-- SQLite --

Minha tabela é a seguinte:

DROP TABLE IF EXISTS ESTOJO ;

CREATE TABLE ESTOJO (

Enome TEXT(3) ,

Etamanho INTEGER NOT NULL ,

Eqtde_livre INTEGER ,

PRIMARY KEY (Enome)

);

Eu gostaria fazer inserçoes assim :

INSERT INTO ESTOJO ( Enome , Etamanho ) VALUES ('ES1' , 3 ) ;

mudando apenas os valores.

Eu quero que quando se inserir um ESTOJO A, automaticamente seu campo Eqtde_livre = Etamanho.

Sei que posso fazer isso com a linguagem de programacao da interface, mas gostaria de encapsular no BD. Tentei fazer com um TRIGGER :

/********************

* TRIGGER3

*

* ao se inserir um estojo, Eqtde_livre <- Etamanho

*****/

DROP TRIGGER IF EXISTS TRIGGER3 ;

CREATE TRIGGER TRIGGER3 AFTER INSERT ON ESTOJO

BEGIN

new.Eqtde_livre = new.Etamanho ;

END ;

Mas dá erro : " sqlite error 1 - near 'new': syntax error "

Alguém sabe como fazer isso em SQL ?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Tentei outro triggerdepois de dar uma pesquisada :

DROP TRIGGER IF EXISTS TRIGGER3 ;

CREATE TRIGGER TRIGGER3 AFTER INSERT ON ESTOJO

for each row

when ( new.Etamanho <> 0 )

update ESTOJO SET Eqtde_livre = Etamanho where Enome = new.Enome ;

Tambem não funciona, não sei porque

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...