Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

8
votes
3answers
138 views

How do I figure out what module is loading Moose?

I am trying to figure out which module in my CGI::Application is loading Moose. I attempted to overload "require" but I don't seem to have the syntax quite right. If someone could clean up the ...
7
votes
1answer
84 views

Does DBIx::Class do unions?

I haven't found a way to do unions with DBIx::Class other than using a view and writing out the SQL manually. This seems strange to me. I feel like there should be some way to union two ResultSets ...
7
votes
1answer
479 views

How should I set up my DBIx::Class result classes in this simple case?

Let's suppose I have a the following simplified example database consisting of three tables: CREATE TABLE people ( person_id INTEGER PRIMARY KEY, person_name VARCHAR(100) ); CREATE TABLE ...
7
votes
2answers
312 views

How can I tidy DBIx::Class::Schema::Loader's output?

We are currently introducing DBIx::Class in our team and we would like to start out with DBIx::Class::Schema::Loader. However, we have hard requirements on code style, i.e. we've got Perl::Tidy as ...
7
votes
6answers
1k views

How do I make DBIx::Class join tables using other operators than `=`?

Summary I've got a table of items that go in pairs. I'd like to self-join it so I can retrieve both sides of the pair in a single query. It's valid SQL (I think), the SQLite engine actually does ...
7
votes
2answers
792 views

How do I make a DBIx::Class relationship with a fixed join condition?

We have a link table that can handle multiple types of object on one side, and I can't work out how to get from one of these objects to the link table using has_many. Example: link table contains: ...
6
votes
3answers
108 views

Error Handling in Method Chaining in Perl

What is the best way to deal with exceptions threw in a method chaining in Perl? I want to assign a value of 0 or undef if any of the methods chained throw an exception Code sample: my $x = ...
6
votes
1answer
417 views

Moose method modifiers on DBIx::Class::Schema models in Catalyst

For any given result class MySchema::Result::Foo (built from default schema loader generated syntax which uses Moose/MooseX::nonmoose) If I add a BUILDARGS method wrapper to sanitize the constructor ...
6
votes
2answers
566 views

Moose Triggers Not Firing When Using DBIX::Class

I am new to Moose and am trying to use it with DBIx::Class. Basic DBIC querying and updating work find, but any trigger I attempt to write does not get executed when I modify an attribute. use ...
6
votes
3answers
771 views

Is there an easy way to map DBIx::Class results to my custom Moose classes?

It seems kind of a pain to have my Moose classes. Then to use DBIx::Class to get a result set..then to manually map my result set to the moose classes.
6
votes
2answers
392 views

How do I add relationships at runtime using DBIx::Class and Catalyst?

In the application I am building, users can specify relationships between tables. Since I only determine this at runtime, I can't specify has_many or belongs_to relationships in the schema modules ...
6
votes
3answers
952 views

Can I pretty-print the DBIC_TRACE output in DBIx::Class?

Setting the DBIC_TRACE environment variable to true: BEGIN { $ENV{DBIC_TRACE} = 1 } generates very helpful output, especially showing the SQL query that is being executed, but the SQL query is all ...
5
votes
1answer
223 views

How can I filter a Perl DBIx recordset with 2 conditions on the same column?

I'm getting my feet wet in DBIx::Class — loving it so far. One problem I am running into is that I want to query records, filtering out records that aren't in a certain date range. It took me ...
5
votes
4answers
2k views

What's the right way to display a DBIx::Class ResultSet in my Catalyst project that uses Template Toolkit?

Given a DBIx::Class resultset, for example: my $rs = $c->model("DB::Card")->search({family_name => "Smith"}); the tutorials I've read use the stash to pass an arrayref of rows: ...
5
votes
2answers
837 views

How do I cleanly extract MySQL enum values in Perl?

I have some code which needs to ensure some data is in a mysql enum prior to insertion in the database. The cleanest way I've found of doing this is the following code: sub enum_values { my ( ...
4
votes
1answer
125 views

Change inheritance tree of DBIx Class Result classes?

G'Day, I'm working with DBIx::Class 0.07003 and DBIx::Class::Schema::Loader 0.03009 and I'm trying to change the base class of the classes generated by the Loader -- from: package ...
4
votes
2answers
274 views

Why does DBIx::Class not create many-to-many accessors?

While creating a schema from a database many-to-many relationships between tables are not created. Is this a principal problem? Is it possible to detect from the table structure that many-to-many ...
4
votes
1answer
200 views

How can I access attributes of my object in a Moose coercion?

I want to coerce a Str into a DBIx::Class::Row object for an attribute in my Moose class. To do this I need to perform a lookup on the DBIC schema to find the row. I want to push an error onto an ...
4
votes
1answer
233 views

Do I need to manually create indexes for a DBIx::Class belongs_to relationship

I'm using the DBIx::Class modules for an ORM approach to an application I have. I'm having some problems with my relationships. I have the following package MySchema::Result::ClusterIP; use strict; ...
4
votes
1answer
144 views

How can I model an is-a relationship with DBIx::Class?

With the following (simplified) MySQL table definitions: create table items ( item_id int unsigned auto_increment primary key, purchase_date date ) engine = innodb; create ...
4
votes
0answers
604 views

Why does Perl's DBIx::Class $resultset->update fail on complex search queries? [closed]

I have a Perl DBIx::Class search the looks like this: my $rs = shift->search( { -and => [ { 'for_revocation' => 1 }, [ { ...
4
votes
2answers
435 views

How do I have a persistent DBIx::Class in CGI::Application with mod_perl?

I am using CGI::Application on mod_perl with DBIx::Class and I'd like to have something like new define a new dbic schema on instantiation. So far I haven't been able to get it to work. The closest ...
4
votes
2answers
386 views

How can I filter DBIX::Class resultsets with external data?

Using DBIx::Class and I have a resultset which needs to be filtered by data which cannot be generated by SQL. What I need to do is something effectively equivalent to this hypothetical example: my ...
3
votes
1answer
142 views

DBIx::Class: Only select results where has_many greater than zero

In our MySQL database, I have a third_party_accounts table and it has_many third_party_campaigns. However, not all accounts will have campaigns. What I would like to do in DBIx::Class is select only ...
3
votes
1answer
89 views

How can I retrieve the newest record in each group in a DBIx::Class resultset search?

I'm using group_by in a DBIx::Class resultset search. The result returned for each group is always the row in the group with the lowest id (i.e the oldest row in the group). I'm looking for a way to ...
3
votes
1answer
90 views

DBIx::Class::Schema::Loader ResultSource base class

I am using DBIx::Class::Schema::Loader for creating a static ORM to my database. I use the following method to create it and specify base classes for ResultSet and Result classes which I can plug ...
3
votes
1answer
138 views

DBIx::Class upgrade in Catalyst (DBIx::Class::Schema::Loader)

I am using Catalyst for an application and am getting ready to upgrade the production version to the next major release. In the new release a lot of changes have been made to the database. The ORM in ...
3
votes
1answer
345 views

How do I prevent DBIx::Class::Schema::Loader from automatically adding InflateColumn::DateTime in Catalyst?

I am using Catalyst and DBIx::Class::Schema::Loader to create my model in Catalyst like so: script/myapp_create.pl model DB DBIC::Schema MyApp::Schema create=static overwrite_modifications=1 ...
3
votes
2answers
135 views

How do I load fixtures correctly for a test suite using Test::DBIx::Class?

I have a bunch of tests for my DBIx::Class schema and I am using Test::DBIx::Class. This is great as it gives me useful test functions and loads fixtures. It also has a Test::mysqld trait so I can ...
3
votes
2answers
217 views

Queries to get all ancestors/descendents of a tree in a db?

I have a table (id, parent_id, data) where parent_id points to another row in same table (or is null). Is there a standard way to query (1) all the ancestors of a certain id and (2) all the ...
3
votes
1answer
84 views

How to count the number of queries with DBIx::Class?

I'm using DBIx::Class in a web context and I'd like to display the number of SQL queries performed and the time they took for the rendering of a page. Any idea about how to implement that?
3
votes
2answers
165 views

Retrieving data from a has_many relationship in DBIx::Class

Given a simple case of two tables - Term and Definition - where Term has_many Definitions and Definition belongs_to Term, all terms and the corresponding definitions are to be fetched and displayed ...
3
votes
1answer
156 views

Injecting relationships in DBIx::Class

I have a handful of DBIx::Class::Core objects that model various database tables. For some of those models (those that have a 'queue' column), I have another class inject subs (basically, to 'move' ...
3
votes
1answer
373 views

Can Perl DBIx::Class override the way a column is retrieved from the database?

I have never used DBIx::Class until today, so I'm completely new at it. I'm not sure if this is possible or not, but basically I have a table in my SQLite database that has a timestamp column in it. ...
3
votes
3answers
430 views

Perl DBIx::Class - Default Values when using new()?

When using the new() method on a DBIx::Class ResultSource to create a (potentially temporary) variable, it doesn't seem to populate attributes with the default values specified in the DBIC schema ...
3
votes
5answers
737 views

How to Subselect with DBIx::Class?

I'm starting with DBIx::Class and i have a subselect that wanted to be in DBIx::Class, but i'm getting confused and can't build the code. My MySQL select is this one: Select name from tblCategory ...
3
votes
3answers
835 views

Does DBIx::Class have transparent caching?

In the C#/.Net world, there are ORMs such as NHibernate or ActiveRecord that includes transparent caching: database updates are transparently replicated to the cache, objects are retrieved directly ...
2
votes
3answers
87 views

Moving logic from Template Toolkit to Catalyst

I think that I am using too much conditionals and calculations in the TT templates. I am displaying a result set of items from DBIc. For each item I need to calculate things using the retrieved ...
2
votes
2answers
55 views

DBIx::Class - where is this relationship being cached?

I have an Order entity and an Address entity, and in my Schema::Result::Order module I have a simple belongs to relationship: __PACKAGE__->belongs_to( "address", 'Schema::Result::Address', ...
2
votes
1answer
81 views

Using relationships to search in DBIx::Class

I am starting learning DBIx::Class and I have a doubt in searching in a related table: Consider the following code: my $books = $author->search_related('books', { name => 'Titanic' }); my ...
2
votes
1answer
60 views

DBIx::Class - best way to add support for 'FOR UPDATE NOWAIT'

I want to add support for "FOR UPDATE NOWAIT" to select statements with ->select(..., { for => 'update_nowait' }) (for Oracle). I'm using DBIx::Class 0.08127 I can modify ...
2
votes
1answer
125 views

DBIx::Class undefined value exception when trying to use ->create()

I'm trying to create a new row using DBIx::Class from within Catalyst, with the following code: $c->model('Session')->resultset('UserPreference')->create( { ...
2
votes
2answers
53 views

How can I create “meta” models using my existing DBIx::Class::Schema setup?

I have a bunch of tables mapped to ->resultset('User') and 'Tag' etc How can I create resultset classes for querying across multiple resultset classes?
2
votes
1answer
137 views

DBIx::Class::ResultSet Update or Create on multiple unique constraints

I was wondering if it is possible update_or_create on multiple unique constraints in dbix Ex From Cpan: my $cd = $schema->resultset('CD')->update_or_create( { artist => 'Massive ...
2
votes
1answer
139 views

Can I search resultset from within a toolkit template file?

I use Catalyst and put a resultset into the stash for TT to access: $c->stash->{tournament} = $c->model('DB::Tournament')->find($id); This class has a relationship with ...
2
votes
1answer
224 views

DBIx::Class base result class

I am trying to create a model for Catalyst by using DBIx::Class::Schema::Loader. I want the result classes to have a base class I can add methods to. So MyTable.pm inherits from Base.pm which inherits ...
2
votes
1answer
134 views

Recursively traversing DBIx::Class relationships

Which is the quickest way to get the list of tables that have foreign key dependencies, both direct and indirect, to DBIx::Class subclass foo? I have a MySQL database based on a DBIx::Class::Schema. ...
2
votes
1answer
107 views

Creating an index on an SQLite db using DBIx::Class

I'm beginning to think that my DBIx::Class tables need indices - I have a few expensive queries over multiple joins and I'd like to see if I can optimise them a bit. Is there a way to create and ...
2
votes
1answer
129 views

Accessing extra selected columns from a resultset inside Template Toolkit

my $rs = schema->resultset('Table1')->search( undef, { join => 'relationship_table2', '+select' => ['relationship_table2.fk_id','relationship_table2.order], '+as' ...
2
votes
1answer
279 views

DBIx::Class::ResultSet problems

I've got the following code: package MyPackage::ResultSet::Case; use base 'DBIx::Class::ResultSet'; sub cases_last_fourteen_days { my ($self, $username) = @_; return $self->search({ ...

1 2 3