On Wednesday, April 23, 2014 9:00:19 AM UTC-7, [email protected] wrote: > > Unfortunately I can't use Models. But nevermind, I found a 'solution' for > my problem. But just a short last question: Does sequel support tablenames > which starts with an underscore (e.g foo._bar)? > Btw: Thank you so much for sequel :) >
Yes, though you wouldn't be able to use the embedded symbol notation in that case (:foo___bar would be foo AS bar, not foo._bar). You can still do Sequel.qualify(:foo, :_bar) for a foo._bar qualified identifier. Thanks, Jeremy -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sequel-talk. For more options, visit https://groups.google.com/d/optout.
