Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: XML Sctructure
That works fine.... I don't know what the problem is .. as long as you
have a unique root element, then there should be no problem.
-----Original Message-----
Sami
Sent: Sunday, November 30, 2003 6:19 AM
To: Multiple recipients of list ORACLE-L
More than one line of what? Do you want to try something like below?
<?xml version="1.0"?> <!-- Exemplo de XML Endereco--> <!DOCTYPE lista_endereco SYSTEM "lista_endereco.dtd"> <lista_endereco> <endereco>
<titulo> rodolfo do Carmo Andrietta</titulo>
<primeironome>Eriovaldo</primeironome>
<ultimonome>Andrietta</ultimonome>
<logradouro>R Um</logradouro>
<cidade>Sao Paulo</cidade>
<estado>SP</estado>
<cep>01680-000</cep>
</endereco> <endereco>
<titulo> rodolfo do Carmo Andrietta</titulo>
<primeironome>Eriovaldo</primeironome>
<ultimonome>Andrietta</ultimonome>
<logradouro>R Um</logradouro>
<cidade>Sao Paulo</cidade>
<estado>SP</estado>
<cep>01680-000</cep>
</endereco>
-----Original Message-----
ecaforum
Sent: Sunday, November 30, 2003 3:39 AM
To: Multiple recipients of list ORACLE-L
Hi friend,
HI know that this forum is about Oracle, but i have a doubt and i
think thay someone can help me .
I have the xml sctructure below.
XML :
<?xml version="1.0"?> <!-- Exemplo de XML Endereco--> <!DOCTYPE lista_endereco SYSTEM "lista_endereco.dtd"> <lista_endereco> <endereco>
<titulo> rodolfo do Carmo Andrietta</titulo>
<primeironome>Eriovaldo</primeironome>
<ultimonome>Andrietta</ultimonome>
<logradouro>R Um</logradouro>
<cidade>Sao Paulo</cidade>
<estado>SP</estado>
<cep>01680-000</cep>
</endereco>
DTD
<!-- lista_endereco.dtd --> <!ELEMENT lista_endereco (endereco)> <!ELEMENT endereco (titulo, primeironome, ultimonome, logradouro,cidade, estado, cep)>
<!ELEMENT titulo (#PCDATA)> <!ELEMENT primeironome (#PCDATA)> <!ELEMENT ultimonome (#PCDATA)> <!ELEMENT logradouro (#PCDATA)> <!ELEMENT cidade (#PCDATA)> <!ELEMENT estado (#PCDATA)> <!ELEMENT cep (#PCDATA)>
My question is :
How can i do for use DTD and put more than 1 line in XML ?
Because like that, if i put one more line in xml it says that file is
invalid.
Any clue ?
Thanks.
Eriovaldo
-- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: ecaforum INET: ecaforum_at_itelefonica.com.br Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Sami INET: saminathans_at_myrealbox.com Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: nelson flores INET: nflores_at_expand.cl Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Sun Nov 30 2003 - 21:14:26 CST