Andrey Lobanov
Andrey Lobanov
@choallin I'm using modified version of ActiveRecord::Relation.update_all in my fork to make attributes work; ```ruby require 'active_record/relation' ActiveRecord::Relation.class_eval do prepend(RelationExtensions = Module.new do def update_all(updates) raise ArgumentError, "Empty list of...
You can create it like any other database. But you should keep in mind firebird sql syntax.
Currently using my fork with fb 3. Without any problems.
What especially do you mean? Please provide more information. And i think that this adapter is supporting fb 2.5 by default.
Example of problem: `ActiveRecord::StatementInvalid: Fb::Error: Undefined name Dynamic SQL Error SQL error code = -204 Table unknown PERMISSIONS At line 1, column 8 : INSERT INTO "PERMISSIONS" ("CONTROLLER", "ACTION", "DESCRIPTION",...
@rowland I think, i found a problem. The problem is that the created tables wasn't commited to db. And when some statements trying to do something with this tables, it...
Another problem that some queries is incorrect, because some firebird keywords not quoted and not in upcase, when table has columns with keyword names Example of bad query: `SELECT DISTINCT...
@rowland but the problem is, that quote_column_name not called for already defined string with sql ex(count(*) as count) ('where value = 3') and so on
@rowland Right now i'm trying to make my fork 3.3 of redmine work. Now it is working good, but not all of it's plugins. It is so sad, that redmine...
Fun part that redmine developers said, it is not their problem.