Re: [Dbix-class] GOVERNANCE: Aggregation and conclusion

2016-10-31 Thread Fernan Aguero
+1 for the fork On Mon, Oct 31, 2016 at 6:24 PM, Darren Duncan wrote: > My current thought is that a fork may be the best solution in the short > term, with the following clarifications or amendments. > > 1. Peter Rabbitson would have the exclusive PAUSE permissions to the > DBIx::Class namespac

Re: [Dbix-class] GOVERNANCE: Aggregation and conclusion

2016-10-31 Thread Fernan Aguero
+1 on this proposal. everyone should be happy with this. From reading silently all the proposals in this thread, it is clear that we all want DBIC to move forward, if that means letting RIBA have the namespace and MST and the new governance to be able to work on DBIC freely, then separating the na

Re: [Dbix-class] Re: [Catalyst] Session::Store::DBIC and session table (postgres)

2012-11-22 Thread Fernan Aguero
On Wed, Nov 21, 2012 at 11:43 AM, Peter Rabbitson wrote: > > > Please test and let us know if current DBIC master solves the issue in > this thread. Thanks! Everything is working smoothly now. (installed GETTY/DBIx-Class-0.08204.tar.gz from the git master) -- fernan __

Re: [Dbix-class] Re: [Catalyst] Session::Store::DBIC and session table (postgres)

2012-11-15 Thread Fernan Aguero
On Thu, Nov 15, 2012 at 10:38 AM, Peter Rabbitson wrote: > On Thu, Nov 15, 2012 at 10:31:21AM -0300, Fernan Aguero wrote: > > So, apparently the problem is calling delete() right on the resultset > > object. For some reason that eludes me, DBIC is not fully qualifying the > &g

[Dbix-class] Re: [Catalyst] Session::Store::DBIC and session table (postgres)

2012-11-15 Thread Fernan Aguero
On Wed, Nov 14, 2012 at 5:56 PM, Francisco Obispo wrote: > Use: > > $c->model('GUS::WebappSession') as the name. So, it was a good suggestion after all ... it didn't work at first, and I think this led me to (maybe) a possible fix This doesn't work: sub remove_sessions : Private { my ( $sel

Re: [Dbix-class] Join Myself?

2012-07-06 Thread Fernan Aguero
On Fri, Jul 6, 2012 at 3:33 PM, Steve Wells wrote: > > I'm trying to convert this SQL statement to DBIC and I'm failing miserably. Not a lot of magic required, see 'Joining to the same table twice' in http://search.cpan.org/dist/DBIx-Class/lib/DBIx/Class/Manual/Joining.pod For joining a table t

Re: Subject: [Dbix-class] Re: using as normal perl module To

2011-08-01 Thread Fernan Aguero
On Mon, Aug 1, 2011 at 4:01 PM, Rajeev Prasad wrote: > for using DBIx, I am not sure what i need to do and what i can do (so new i > am to this). > > > i have found this page, it is a wonderful resource to me (thanks to author), > it has demystified quite a few things about how to start. It is say

Re: [Dbix-class] Caching solutions for DBIx::Class

2011-07-04 Thread Fernan Aguero
On Mon, Jul 4, 2011 at 2:25 PM, Jorge Gonzalez wrote: > I can't check it out now, but my best bet would be the following: > > a) do as I told in my prior email, so you specify caching strategy for most > of your tables with almost no effort. > > b) for the tables wich you want to have a different

Re: [Dbix-class] Caching solutions for DBIx::Class

2011-07-04 Thread Fernan Aguero
Hola Jorge, first of all many thanks for sharing your tips. On Mon, Jul 4, 2011 at 10:46 AM, Jorge Gonzalez wrote: > > This is the full configuration for my model, which includes heavy caching > (it's a readonly access to a data warehouse which gets updated once a day): > > Model::MyDB: >   tra

[Dbix-class] Re: moving from Auth::Store::DBIC to Auth::Store::DBIx::Class

2010-04-01 Thread Fernan Aguero
On Thu, Apr 1, 2010 at 5:26 PM, Fernan Aguero wrote: > Hi, > > after reading lots of warnings in our logs about > Authentication::Store::DBIC being deprecated, I thought about devoting > some time to move to its replacement, > Authentication::Store::DBIx::Class, but upon starti

[Dbix-class] moving from Auth::Store::DBIC to Auth::Store::DBIx::Class

2010-04-01 Thread Fernan Aguero
Hi, after reading lots of warnings in our logs about Authentication::Store::DBIC being deprecated, I thought about devoting some time to move to its replacement, Authentication::Store::DBIx::Class, but upon starting to work on this I've also started to hit on some problems. So, my first question

[Dbix-class] equivalent of DBI's selectall_hashref in DBIC?

2008-12-19 Thread Fernan Aguero
Hi, I'd like to fetch data from DBIC in the form of a hash (i.e. indexed by a key, say a PK) instead of in the form of an array, which is the native structure of a DBIC RS. In plain DBI, I can do it using selectall_hashref, and specifying the column to use as the hash key. Can I do something lik