[Catalyst] Objects and persistence

2009-01-30 Thread Marco Vittorini Orgeas
Hi, I am approching in those days the Catalyst framework. I am also quite new to persistence of Objects, and therefore before start building my application I need some clarifications, because I don't want to get myself in the wrong direction in the middle of the work. The point is: let's say

Re: [Catalyst] Objects and persistence

2009-01-30 Thread Christopher Taranto
On Fri, January 30, 2009 7:43 am, Marco Vittorini Orgeas wrote: Hi, I am approching in those days the Catalyst framework. I am also quite new to persistence of Objects, and therefore before start building my application I need some clarifications, because I don't want to get myself in the

Re: [Catalyst] Objects and persistence

2009-01-30 Thread Jonathan Rockway
* On Fri, Jan 30 2009, Christopher Taranto wrote: On Fri, January 30, 2009 7:43 am, Marco Vittorini Orgeas wrote: Hi, I am approching in those days the Catalyst framework. I am also quite new to persistence of Objects, and therefore before start building my application I need some

[Catalyst] create model

2009-01-30 Thread gdewitt
Hi, I am using Catalyst, DBIx and postrges. My tables have primary keys. When you create a primary key in postres a unique index is implicitly created as well. So the majority of my tables have a constraint that looks like this: CONSTRAINT table_pkey PRIMARY KEY (id) I use catalyst to

RE: [Catalyst] Re: Supressing passwords in debug messages

2009-01-30 Thread Byron Young
Tomas Doran wrote on 2009-01-29: On 29 Jan 2009, at 18:53, Byron Young wrote: Hi - I'm not sure what the repost policy on patches, but I have the feeling this one slipped through the cracks. Let me know if it's generally annoying to repost stuff. No, reposting if things get dropped on

Re: [Catalyst] create model

2009-01-30 Thread Ash Berlin
On 30 Jan 2009, at 21:40, gdewitt wrote: Hi, I am using Catalyst, DBIx and postrges. My tables have primary keys. When you create a primary key in postres a unique index is implicitly created as well. So the majority of my tables have a constraint that looks like this: CONSTRAINT

[Catalyst] Re: decoding in core (Was: [Announce] Catalyst-Runtime-5.8000_05)

2009-01-30 Thread Aristotle Pagaltzis
* Bill Moseley mose...@hank.org [2009-01-29 17:05]: Neither of the existing plugins do it correctly (IMO), as they only decode parameters leaving body_parameters as octets, and don't look at the request for the charset, IIRC. […] uri_for() rightly encodes to octets before escaping, but it

Re: [Catalyst] create model

2009-01-30 Thread Chisel Wright
On Fri, Jan 30, 2009 at 01:40:40PM -0800, gdewitt wrote: my $result = $c-model('Schema::Table')-find( 'x' ); Does this stop it from using _all_ unique constraints? my $result = $c-model('Schema::Table')-find( 'x', { key = 'primary' } ); -- Chisel Wright e: