1

I am trying to compile a ODBC software with the unix-odbc library which I installed with the following command on Ubuntu 16.04.

apt-get install unixodbc-dev unixodbc-bin unixodbc

The library worked fine until I tried to call SQLCancelHandle in my software. And I started to get:

error: undefined reference to 'SQLCancelHandle'

After investigation, I realized that in sql.h the function was defined in the package. (call with the wrong parameters issue into an error of compilation complaining about the parameters)

My conclusion is the shared library associated with doesn't implement the function.

Question: Where am I supposed to put issue about Ubuntu packages? Is it possible to suggest a fix?

0 Answers0