0
votes
3answers
69 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 …
0
votes
3answers
39 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 …
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:
[
…
1
vote
1answer
26 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 …
1
vote
2answers
47 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 …
0
votes
2answers
28 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>
>> …
1
vote
2answers
44 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
…
1
vote
1answer
28 views
‘Unknown key(s): having’ In Ruby on Rails ActiveRecord Find Method
I have a project which needs to use an agregrate function to sort and return relevant records from one of my active record models. Problem is, despite seeing it used on numerous rails tutorials, and …
0
votes
1answer
24 views
Rails has_many through singular association
This is probably quite simple but I haven't yet been able to wrap my head around the problem.
I have 3 tables... (well more than that) but in this scenario 3 that matter.
Places
Bookings and
Ratings
…
1
vote
1answer
29 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 …
2
votes
1answer
25 views
help with rails associations
I want to implement a messaging system for my app.
I have users.
What exactly should I do?
create a messages model with foreign two user foreign keys??.. what would be the most approproate way of …
0
votes
1answer
24 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
…
0
votes
2answers
26 views
Multiple databases in Rails
Can this be done? In a single application, that manages many projects with SQLite.
What I want is to have a different database for each project my app is managing.. so multiple copies of an …
1
vote
3answers
43 views
has_many in Rails uses a JOIN
My understanding of the has_many relationship in Rails is that it will use a JOIN to find related rows. If I were implementing this from scratch I would have created a relational table. Am I correct …
1
vote
3answers
44 views
testing and establish_connection
Hi,
could you tell me plz - how to write tests for projects, which uses in model establish_connection to connect another database?
