Path: | doc/release_notes/4.30.0.txt |
Last Update: | Fri Oct 06 03:25:22 +0000 2017 |
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)