You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to run sql-ts against a ms sql 2008 server, but I was not able to go past the adapter query where it gets all the table info for a database Adapters/mssql.ts#L6 and #L14.
I successfully passed through that by changing the case to upper case:
Cheers. I've changed the case to uppercase and pushed as 0.2.4. I think this could be a collation issue with case sensitive table names. As far as I'm aware all versions of MSSQL have uppercase system names so this shouldn't cause any issues.
I was trying to run
sql-ts
against a ms sql 2008 server, but I was not able to go past the adapter query where it gets all the table info for a database Adapters/mssql.ts#L6 and #L14.I successfully passed through that by changing the case to upper case:
#L6
const query = db('INFORMATION_SCHEMA.TABLES')
and #L14const query = db('INFORMATION_SCHEMA.COLUMNS')
I do not now how this change affects other versions of SQL server.
The text was updated successfully, but these errors were encountered: