On Thursday, June 21, 2012 8:12:23 AM UTC-7, Mario Ruiz wrote: > > hi... I'm trying to connect to an SQL Server from Linux and Windows with > Sequel, but I think the sql adapter is missing since it says: > sequel/adapters/sqlserver (Sequel::AdapterNotFound) > > I've been looking for adapters on internet and installing some of them,,,, > but nothing works > > You are probably using a connection string such as "sqlserver://...". That doesn't work because there is no "sqlserver" adapter. You can connect to Microsoft SQL Server via:
1) The tinytds adapter (recommended on MRI and Rubinius) 2) The jdbc adapter (recommended on JRuby) 3) The odbc adapter 4) The ado adapter (not recommended except for read-only workloads) 5) The dbi adapter (untested by me) Jeremy -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To view this discussion on the web visit https://groups.google.com/d/msg/sequel-talk/-/NdAUoXefva4J. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sequel-talk?hl=en.
