Hi guys, I've actually restructured this library so it fits the nimble folder 
format, but haven't reuploaded it to github yet. There are a few minor changes 
that come along with this. For instance in results, now fields are attached to 
the result set rather than each row.

I've tested this up to Nim 0.17.1. I'll download the latest version, check for 
any problems then upload this to github.

@micheal, I think your problem is related to trying to set fields inside a var 
statement, so:
    
    
    var
        con = newODBCConnection()
        con.driver = "ODBC Driver 11 for SQL Server"
        con.host = "myHost"
        con.database = "myDB"
    

This is trying to declare a variables called "con.driver" and "con.host" which 
isn't possible.

Should be:
    
    
    var
        con = newODBCConnection()
    con.driver = "ODBC Driver 11 for SQL Server"
    con.host = "myHost"
    con.database = "myDB"
    

Reply via email to