Bonjour,
Cette documentati
ioguix/ = 7 Décembre, 2007 - 09:25
Bonjour,
Cette documentation n'est pas encore officielle mais cependant accessible et répond je pense à votre question :
http://docs.postgresqlfr.org/8.3/datatype-xml.html
http://docs.postgresqlfr.org/8.3/functions-xml.html
ou en anglais :
http://www.postgresql.org/docs/8.3/static/datatype-xml.html
http://www.postgresql.org/docs/8.3/static/functions-xml.html
Bonne lecture,
--
Guillaume 'ioguix' de Rorthais
[ Vous devez
vous connecter pour poster des commentaires ]
Bonjour
Christophe Chauvet/ = 7 Décembre, 2007 - 11:46
Bonjour
Pour le 1) seule la documentation PostgreSQL contient les informations sur l'utilisation de XML.
Pour le 2) y'a rien de compliquer, voici un exemple.
CREATE TABLE test
(
a xml
);
INSERT INTO test (a) VALUES ('<foo bar="AA">content1</foo>');
INSERT INTO test (a) VALUES ('<foo bar="BB">content2</foo>');
INSERT INTO test (a) VALUES ('<foo bar="CC">content3</foo>');
INSERT INTO test (a) VALUES ('<foo bar="DD">content4</foo>');
SELECT a, xpath('/foo/@bar', a), xpath('/foo/text()', a) FROM test
Ce qu'il faut bien comprendre c'est le fonctionnement de XPath.
Cordialement.
Christophe Chauvet
KrysKool.org
Membre de PostgreSQLfr
[ Vous devez
vous connecter pour poster des commentaires ]