
Visual Basic and Informix
Quote:
>We are desperately wanting to move from PowerBuilder to Visual Basic, but
>have only one problem: We need to be able to connect to Informix with
>something faster than an ODBC connection. Unless there are some ODBC
>drivers for Informix that actually work well with large amounts of data, we
>would need some OCX or native drivers that can connect to Informix. If
>there is anyone out there that has any ideas, I would greatly appreciate
>it. Thanks
I know of no such OCX system; knowing Informix, if there -is- anything
available, you'd probably be better off with an ODBC driver.
(Informix has decent database products, but they are utterly without a clue on
desktop products - see their New Era development environment.)
Given Visual Basic, bending over backward to avoid ODBC is likely to be a
time-consuming futile quest. Try Openlink's drivers; it's unlikely you'll
find anything faster.
With that said, keep in mind a couple more things: Visual Basic going through
the Jet engine to an ODBC driver to Informix is not going to be a speed demon.
For better efficiency, use passthrough mode (avoids for the most part the Jet
engine) - for maximum efficiency, use direct ODBC calls. Yes, this makes
database programming in VB more difficult - you lose most of the built-in
database support - but this certainly won't make it any more difficult than
the OCX monstrosity you seem to be contemplating. :-)
--