Tagged Questions

1
vote
2answers
36 views

right-hand-side MySQL functions in DBIx::Class

In DBIx::Class, when I generate a query using this syntax: ... 'Time(submitted_at)' => { '>' => 'Time(Now()-Interval ' . $wait_period . ' minute)' } ... The generated q …
2
votes
4answers
94 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 …
2
votes
1answer
45 views

Preventing DBIx::Class from calling everything related to a new, not-yet-inserted row?

I have a parent/child relationship in my schema. I'd like to use very similar code to modify an existing parent as to create a new one. The edit case is easy to find the children: …
1
vote
1answer
32 views

DBIx::Class result classes and actual tables

I'm studying DBIx classes and I'm a bit confused since my interaction with a database so far has been plain SQL queries in PHP code. Anyway, as I understand it, the class operates …
1
vote
1answer
66 views

How do I get DBIx::Class to collate with UTF-8?

Hi folks, I am trying to implement a web search functionality on a MySQL database using DBIx::Class::Resultset. I have it working apart from one problem: when searching for 'ü' th …
2
votes
5answers
291 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 eng …
1
vote
1answer
96 views

Which book has the best discussion of DBIx::Class?

I don't know if the DBIx::Class ORM is substantial enough to justify an entire book on the subject but I'd like to get a recommendation for a book that goes into the details of the …
0
votes
2answers
130 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 r …
1
vote
4answers
165 views

Parsing a Gmail-style advanced search syntax?

I want to parse a search string similar to that provided by Gmail using Perl. An example input would be "tag:thing by:{user1 user2} {-tag:a by:user3}". I want to put it into a tree …
0
votes
3answers
228 views

How can I have DBIC persistent database connection in mod_perl?

I am using mod_perl for my web application. Currently, I plan to use a mysql database across the network. In every CGI request to display_customer_transaction.cgi, my script will …
1
vote
3answers
56 views

How do I get values from the link table in DBIx::Class?

In my app I have 2 table, books and tags, and the link table book_tags. The link table also contains the number of times the book was tagged with this particular tag. I can add a t …
2
votes
3answers
354 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 …
1
vote
2answers
230 views

Select from multiple tables in DBIx::Class

I have the following DBIx::Class code : my $where = 'me.loginid = ? AND me.code = ?'; my @bind = ( $loginID, $code ); my $tip_signals = $bom_schema->resultset('Table1')->se …
2
votes
2answers
164 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 t …
3
votes
1answer
240 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: lin …

1 2 next
15 30 50 per page