Difference between revisions of "MetaHDBC Install"

From HaskellWiki
Jump to navigation Jump to search
Line 36: Line 36:
 
You can use the popular open source databases [http://www.postgresql.org/ PostgreSQL], [http://www.mysql.com/ MySQL] and [http://www.sqlite.org/ SQLite] with MetaHDBC. They are all likely to be part of your Linux distribution. These databases in conjunction with MetaHDBC will provide you with SQL syntax check and it will give type inference for returned values. However, they will 'not' infer the types of positional parameters, as these databases do not support the ODBC function [http://msdn.microsoft.com/en-us/library/ms710188(VS.85).aspx SQLDescribeParam] properly.
 
You can use the popular open source databases [http://www.postgresql.org/ PostgreSQL], [http://www.mysql.com/ MySQL] and [http://www.sqlite.org/ SQLite] with MetaHDBC. They are all likely to be part of your Linux distribution. These databases in conjunction with MetaHDBC will provide you with SQL syntax check and it will give type inference for returned values. However, they will 'not' infer the types of positional parameters, as these databases do not support the ODBC function [http://msdn.microsoft.com/en-us/library/ms710188(VS.85).aspx SQLDescribeParam] properly.
   
For full type inference you can use [http://www.ibm.com/db2 DB2] or [http://www.microsoft.com/SQL/ MS SQL Server]. But I have not tested the latter. But I would like to encourage users with access to MS SQL Server to test MetaHDBC using this database server.
+
For full type inference you can use [http://www.ibm.com/db2 DB2] or [http://www.microsoft.com/SQL/ MS SQL Server]. But I have not tested the latter and I would therefore encourage users of MS SQL Server to test MetaHDBC.
   
 
== DB2 ==
 
== DB2 ==

Revision as of 09:35, 1 June 2008

This page is about installing MetaHDBC.

HDBC

MetaHDBC depends upon HDBC and HDBC-ODBC. You can install HDBC as a normal cabalized package, but for HDBC-ODBC you should do:

The patch makes it possible to call SQLDescribeParam and removes the need to execute a SQL query before getting type information.

Installing MetaHDBC

Running Test

After installation you can run some tests. They are located in the test directory. But beware, the tests drops tables, creates tables, and other data manipulation both at compile and run -time. So be sure that you do not accidentally destroy valuable data.

Before running the test you will need to install one or more databases. You can see the following section for some guidance.

In the file test/Test.hs you can decide which databases you want to test with.

In test/Metadata.hs you can set your data source names (DSN).

Database on Linux

To use MetaHDBC you will need a database. This section describes how to setup various databases for Linux.

You can use the popular open source databases PostgreSQL, MySQL and SQLite with MetaHDBC. They are all likely to be part of your Linux distribution. These databases in conjunction with MetaHDBC will provide you with SQL syntax check and it will give type inference for returned values. However, they will 'not' infer the types of positional parameters, as these databases do not support the ODBC function SQLDescribeParam properly.

For full type inference you can use DB2 or MS SQL Server. But I have not tested the latter and I would therefore encourage users of MS SQL Server to test MetaHDBC.

DB2

Using DB2 with MetaHDBC is attractive as DB2 supports the ODBC functions necessary for doing full type inference. The Express-C edition is also free of charge and Ubuntu makes DB2 Express-C available though their partner program.

DB2 Howto will help you install DB2. There are explanations for various flavors of Linux.

Before installing DB2 you should be given this fair warning. When I installed this .deb package, pointed to from the howto, the install script accidentally overwrote a file in /usr/include. This may or may not be true for the other types of packages pointed to from the howto.

The error is explained in more detail here.

Creating a database

To create a test database that MetaHDBC can use, do:

> su db2inst1 -l   # -l neccessary ?
> db2 create database <database name>
DB20000I  The CREATE DATABASE command completed successfully.

The database name must maximally be eight characters. Make a database called MHdbcDB2, if you want it to be usable from the MetaHDBC test programs.

UnixODBC setup

If you install the .deb package from above your /etc/odbcinst.ini should have added the following lines:

[DB2]
Description     = DB2 Driver
Driver          = /opt/ibm/db2exc/V9.5/lib32/libdb2.so
FileUsage       = 1
DontDLClose     = 1

and your /etc/odbc.ini should have this added:

[MHdbcDB2]
Description     = Test to DB2
Driver          = DB2
USER            = db2inst1
PASSWD          = <password of db2inst1 user>

The password is ibmdb2 if you have not changed it after installing DB2.

The UnixODBC.org site also has documentation for setting up ODBC for DB2.