Tagged Questions
The rose-db-object tag has no wiki summary.
3
votes
2answers
485 views
Setting NULL datetime with Rose::DB::Object and MySQL
I could be wrong here, but it looks like there's conflicting standards here.
MySQL treats a stored datetime of "0000-00-00 00:00:00" as being equivalent to NULL.
(update - only, it seems, if the ...
2
votes
2answers
300 views
How can I force list context in Template Toolkit with RDBO?
I have a TT plugin that does the trivial unique ids:
sub get_unique_uid_tt {
my ( $classname, $o ) = @_;
my %h;
foreach my $item ( @{$o} ) {
unless ( exists $h{ $item->id } ) {
...
2
votes
1answer
360 views
Can I create a table (if not exists) from Rose::DB::Object metadata?
I'm having trouble finding it in the CPAN documentation -- is there a way to create a table (IF NOT EXISTS) from manually-entered Rose::DB::Object metadata?
I'm using SQLite as an engine, if it ...
1
vote
1answer
87 views
Using Rose::DB::Object, how can I auto create an object in a relationship if not found?
I have 2 tables that are 1-to-[0/1]. Is there a way to auto create the relationship object/row using Rose::DB::Object:
For example:
# detailed_summary is the 1-to-1 relationship
# if ...
1
vote
1answer
80 views
Are Rose::DB::Object::Cached memory cached through different processes?
Are RDBOC objects cached through different processes? I'm thining of running it in mod-perl, and it would factor into things, even though it would mostly be used on things that don't change (much).
...
0
votes
2answers
31 views
Rose::DB::Object::Manager query with a list of object ids
I'm trying to write a Rose::DB::Object query string using either an Array or a Hash, however I'm unsure how to do it. I'm trying to write an update function based off of certain ID's in a list that ...
0
votes
0answers
27 views
Rose::DB , Oracle and a non-conventional primary_key
I'd like to share a problem + workaround for people who use :
Rose::DB
Oracle
primary keys which don't follow the Rose::DB convention (pks' which are not named "ID" )
I ran into some trouble ...
0
votes
1answer
95 views
Rose::DB::Object::Manager and HTML Template
I am using Rose::DB::Object::Manager (get/iterate methods) to source data from a database and HTML::Template for reporting.
The HTML report requires a TMPL_LOOP to display entries in a database.
...
0
votes
2answers
359 views
Perl module “did not return a true value”
I followed the Rose::DB::Object tutorial on CPAN and set up three packages.
package My::DB::Object;
use My::DB;
use base qw(Rose::DB::Object);
sub init_db { My::DB->new }
package My::DB;
use base ...
0
votes
2answers
285 views
Handling UTF8-encoded text in SQLite using Rose::DB::Object
I am using Rose::DB::Object, SQLite, and Chinese text. My classes look like this:
package My::DB;
use base qw(Rose::DB);
__PACKAGE__->use_private_registry;
__PACKAGE__->register_db(
...
0
votes
1answer
178 views
Why isn't Rose::DB::Object sort_by RAND() doing what I expect?
I can't get it to work. I'm using this query:
my $user_questions
= RoseDB::UserSecurityQuestion::Manager->get_user_security_questions(
query => [
...