2
votes
1answer
39 views
Rails & MSSQL 2008 - Will We Hit Barriers?
The company I am working for is looking to switch platforms from ColdFusion 8 / Windows to Ruby on Rails / Linux. Our database solution will remain as MSSQL 2008 on Windows. I will likely follow up …
0
votes
1answer
12 views
ActiveRecord hating a particular column? (Bizarre)
Hey guys,
I've been working on a web app lately, and Activerecord has started creeping me out- for the most part it's awesome, but it has taken to treating a particular column like a leper.
…
0
votes
1answer
18 views
Rails ActiveRecord - eager loading (sort of) when using ‘build’ from has_many
I have a situation where children are built but not saved, and are then being used in the view with references to the parent. This leads to extensive use of rails record caching. I'd like to have the …
0
votes
0answers
20 views
Chained has_many through: users -> roles -> lists. Finding lists that a user is assigned to (via roles).
It must be a very common problem. I have a chained many-to-many relationship like this:
User n<==>n Role n<==>n List
ActiveRecord models:
class User
# linking to roles
has_many …
0
votes
2answers
26 views
ruby on rails undefined method(s) for active record ..
(in /Users/sayedgamal/apps/test)
/Users/sayedgamal/apps/test/config/boot.rb:20:Warning: Gem::SourceIndex#search support for String patterns is deprecated
== CreatePeople: migrating …
0
votes
1answer
35 views
Ruby on Rails. How to show record only once?
Hello.
I want to know how to show a record only exactly after it was created. So i want to show it only once.
Just see. I have model called Claim. User creates new Claim (user is anonymous). I want …
0
votes
3answers
48 views
Passing @object into a rails partial render
I have a partial:
'profiles/_show.html.erb'
that contains code like
<%= @profile.fullname %>
I'm trying to render the partial but I'm not sure how to pass the @profile. I tried using local …
1
vote
1answer
27 views
ActiveRecord nested SELECT — can I do it without manual SQL?
I have a table with (among other things) a name and a rank. I'd like to return the set of all unique names, but for each name returned, I'd like to pick the row with the highest rank. This is simple …
0
votes
3answers
31 views
Active Record: Get two random objects?
What's the simplest way to get an array with three objects (Card), one of which I already have? The other two should be randomly selected from the database.
My current approach looks like this:
[
…
0
votes
3answers
71 views
Rails + C# - Reusing Models
I'm working on a project that has a website in Rails and a C# GUI that use the same database and data models. I'd like to share the (active)models between the two parts. Any ideas on how this is …
1
vote
2answers
49 views
Higher level database layer for Android?
Are there any good database abstraction layers/object relational mappers/ActiveRecord implementations/whatever they are called for Android? I'm aware that db4o is officially supported, but it has …
1
vote
2answers
50 views
Problem with has_many :through and fields_for.
Hi There,
I have a pretty basic association:
# user.rb
class User < ActiveRecord::Base
has_many :services, :through => :subscriptions
has_many :subscriptions, :accessible => true
…
0
votes
2answers
29 views
Rails has_one :through assignments trigger a “undefined method `update_attributes’” error.
I can't figure out why rails has_one :through associations don't accept assignments. Here is the error:
>> u = User.new
=> #<User id: nil, created_at: nil, updated_at: nil>
>> …
0
votes
1answer
26 views
problem with delete when multiple columns
hiya
when deleteing this works:
orderitems.Delete(x => x.orderitem_sessionid == transkey);
however this does not work
orderitem.Delete(x => x.orderitem_sessionid == transkey
…
1
vote
1answer
31 views
After upgrading to Castle Trunk and NHibernate 2.1.0.4000 My Integration tests crash TestDriven.Net
I have an old MonoRail/ActiveRecord I've been doing some work too.
Recently I decided to upgrade the application to Castle Trunk & NHibernate 2.1.0.4000 GA and I'm now finding a few issues with …
