Giter VIP home page Giter VIP logo

Comments (3)

flash-gordon avatar flash-gordon commented on June 16, 2024

Right now schemas are used only for writing, ie for commands. But you can override an underlying dataset which keeps a list of columns for SELECTs with

dataset do |relation|
  pk_header = klass.primary_key_header(db, table)
  select(*relation.schema.attributes.keys).order(*pk_header.qualified)
end

This should work, but I didn't test it
You may find useful the default dataset implementation and the bootstrapping code

from rom-sql.

TiteiKo avatar TiteiKo commented on June 16, 2024

Thanks a lot!

Working snippet in case somebody else needs it someday:

class Users < ROM::Relation[:sql]
  schema :users, infer: false do
    attribute :id, Types::Int.meta(primary_key: true)
    attribute :email, Types::String
  end

  dataset do |relation|
    pk_header = relation.primary_key_header(db, :users)
    select(*relation.schema.attributes.keys).order(*pk_header.qualified)
  end
end
irb(main):003:0> rom.relation(:users)
=> #<Users dataset=#<Sequel::Postgres::Dataset: "SELECT \"id\", \"email\" FROM \"users\" ORDER BY \"users\".\"id\"">>

from rom-sql.

solnic avatar solnic commented on June 16, 2024

I'd appreciate if somebody could report an issue about using schema attrs
for the default dataset. It's a simple thing to do I believe.

On 8 October 2016 at 9:11:40 AM, Marion Duprey ([email protected])
wrote:

Closed #98 #98.


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
#98 (comment), or mute
the thread
https://github.com/notifications/unsubscribe-auth/AAAEKmOZ_i5HciRj5UzN3YpqqtyYQFNzks5qx8C8gaJpZM4KRvrK
.

from rom-sql.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.