If I have a base windows xp system, ruby and an ms access 2007 file (say c:/foo/bar.accdb) file, what's the least intrusive method for reading that .accdb file.
- What needs to be installed on the xp system.
- What is the specific connection string.
|
|
If I have a base windows xp system, ruby and an ms access 2007 file (say c:/foo/bar.accdb) file, what's the least intrusive method for reading that .accdb file.
|
||
|
|
|
|
You could use ADO via Ruby's win32ole library. Complete details and code can be found here. |
||
|
|
|
|
You may use the Ruby library Sequel (http://sequel.rubyforge.org/documentation.html) , it has ADO adapter |
||
|
|
|
|
Something along these lines should get you started. Of course, you'll need to modify some of the values like; path, filename, SQLstatement, etc.
|
||
|
|
|
|
If you can use ADO then you will find the ADO libraries already installed on a Windows XP box (otherwise distribute MDAC). Then all you need is the ACE dlls plus its OLE DB Provider, available for free from the Microsoft Download Center: |
||
|
|
|
|
As this blog post explains it (Ruby on Windows: Using Ruby & ADO to Work with MS Access Databases, you can use ADO to connect to the MS Access 2007 database. |
||
|
|