Is it possible to connect to a SQL database, e.g. a SQL Server database
, from javascript (client-side). Preferably using an ODBC
or OLEDB
connection.
I know this normally isn't recommended, and you should always connect from the server-side, but I want people to connect to their own SQL databases on their own local machines.
I have found examples to do this using ActiveX
objects, but this only works in Internet Explorer, and I don't want to be restricted by this.