UniDac Provider for SAP HANA 2.0+

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
Johan.Swart
Posts: 15
Joined: Tue 05 Jan 2010 11:33
Location: South Africa

UniDac Provider for SAP HANA 2.0+

Post by Johan.Swart » Tue 10 Oct 2017 14:58

Hi,

Anyone know if SAP HANA 2.0+ database connection is in the working?

I urgently require a connection to SAP HANA 2.0+ and was hoping that my trusted UniDac drivers will be first out of the blocks before everyone else.

Regards,
Johan

MaximG
Devart Team
Posts: 1822
Joined: Mon 06 Jul 2015 11:34

Re: UniDac Provider for SAP HANA 2.0+

Post by MaximG » Wed 11 Oct 2017 12:31

You can work with SAP HANA using UniDAC with ODBC Provider. To do this, you can use the DSN and the ConnectString property:

Code: Select all

UniConnection.ConnectString: = 'Provider Name = ODBC; Server = <your DSN>; User ID = LABSQ; Password = ***';
or set the parameters as follows:

Code: Select all

UniConnection.Server: = 'Provider Name = ODBC; DRIVER = {HDBODBC32}; SERVERNODE = {hxehost: 30041}; UID = LABSQ; PWD = ***';

Post Reply