Re: [Haskell-cafe] haskell - db, on Solaris

2007-07-12 Thread Daniil Elovkov
Thanks, all. I forgot, that Takusen uses OCI, not ODBC, sorry. I'm getting it now. |'ve looked more closely at HSQL, also. Indeed, it uses native interfaces, as Alistair pointed out. And since it supports both Oracle and MySql, I think it will be my first try. Typeful queries are not important

[Haskell-cafe] haskell - db, on Solaris

2007-07-11 Thread Daniil Elovkov
Hello fokls Would you please tell me, what would be my choice if I wanted to interact with MySql and Oracle from a Haskell program on Solaris? Thank you ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org

Re: [Haskell-cafe] haskell - db, on Solaris

2007-07-11 Thread Bryan O'Sullivan
Daniil Elovkov wrote: Would you please tell me, what would be my choice if I wanted to interact with MySql and Oracle from a Haskell program on Solaris? http://www.haskell.org/haskellwiki/Applications_and_libraries/Database_interfaces If you want to talk to MySQL, you have a few choices.

Re: [Haskell-cafe] haskell - db, on Solaris

2007-07-11 Thread Daniil Elovkov
2007/7/11, Bryan O'Sullivan [EMAIL PROTECTED]: Daniil Elovkov wrote: Would you please tell me, what would be my choice if I wanted to interact with MySql and Oracle from a Haskell program on Solaris? http://www.haskell.org/haskellwiki/Applications_and_libraries/Database_interfaces If you

Re: [Haskell-cafe] haskell - db, on Solaris

2007-07-11 Thread Alistair Bayley
http://www.haskell.org/haskellwiki/Applications_and_libraries/Database_interfaces If you want to talk to MySQL, you have a few choices. HDBC has an ODBC interface that lets you use any ODBC provider, so you'll be able to talk to both MySQL and Oracle with it. HaskellDB can bridge to

Re: [Haskell-cafe] haskell - db, on Solaris

2007-07-11 Thread Bryan O'Sullivan
Daniil Elovkov wrote: Yes, thanks. But the emphasis was on Solaris. I don't quite understand what is the common way to access databases on Solaris. Is it odbc? ODBC is a standard, fairly portable database interface. Since HDBC has ODBC bindings, it can in principle talk to any database that