Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Rose::DB and sqlrelay

by InfiniteLoop (Hermit)
on Jul 19, 2007 at 21:01 UTC ( [id://627621]=perlquestion: print w/replies, xml ) Need Help??

InfiniteLoop has asked for the wisdom of the Perl Monks concerning the following question:

Greetings Monks,
 Im evaluating sqlrelay, to be used in conjunction with Rose::DB. Have any of the monks used sqlrelay with Rose::DB and what are the caveats of doing so. Thanks

Replies are listed 'Best First'.
Re: Rose::DB and sqlrelay
by mart (Initiate) on Jul 23, 2007 at 16:51 UTC
    Hay,

    I'm using sqlrelay and Rose::DB and it partly works in conjunction with Catalyst and mysql5.0.38 on a debian box. Partly, because any SELECT statements (even complex ones) generated by Rose::DB are executed.

    Reading the database works.

    Unfortunately I didn't get any INSERT or UPDATE statements to work.

    my $product = My::Product->new( name=> 'boo', text=>'foo'); $product->save();
    results in an Exception
    DBD::SQLRelay::st execute warning: You have an error in your SQL synta +x; check the manual that corresponds to your MySQL server version for + the right syntax to use near ':1, :2, 'boo', 'foo', '' )' at line 11 at /usr/local/share/perl/5.8.8/Rose/DB/Object.pm line 11 +10.
    That line the statement and it's bindings are generated:
    if($meta->dbi_requires_bind_param($db)) { my $i = 1; foreach my $column ($meta->columns) { my $method = $column->accessor_method_name; $sth->bind_param($i++, $self->$method(), $column->dbi_bin +d_param_attrs($db)); } $sth->execute; } else { # IT'S THIS NEXT LINE PRODUCING THE ERROR $sth->execute(map { $self->$_() } $meta->column_accessor_met +hod_names); }

    Humm.. I'm still evaluating this. Unfortunately I'm stuck to mysql as it offeres a very cheap - by meaning of money - clustering solution.

    Meanwhile I end up in having a two connects: one directly to mysql and another to the sqlrelay delivering reading performance.

    But this isn't really the muslti-master thing I wanted to have ;-(

    So I think I have to investigate on and patch this binding mechanism or otherwise have to cope with this limitation

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://627621]
Approved by Corion
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (5)
As of 2024-04-19 11:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found