Difference between revisions of "Database"

From Blue-IT.org Wiki

(Installing in Ubuntu)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
= ODBC =
 
= ODBC =
 +
With ODBC you can connect to a lot of Databases, specially e.g. Microsoft Access but also e.g. Microsoft Excel from within Java (or other languages).
 +
 
== Installing in Ubuntu ==
 
== Installing in Ubuntu ==
  
Line 7: Line 9:
  
 
Unixodbc-dev: does necessary symlinks
 
Unixodbc-dev: does necessary symlinks
 +
 
Unixodbc-bin: installs a gui (''/usr/bin/ODBCConfig'')
 
Unixodbc-bin: installs a gui (''/usr/bin/ODBCConfig'')
 +
 
unixodb: the driver
 
unixodb: the driver
  
 
=== 2. Configure ===
 
=== 2. Configure ===
 
+
TODO
 
 
  
 
=== Resources ===
 
=== Resources ===
Line 20: Line 23:
 
* [http://semodesign.wordpress.com/2011/02/04/einrichten-eines-odbc-treibers-fur-ubuntu-10-10/]
 
* [http://semodesign.wordpress.com/2011/02/04/einrichten-eines-odbc-treibers-fur-ubuntu-10-10/]
 
* [http://www.easysoft.com/developer/interfaces/odbc/linux.html]
 
* [http://www.easysoft.com/developer/interfaces/odbc/linux.html]
 +
 +
[[Category:Database]]

Latest revision as of 19:39, 8 January 2012

ODBC

With ODBC you can connect to a lot of Databases, specially e.g. Microsoft Access but also e.g. Microsoft Excel from within Java (or other languages).

Installing in Ubuntu

1. Install

Install the following applications:

sudo apt-get install unixodbc-dev unixodbc-bin unixodbc

Unixodbc-dev: does necessary symlinks

Unixodbc-bin: installs a gui (/usr/bin/ODBCConfig)

unixodb: the driver

2. Configure

TODO

Resources