Questions tagged [rose-db]

Rose::DB is a Perl module, which is the DBI abstraction layer part of the Rose set.

Overview

Rose::DB is a Perl module, which is part of the Rose set. The Rose set is made of :

Database Support

The current databases supported by Rose::DB are:

Links

3 questions
2
votes
1 answer

Error in Perl Rose::DB : Can't use string ... as a HASH ref while "strict"

I am getting an error when using Rose::DB. #MyApp/DB.pm package MyIMDB::DB; use strict; use warnings; use base qw(Rose::DB); __PACKAGE__->use_private_registry; __PACKAGE__->register_db ( driver => 'SQLite', .... ); 1; #…
henq
  • 41
  • 4
1
vote
0 answers

Perl Rose::DB - is there any CAST or CONVERT function to use in relationship clause?

Is there any cast/convert function in Rose::DB e.g. to cast a varchar column to integer? As reference: https://metacpan.org/pod/Rose::DB::Object::QueryBuilder I need use join on two tables as below. ON (t1.id = t3.detail) id column of t1 table is…
Ambr
  • 73
  • 1
  • 8
0
votes
1 answer

Clearing profile data for cached Rose::DB connections in mod_perl

I have a mod_perl app that uses Rose::DB (postgresql driver). DB connections are persistent among requests (using DBI->connect_cached) and it is working fine. I'm collecting DB profile data (and printing it to output in development environment), but…
farzad
  • 8,775
  • 6
  • 32
  • 41