Tagged Questions
0
votes
2answers
103 views
Stored procedures in Ruby on Rails
I am a .net guy with 6 years of experience. Recently I started working on ROR project and realized that stored procedures/sql functions are not being used at all. On inquiring about it I got to know ...
0
votes
1answer
31 views
ActiveRecord find the first record with a value AFTER a record with a certain value
I have a model, say Model, that has a column called state and the four possible states are A, B, C, and D.
Is it possible (with ActiveRecord) to write a method in the Model class that houses a single ...
0
votes
0answers
134 views
how to handle the dummy stored procedure using CURSOR to return value to the front end?
I want to create a CURSOR in a stored procedure to handle some dummy value. In the store I need to write a dummy query like if Select 1..... to display successful message and if its not 1 or some ...
0
votes
1answer
25 views
Proc in rails with INOUT
Mysql2::Error: OUT or INOUT argument 3 for routine database_name.proc_name is not a variable or NEW pseudo-variable in BEFORE trigger
So, I'm calling a proc basically by just doing
connection = ...
0
votes
1answer
801 views
how to call stored procedure in ruby on rails?
I am new to ROR. I want to call the Stored Procedure to process when I click the submit button in the VIEW.
Model:
-------
class Pro::DataImport < ActiveRecord::Base
...
9
votes
2answers
1k views
Why are stored procedures still not supported in Rails (3+)?
I am familiar with the long standing love-hate relationship between Ruby on Rails, DB(MS)-drivers and Stored Procedures and I have been developing Rails applications since version 2.3.2.
However, ...
1
vote
2answers
514 views
Cannot execute MySQL sql “source” command from Rake task using ActiveRecord
I wrote a stored procedure and want to execute it within a Rake task.
Before calling the stored procedure (through the "call" statement) I should create the procedure with the source command which ...
0
votes
2answers
75 views
Migrate data from old MySQL database
I recently rewrote a Java EE web application (running on a MySQL database) to Rails 3.1. The problem now is that the database model of the new application is not the same as the old one because I ...
5
votes
2answers
1k views
How to get output parameters from MySQL stored procedure in Rails?
I'm trying to get a output parameter from MySQL stored procedure, let's have look a example below:
1 In mysql I created this procedure and it works.
CREATE PROCEDURE sp_name (out id int)
Begin
...
0
votes
1answer
562 views
Calling Stored procedure through Rails?
How can i access Stored procedure created in Mysql through rails code?
I am currently using following versions for rails application:-
Rails 2.1.0
Ruby Enterprise Edition 2010.01
Thanks....
0
votes
1answer
104 views
How to implement automatic reflection of direct SQL Updates of the underlying database, in an ActiveRecord in Ruby on Rails?
I am new to Ruby on Rails and I have a (maybe naive) question:
I want to implement reflection of direct SQL Updates of the underlying database in an ActiveRecord (and finally in the generated html). ...
6
votes
1answer
3k views
Illegal mix of collations in stored procedure
my stored procedure in MySQL fails with Mysql::Error: Illegal mix of collations (utf8_general_ci,IMPLICIT) and (utf8_unicode_ci,IMPLICIT) for operation '='.
The procedure fails when in SELECT clause ...
4
votes
1answer
709 views
fetching multiple result sets from mysql stored procedure in rails
I've been searching all over for tips on this and have not really had any luck so far. With the mysql2 gem, trying to execute a stored procedure that returns multiple result sets gives me an unable to ...
0
votes
1answer
733 views
Error while invoking MySQL Stored procedure(that returns resultset) from Rails 3
I am invoking a stored procedure (MySQL) from my model. This stored procedure returns a resultset, but i get this error...
Mysql2::Error: PROCEDURE
my_db.sp_venue_nearby_with_questions
can't ...
0
votes
1answer
407 views
Pgsql Stored Procedures or Rails classes?
This is more to do with maintenance issues for a Rails app. Currently , it has a lot of stored procedures (Postgres -pgsql) and I 'm wondering if I should do away with them and translate them into ...
3
votes
2answers
4k views
How to call MySQL stored procedure from Rails?
Created a simple stored procedure in MySQL:
CREATE PROCEDURE `proc01`()
BEGIN
SELECT * FROM users;
END
Start Rails console:
$ script/console
Loading development environment (Rails 2.3.5)
>> ...
1
vote
2answers
727 views
Stored procedure, activerecord, and alternatives?
In a PowerBuilder-based project, there are overs three hundred stored procedures on a Microsoft SQL Server. It's a client-server application which relies a lot on PB's DataWindow.
Now, there is an ...
5
votes
1answer
2k views
Using Stored Procedures in Rails
As I said in a previous post, our Rails app has to interface with an E-A-V type of table in a third-party application that we're pulling data from. I had created a View to make the data normal but it ...
2
votes
3answers
222 views
Is it a bad idea to open a separate MySQL connection inside Rails' environment?
I'm in a situation where I need to make a call to a stored procedure from Rails. I can do it, but it either breaks the MySQL connection, or is a pseudo hack that requires weird changes to the stored ...
5
votes
3answers
6k views
Is it possible to call a MySQL stored procedure from Ruby?
When I try to call a stored procedure from Rails, I get this exception:
ActiveRecord::StatementInvalid: Mysql::Error: PROCEDURE pipeline-ws_development.match_save_all can't return a result set in the ...
