/usr/share/perl5/DBIx/XML_RDB.pm is in libdbix-xml-rdb-perl 0.05-11.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | package DBIx::XML_RDB;
use strict;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %XMLCHARS $REXMLCHARS);
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(); # Not exporting anything - this is OO.
$VERSION = '0.05';
use DBI;
sub new {
my $this = shift;
my $class = ref($this) || $this;
my $self = {};
bless $self, $class;
$self->Initialise(@_) || return undef;
return $self;
}
%XMLCHARS = (
'&' => '&',
'<' => '<',
'>' => '>',
'"' => '"',
);
sub xmlenc {
my $str = shift;
$str =~ s/([&<>"])/$XMLCHARS{$1}/ge;
return $str;
}
sub Initialise {
my $self = shift;
$self->{datasource} = shift;
my $driver = shift;
my $userid = shift;
my $password = shift;
my $dbname = shift;
$self->{verbose} = shift;
$self->{dbh} = DBI->connect("dbi:$driver:". $self->{datasource}, $userid, $password);
if (!$self->{dbh}) {
print STDERR "Connection failed\n";
return 0;
}
if ($dbname) {
if(!$self->{dbh}->do("use $dbname")) {
print STDERR "USE $dbname failed\n";
return 0;
}
}
$self->{output} = "<?xml version=\"1.0\"?>\n";
$self->{output} .= "<DBI driver=\"". xmlenc($self->{datasource}) . "\">\n";
return 1;
}
sub DESTROY {
my $self = shift;
$self->{dbh}->disconnect;
}
sub DoSql {
my $self = shift;
my $sql = shift;
$self->{sth} = $self->{dbh}->prepare($sql) || die $self->{dbh}->errstr;
$self->{sth}->execute || die $self->{sth}->errstr;
$self->_CreateOutput;
$self->{sth}->finish;
}
sub _CreateOutput {
my $self = shift;
my $fields = $self->{sth}->{NAME};
# Now insert the actual data.
$self->{output} .= "\t<RESULTSET statement=\"". xmlenc($self->{sth}->{Statement}) ."\">\n";
my $row = 0;
my @data;
while (@data = $self->{sth}->fetchrow_array) {
print STDERR "Row: ", $row++, "\n" if $self->{verbose};
my $i = 0;
$self->{output} .= "\t\t<ROW>\n";
foreach my $f (@data) {
if (defined $f) {
$self->{output} .= "\t\t\t<" . $fields->[$i] . '>' . xmlenc($f) . '</' . $fields->[$i] . ">\n";
}
$i++;
}
$self->{output} .= "\t\t</ROW>\n";
}
$self->{output} .= "\t</RESULTSET>\n";
}
sub GetData {
my $self = shift;
my $output = $self->{output} . "</DBI>\n";
# Return output to starting state, in case we want to do more...
$self->{output} = "<?xml version=\"1.0\"?>\n";
$self->{output} .= "<DBI driver=\"" . xmlenc($self->{datasource}) . "\">\n";
return $output;
}
1;
__END__
=head1 NAME
DBIx::XML_RDB /- Perl extension for creating XML from existing DBI datasources
=head1 SYNOPSIS
use DBIx::XML_RDB;
my $xmlout = DBIx::XML_RDB/->new($datasource,
"ODBC", $userid, $password, $dbname) || die "Failed to make new xmlout";
$xmlout/->DoSql("select * from MyTable");
print $xmlout/->GetData;
=head1 DESCRIPTION
This module is a simple creator of XML data from DBI datasources. It allows you to
easily extract data from a database, and manipulate later using XML::Parser.
One use of this module might be (and will be soon from me) to extract data on the
web server, and send the raw data (in XML format) to a client's browser, and then
use either XML::Parser from PerlScript, or MSXML from VBScript/JavaScript on the
client's machine to generate HTML (obviously this relies upon using MS IE for their
Active Scripting Engine, and MSXML comes with IE5beta).
Another use is a simple database extraction tool, which is included, called sql2xml.
This tool simply dumps a table in a database to an XML file. This can be used in
conjunction with xml2sql (part of the XML::DBI(?) package) to transfer databases
from one platform or database server to another.
Binary data is encoded using UTF-8. This is automatically decoded when parsing
with XML::Parser.
Included with the distribution is a "Scriptlet" /- this is basically a Win32 OLE
wrapper around this class, allowing you to call this module from any application
that supports OLE. To install it, first install the scriptlets download from
microsoft at http://msdn.microsoft.com/scripting. Then right-click on XMLDB.sct
in explorer and select "Register". Create your object as an instance of
"XMLDB.Scriptlet".
=head1 FUNCTIONS
=head2 new
new ( $datasource, $dbidriver, $userid, $password [, $dbname] )
See the DBI documentation for what each of these means, except for $dbname which
is for support of Sybase and MSSQL server database names (using "use $dbname").
=head2 DoSql
DoSql ( $sql )
Takes a simple Sql command string (either a select statement or on some DBMS's can be
a stored procedure call that returns a result set /- Sybase and MSSql support this,
I don't know about others).
This doesn't do any checking if the sql is valid, if it fails, the procedure will "die",
so if you care about that, wrap it in an eval{} block.
The result set will be appended to the output. Subsequent calls to DoSql don't overwrite
the output, rather they append to it. This allows you to call DoSql multiple times before
getting the output (via GetData()).
=head2 GetData
Simply returns the XML generated from this SQL call. Unfortunately it doesn't stream out
as yet. I may add this in sometime in the future (this will probably mean an IO handle
being passed to new()).
The format of the XML output is something like this:
<?xml version="1.0"?>
<DBI driver="dbi:Sybase:database=foo">
<RESULTSET statement="select * from Table">
<ROW>
<Col1Name>Data</Col1Name>
<Col2Name>Data</Col2Name>
...
</ROW>
<ROW>
...
</ROW>
</RESULTSET>
<RESULTSET statement="select * from OtherTable">
...
</RESULTSET>
</DBI>
This is quite easy to parse using XML::Parser.
=head1 AUTHOR
Matt Sergeant, matt@sergeant.org
=head1 SEE ALSO
XML::Parser
=cut
|