Tagged Questions

Sequel is a "database toolkit" for the Ruby programming language that provides abstractions over many SQL RDBMS. Among its features, it offers: a simple DSL to create SQL statements; ORM mapping and model validation; database schema migrations; and more!

learn more… | top users | synonyms

14
votes
6answers
2k views

When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying

A colleague of mine is currently designing SQL queries like the one below to produce reports, which are displayed in excel files through an external data query. At present, only reporting processes on ...
6
votes
2answers
403 views

Why use SQL builders? Arel v. Sequel v. T-SQL

I'm trying to understand the benefits of building SQL via an object-oriented builder DSL vs. parameterizing a raw SQL string. After researching/implementing the same query three ways, I notice that ...
4
votes
3answers
956 views

Heroku Problem During Database Pull of Rails App: Mysql::Error MySQL server has gone away

Attempting to pull my database from Heroku gives an error partway through the process (below). Using: Snow Leopard; heroku-1.8.2; taps-0.2.26; rails-2.3.5; mysql-5.1.42. Database is smallish, as you ...
3
votes
3answers
68 views

Are there any Ruby ORMs which use cursors or smart fetch?

I'm looking for an Ruby ORM to replace ActiveRecord. I've been looking at Sequel and DataMapper. They look pretty good however no of them seems to do the basic : not loading everything in memory when ...
3
votes
3answers
214 views

How to get rows as Arrays (not Hashes) in Sequel ORM?

In the Sequel ORM for Ruby, the Dataset class has an all method which produces an Array of row hashes: each row is a Hash with column names as keys. For example, given a table T: a b c ...
3
votes
5answers
349 views

Slicing params hash for specific values

Summary Given a Hash, what is the most efficient way to create a subset Hash based on a list of keys to use? h1 = { a:1, b:2, c:3 } # Given a hash... p foo( h1, :a, :c, :d ) # ...create ...
2
votes
1answer
61 views

How can I paginate across two tables using Sequel::Model?

For a change, I'm using a Ramaze, and therefore Sequel, based app instead of a Rails app. I have a model Tag which is many-to-many associated with :posts via a join table :taggings, and with ...
2
votes
2answers
96 views

Consider scaling on Rails, would you write hand coded SQL? Use Sequel gem?

If I wanted to scale a Rails application by distributing its database on a different machine based on its authorization rules (location and user roles). So any resource attributed to that location ...
2
votes
3answers
92 views

Running computation using multiple sub-selects in SQL

Is there a way to write this SQL query in SQL? select (select count(*) from a) / (select count(*) from b) as ratio; I've done the obvious: DB.fetch("select (select count(*) from a) / (select ...
2
votes
1answer
85 views

Pony and Sequel associations conflict?

I've run into an issue when using Pony and Sequel in a Sinatra application. Without Pony everything goes just fine, but just requiring Pony sequel's associations break. Here's my models for a blog: ...
2
votes
3answers
220 views

Need help in SQL and Sequel involving inner join and where/filter

Need help transfer sql to sequel: SQL: SELECT table_t.curr_id FROM table_t INNER JOIN table_c ON table_c.curr_id = table_t.curr_id INNER JOIN table_b ON table_b.bic = table_t.bic WHERE ...
2
votes
2answers
175 views

How to write this better? Ruby Sequel chaining OR

In SQL it should look like this: SELECT * FROM `categories_description_old` WHERE ((`categories_description` = '') OR (`categories_name` = '') OR (`categories_heading_title` = '')) My (ugly) ...
2
votes
1answer
322 views

proper way to run raw sql queries with sequel

I am not clear yet on the proper way to run raw sql queries with sequel currently I am trying this but not sure if it is the correct way DB.fetch("SELECT * FROM zone WHERE dialcode = '#{@dialcode}' ...
2
votes
1answer
358 views

Database abstraction/adapters for ruby

What are the database abstractions/adapters you are using in Ruby? I am mainly interested in data oriented features, not in those with object mapping (like active record or data mapper). I am ...
2
votes
3answers
551 views

What ORM to use in one process multiple db connections sinatra application?

Checked ActiveRecord, DataMapper, Sequel: some use globals (static variables) some require open db connection before loading source file with models. What ORM is better to use in sinatra application ...
2
votes
3answers
374 views

Best Ruby ORM for Wrapping around Legacy SQL Server Database?

I found this answer and it sounds like almost exactly what I'm doing. I have heard mixed answers about whether or not datamapper can support SQL Server through dataobjects. Basically, we have an app ...
2
votes
2answers
666 views

How can default values in Sequel Models be set?

Given the code below, how can default values be defined for the Model. (let's say the default for :name should be 'Thing'). require 'pp' require 'sequel' DB = Sequel.sqlite DB.create_table :items ...
2
votes
2answers
2k views

Unable to connect mysql from Sequel gem

When i try to connect to mysql from sequel. I am getting below errors? can you help me? require 'rubygems' require 'sequel' DB = Sequel.connect(:adapter => 'mysql', :user => ...
2
votes
3answers
427 views

Using UTC with Sequel?

I'd like to not store times in my local timezone, but Sequel is making it really tough on me. I can set them to UTC before I put them in there (a bit of a pain), but then when I take them back out it ...
1
vote
0answers
41 views

Right place for Sequel DB connection while working on Phusion Passenger with nginx

I have test app written on ruby, using Sinatra+Sequel. config.ru: require './main' run Sinatra::Application Example code: require 'sinatra' require 'haml' require 'sequel' ...
1
vote
1answer
43 views

How do I restrict the number of characters returned from a query using Sequel and Ruby?

My model is Article, and I want to display just a snippet of the body of the article, to give a preview of this particular article. How would I do that with Sequel? I thought it might be using ...
1
vote
1answer
177 views

Ruby EventMachine with PostgreSQL

I know that for mysql em-mysql exists as an asynchronous interface driver to MySQL and that Active Record, with some modification, can make immediate use of. I believe Sequel has this capability ...
1
vote
1answer
40 views

Is it possible to order by a non-selected column in Sequel?

Given a table t with columns c1, c2 and cx, I have a failing Sequel (version 3.27.0) query of the form: DB[:t].order(:cx).select{[:c1, :c2]} I don't need the values from cx in my output, I just ...
1
vote
3answers
115 views

Get inserted ID from Sequel prepare

I have a prepared insert statement in Sequel (using Oracle). prepared_statement = DB[:table_name].prepare(:insert, :name, :value=>:$value) When I call it the row gets added just fine. ...
1
vote
2answers
68 views

Connect and modify SQL server from Selenium using Ruby (no Rails)

I guess Selenium isn't that important to this question but I thought I'd add it in. Also, I'm not using Rails. I need to access Sqlserver and delete some records using ruby. Nothing too crazy. I've ...
1
vote
2answers
61 views

How do I update a table with fields selected from another table?

Although there are many questions similar to this, such as "Updating a record from another table", but i could not get this working. I have a query that selects and updates table ...
1
vote
2answers
181 views

How do I convert a JDBC:Oracle Date into a DateTime for Ruby?

I finally figured it out how to connect my Sinatra app via JDBC and Sequel to an existing Oracle database. Now my problem is that I would like to show the Date fields from the Oracle DB as Date with ...
1
vote
1answer
102 views

Sequel JsonSerializer conflicts with aliasing

In a Sinatra web application I am trying to get data from DB and convert them into object that is acceptable for UI (and finally to JSON). But there is some difference in names of attributes needed ...
1
vote
1answer
264 views

Rails 3 integrated with Sequel?

There appear to be at least four repos on github that claim to tie in Sequel to the latest Rails 3 beta. Has anyone successfully replaced ActiveRecord with Sequel in a Rails 3 project? Could you ...
1
vote
1answer
133 views

Sequel migration ran in heroku yields postgres type error

For some reason when I run my migrations in Heroku Sequel tries to create a row as string instead of varchar: PGError: ERROR: type "string" does not exist (Sequel::DatabaseError) LINE 1: ...erial ...
1
vote
1answer
537 views

Creating new record in Sequel via Sinatra

I have following model: DB.create_table :teams do primary_key :id column :name, :text, :unique=>true end DB.create_table :players do primary_key :id column :name, :text, ...
1
vote
2answers
379 views

Having difficulty catching postgresql exception in sequel/ruby

I have postgresql table that has somekind of unique constraint. I have ruby script that will update this table. The ruby script should be able to switch to UPDATE instead of INSERT when this kind of ...
1
vote
1answer
443 views

heroku db:push error uninitialized constant Sequel::Postgres::PGError [closed]

I have a problem running the heroku db:pull and db:push commands. My app is running Rails 3 on the bamboo-ree-1.8.7 stack. I am new to Sequel and am not sure what the script is complaining about. ...
1
vote
4answers
373 views

MacRuby, error when using Sequel

I have just installed Sequel using the command sudo macgem install sequel. It tells me sequel-3.18.0 was successfully installed. When I fire up xcode, and start a new MacRuby application, it sets up ...
1
vote
5answers
650 views

Sequel not working with postgres

I'm trying to migrate my Rails apps to PostGreSql in order to work in the same environnement as on heroku... I installed postgres, pg, and postgres-pr fine on my mac but I can't get Taps to pull my ...
1
vote
1answer
124 views

How do I get the number of affected rows after an update using Sequel?

Is it possible to get the number of affected rows, after updating data? Here a example: count = table_products.where(:status => 1).update(:status => 0) # is sth like this possible?
1
vote
2answers
2k views

heroku db:pull not working

heroku db:pull postgresql://root:@localhost/db_name After this command display this message /usr/lib/ruby/gems/1.8/gems/rest-client-1.6.1/lib/restclient/abstract_response.rb:50: warning: ...
1
vote
1answer
724 views

How do I pull heroku data into a local SQLite3 database? Running into problems

I'm trying to make a local backup of the data from my Rails app, which is deployed to Heroku, and running into problems. I followed the instructions here: http://docs.heroku.com/taps and installed ...
1
vote
1answer
495 views

Mysql / Ruby Sequel last insert ID value, what method?

I just want to get the last_insert_id() using Ruby's Sequel: insertret = @con.run("INSERT INTO `wv_persons` ( `id` ) VALUES ( NULL )") pp insertret.inspect # returns "nil", expected that.. ...
1
vote
1answer
316 views

activerecord to sequel transition

I'm using rails3.rc and activerecord3 (with meta_where) and just started to switch to sequel, because it seems to be muuuuch faster and offers some really great features :-) I'm already using the ...
1
vote
2answers
131 views

More complicated Sequel selections

There is a simple database in Sequel: DB = Sequel.sqlite DB.create_table :items do primary_key :id DateTime :date String :name end items = DB[:items] items.insert(:name => 'abc', ...
1
vote
1answer
414 views

How to disconnect an existing ruby sequel connection to a database?

I mean the one which was previously established as DB = Sequel.sqlite('my_blog.db') or DB = Sequel.connect('postgres://user:password@localhost/my_db') or DB = Sequel.postgres('my_db', :user ...
1
vote
2answers
243 views

Ruby Sequel: is there a last_insert_id method?

after an insert I need to know the ID from this row, how can I do that?
1
vote
2answers
521 views

Sharing a database connection with included classes in a Sinatra application

I'm converting a part of a rails application to its own sinatra application. It has some beefy work to do and rather than have a million helps in app.rb, I've separated some of it out into classes. ...
1
vote
2answers
443 views

How do I serialize data with Sequel and Ruby?

I have a table which should store an id, a name and a hash. How do I serialize the Hash? (I'm using Ruby and Sequel as ORM.)
1
vote
2answers
147 views

Accessing a database simultaneously from multiple applications using Sequel

If I use Sequel in a Ruby app like this: DB = Sequel.sqlite('testdb.db') does it make the database shared? Can I acces this same file from a different ruby app AT THE SAME TIME and get the database ...
1
vote
4answers
405 views

Any suggestions for a ruby solution for populating a sqlite database from a mysql source

I have a Rails application that uses MySQL. The application needs to populate sqlite databases to be distributed to client applications from the master mysql database. The schema for the sqlite ...
1
vote
2answers
883 views

Sequel in conjunction with ActiveRecord any gotchas?

I'm considering using Sequel for some of my hairier SQL that I find too hard to craft in Active Record. Are there any things I need to be aware of when using Sequel and ActiveRecord on the same ...
1
vote
1answer
217 views

Sequel selecting too many columns

It seems like the default select for Sequel is "select *", which causes all kinds of problems when you add some joins. At the very least you end up with the wrong ids in your objects (because there ...
1
vote
2answers
1k views

Sequel + Sinatra + Phusion Passenger + MySQL Connection Management

We are using Sinatra and Sequel for a small API implementation. The problem we have however is that on every page request Sequel opens new connections to MySQL, and keeps them open till they timeout, ...

1 2