|
Do they suck? I can't recall any game sequel sucking?
Started by Husky on
, 11 posts
by 6 people.
Answer Snippets (Read the full thread at rarewarecentral):
So no, I don't think they're alike, some are self-contained, like Kid... .
Game sequels usually rock, and if they're good they're sure to bring smiles to the players, but when a sequel sucks, it can be pretty bad.
sequel, it's awesome.
|
|
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 project? (Besides the obvious ones like no AR validations...
Started by Sam Saffron on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Sequel the database connection....
I'd be more inclined, if I felt Sequel was the stronger option, to hold off for Rails 3.0 that execute can't deal with?
Any examples we could look at?
Disclaimer: I'm the Sequel maintainer.
For a start.
|
|
Are there any alternatives to sequel orm when working on Sinatra based app
Started by Subba Rao on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you wish you can use Datamapper.
AFAIK, you are not forced to use Sequel with Sinastra.
|
Ask your Facebook Friends
|
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 => 'root', :host => 'localhost', :database => 'scanty',:password=>...
Started by Subba Rao on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Depending on your.
It's a conflict? See http://groups.google.com/group/sequel-talk/browse_thread/thread/ee39640a92351f1 to install the native mysql driver, the pure ruby one is not compatible with Sequel.
|
|
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.)
Started by t6d on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Nor Ruby nor SQL.
If you're using Sequel::Model, the Serialization plugin should do the trick.
|
|
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, or you restart Apache.
There's not a lot of documentation...
Started by jimeh on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
So instead we do:
DB = Sequel.mysql("...")
Then we simply use....
It was rather stupid, we initialized Sequel in a before filter in Sinatra.
I wrapped the Sequel stuff in a tiny wrapper and reuse this wrapper, like this:
get '/api/:call' do.
|
|
Can any one volunteer why the class below fails?
... src/model/user.rb:18: undefined method `set_schema' for User:Class (NoMethodError) I've looked in the Sequel-3.0 lib/ folder and the set_schema method is defined in a ClassMethods module.
I'm sure the...
Started by will on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Require 'sequel' require 'logger' LOGGER = Object.new() def LOGGER.method_missing( name, args ) puts "[#{name}] #{args}" end **Sequel', :loggers => [LOGGER] ) class User &....
The answer is to call up the plug-in for schema managing .
|
|
I'm trying to get migrations set up in Ramaze. I'm coming from doing mostly Rails stuff, but I wanted to give something else a shot. Anyway, I've got a directory in my project called "migrations" with a start.rb file and then my migrations. Here's start...
Answer Snippets (Read the full thread at stackoverflow):
This....
You can't use Sequel::Model.plugin :migration because migration is not a model plugin, it is a core extension.
Here's my solution:
http://github.com/mwlang/ramaze-sequel-proto-experimental
Run "rake -T" to see template at the moment.
|
|
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 assumes that they are local dates and then they are...
Answer Snippets (Read the full thread at stackoverflow):
This information has been taken from the Sequel RDoc
Sequel.
Just had a very similar issue myself.
|
|
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 the DB are required (no CRUD operations).
I am trying...
Answer Snippets (Read the full thread at stackoverflow):
I've not used Ruby's Sequel, but I've used.
A pretty specific table of sums and other items...
|