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
However, as of commit 4842d2e, this implementation no longer works, as far as I see it.
This is because method #configure_connection was defined on SQLServerAdapter in that commit, which means that the example in the Readme will override this method, causing a call to super to invoke AbstractAdapter#configure_connection and not SQLServerAdapter#configure_connection (as intended).
The following adaptation of the example code works for me:
The following example code is proposed at the moment:
However, as of commit 4842d2e, this implementation no longer works, as far as I see it.
This is because method
#configure_connection
was defined onSQLServerAdapter
in that commit, which means that the example in the Readme will override this method, causing a call tosuper
to invokeAbstractAdapter#configure_connection
and notSQLServerAdapter#configure_connection
(as intended).The following adaptation of the example code works for me:
The text was updated successfully, but these errors were encountered: