Open
Description
I can connect to my server using
conn = DBInterface.connect(FunSQL.DB{ODBC.Connection},
"Driver={ODBC Driver 18 for SQL Server};server=xxxx.database.windows.net;database=xxxx;UID=xxxx;Authentication=ActiveDirectoryInteractive;Encrypt=yes;",
dialect = :sqlserver)
, and can query the database OK with handwritten sql.
However, the FunSQL catalog object is not populated with any tables; so From(:xxsymbol)
just throws a FunSQL.ReferenceError
All the table names in my database have a dot in them, I wonder if that has any impact?