Steve Lawson

Results 6 comments of Steve Lawson

Replace insert_sql = ActiveRecord::Base.send(... with: ``` insert_sql = 'INSERT INTO %s(plugin_name, version) VALUES(%s, %s)' % [ Desert::PluginMigrations::Migrator.schema_migrations_table_name, ActiveRecord::Base.connection.quote(plugin_name), ActiveRecord::Base.connection.quote(Integer(migration_version.split("_").first.sub(/^0*/, '')))] execute insert_sql ```

taryneast monkey-patch originally worked for us - but it also broke the ability to use model finds in migrations. SomeModel.find(:all) fails with: SELECT \* FROM `bases`

> Is there any plan to add back ODBC support? Microsoft supplies a multiplatform ODBC driver which supports, for example, Multi-Subnet failover, which FreeTDS does not seem to natively support....

We've been trying to make this work as well. We use GSS-SPNEGO and code that looks like this: ``` def sasl_gss_spnego(user, password, domain=nil) raise Net::LDAP::Error, "Invalid binding information" unless user...

Channel binding is an SSL/TLS concept only. LDAP signing and sealing is a non-secure only concept too. On Thu, Jun 18, 2020 at 3:26 AM Bohdan Malets wrote: > I...

LDAPServerIntegrity and LdapEnforceChannelBinding are mutually exclusive. The reason your example didn't work is you changed LdapEnforceChannelBinding from 1 to 2. If you repeat that test with only changing LDAPServerIntegrity from...