Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.tools -> RE: Problem inserting the string "agenda"

RE: Problem inserting the string "agenda"

From: Santi Rodríguez <srodriguez_at_ondarambla.es>
Date: 2000/08/11
Message-ID: <8n0dd3$947$1@diana.bcn.ttd.net>#1/1

I think that I'm doing all of this but I'm executing this from an asp page.

the table is the next one:

create table SECCION

    IDSECCION number(7),
    TITULO varchar2(50) CONSTRAINT nn_TITULO_SECCION NOT NULL,     URL varchar2(30) CONSTRAINT nn_URL_SECCION NOT NULL,     IDPROGRAMA number(4) CONSTRAINT nn_IDPROGRAMA_FORMADO_PROGRAMA NOT NULL,     CONSTRAINT pk_SECCION PRIMARY KEY (IDSECCION),     CONSTRAINT fk_FORMADO_PROGRAMA FOREIGN KEY (IDPROGRAMA) REFERENCES PROGRAMA(IDPROGRAMA)
);

And the sql instructions that I've made are:

insert into seccion values(71,'La agenda','agenda',95);

update seccion set titulo='La agenda',url='agenda' where idseccion=52; Received on Fri Aug 11 2000 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US