Anyone know if there is any xml driver built in to the Ruby library that
can be used with ActiveRecord? I do not want to have to install anything
other than Ruby, but, I want to use ActiveRecord.
On Mon, Sep 13, 2010 at 11:34 AM, Gene A. [email protected] wrote:
Anyone know if there is any xml driver built in to the Ruby library that
can be used with ActiveRecord? I do not want to have to install anything
other than Ruby, but, I want to use ActiveRecord.Posted via http://www.ruby-forum.com/.
I don’t think there is, because AR3 uses arel, and if you look at arel’s
readme, it has XML in long term goals.
"For the moment, Arel uses ActiveRecord’s connection adapters to connect
to
the various engines, connection pooling, perform quoting, and do type
conversion. On the horizon is the use of DataObjects instead.
The long term goal, following both LINQ and DataMapper, is to have Arel
adapt to engines beyond RDBMS, including XML, IMAP, YAML, etc."
–GitHub - rails/arel: A Relational Algebra
On Mon, Sep 13, 2010 at 5:09 PM, Josh C. [email protected]
wrote:
readme, it has XML in long term goals.
"For the moment, Arel uses ActiveRecord’s connection adapters to connect to
the various engines, connection pooling, perform quoting, and do type
conversion. On the horizon is the use of DataObjects instead.The long term goal, following both LINQ and DataMapper, is to have Arel
adapt to engines beyond RDBMS, including XML, IMAP, YAML, etc."
–GitHub - rails/arel: A Relational Algebra
*but you would have more luck on a Rails forum
Josh C. wrote:
*but you would have more luck on a Rails forum
Thank you.