Is the a ruby library that’s able to connect to the following kinds of
connection strings without needing to parse it. There is something in
C#, but I haven’t be able to find something in Ruby.
E.g.
Data
Source=myserver\SQL2008SERVER;Integrated%20Security=True;Enlist=False;database=mydatabase"
and
Server=myserver;UID=user;PWD=password;Enlist=false;Connection%20Reset=true;database=mydatabase"
I have tried using sequel and tinyds. Could someone help, please?