Hi,
I tried to use odbcsql. Unfortunately there is no example in the documentation. In Python I use odbc(with pyodbc) like this:
import pyodbc
cnxn = pyodbc.connect('DSN=MYDSN;PWD=MYPASSWORD') cursor = cnxn.cursor() query = "SELECT name FROM table" cursor.execute(query) names = cursor.fetchall()
How would I write that in Nim?
Thanks for the response.
I want to connect to a Sybase Anywhere 12 database. That is not possible with the libraries you mentioned, isn't it?