Dear Perlmonks,
I am querying a sqlite database which contains XML data in a TEXT column using DBI.
Here is a sample of the data contained in that column:
<element xmlnssi="http://www.w3.org/2001/XMLSchema-instance" xmlnssd="http://www.w3.org/2001/XMLSchema"><items><item><data>some text here</data></item></items></element>
Although I can successfully retrieve the content of that column via a SELECT statement and performing some search and replace to get only the content of element/items/item/data, this is unsatisfactory:
my $myQuery = $dbh->prepare( "SELECT source FROM myTable" );
$source =~ s/<element xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema
+-instance\" xmlns:xsd=\"http:\/\/www.w3.org\/2001\/XMLSchema\"><items
+><item><data>//g;
$source =~ s/<\/data><\/item><\/items><\/element>//g;
I would like to be able to match the content of /element/items/item/data directly against a LIKE expression such as (pseudo-code):
( "SELECT ('/element/items/item/data') as source FROM myTable WHERE so
+urce LIKE '%some string%'" );
How could I achieve this? What modules would I need?
Thanks for your help.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.