Path: | doc/release_notes/4.30.0.txt |
Last Update: | Sun Oct 02 21:06:53 +0000 2016 |
Album.eager(:tracks=>proc{|ds| ds.clone(:eager_limit=>5)}).all
DB[:table].insert_ignore.insert(:a=>1, :b=>2) # INSERT OR IGNORE INTO TABLE (a, b) VALUES (1, 2) DB[:table].insert_conflict(:replace).insert(:a=>1, :b=>2) # INSERT OR REPLACE INTO TABLE (a, b) VALUES (1, 2)