MS Access stores all the tables and schema in a single .mdb file. It's more than possible that an OLE call exists to extract the schema by table. For example in ADO.Net, OleDbConnection.GetOleDbSchemaTable() method can be used to extract a schema.
you did not mention
- which os your using (implied by win32::odbc)
- assuming win32, what access drivers do you have?
- is the db encrypted? (no mention on site about this but could be a problem)
- what version of access files your using (mbt supports version 3/4)
method 1
DBIx::XML_RDB by matts - straight from the man docs ...
sql2xml.pl -sn myserver -driver myDriver -uid user -pwd seekrit -table user -output users.xml
here's a tute with code.
method 2
last ditch effort (requires linux box) you could try mbdtool to tackle step 4. here's a brief description of how to
generate the schema of a ms access file. (from cvs) It's license is LGPL but may have
limited availablity on win32 (base install requires glib2).
method 3read the discussion on
Microsoft access database on a Linux server from php (
'success on mdb tools odbc install' post by
lauram) using the MDBTools ODBC driver. Any reason this can't be done using perl?
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.