[Dbix-class] resultsource classdata

2010-07-17 Thread Bernhard Bauch
? lots of thank yous, bye, bernhard Bernhard Bauch, Webdevelopment ZSI - Zentrum für soziale Innovation ba...@zsi.at ___ List: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class IRC: irc.perl.org#dbix-class SVN: http://dev.catalyst.perl.org

[Dbix-class] bug or misuse of $schema-register_class after upgrade ?

2011-03-29 Thread Bernhard Bauch
in line #925 this was added: weaken ${${target_class}::__cag_result_source_instance}; if i remove this line, everything is working like expected or like before. what can i do to keep my code working ? any ideas ? thanks alot for help, bernhard -- Bernhard Bauch, Webdevelopment ZSI

[Dbix-class] dbix + perl5.18

2013-06-12 Thread Bernhard Bauch
/; } 249,250c242 #for my $res (values %results) { for my $res ( @result_classes ) { --- for my $res (values %results) { --- maybe this should be fixed in upcoming DBIx::Class releases ? cheers, berni -- Bernhard Bauch, Webdevelopment ZSI - Zentrum

Re: [Dbix-class] dbix + perl5.18

2013-06-12 Thread Bernhard Bauch
On 12.06.2013, at 16:17, Peter Rabbitson wrote: On Wed, Jun 12, 2013 at 03:42:20PM +0200, Bernhard Bauch wrote: dear dbix-folks, ... i figured out where the problem is! since perl 5.18 hash-ramdomizatiomn is used see: https://metacpan.org/module/RJBS/perl-5.18.0/pod

Re: [Dbix-class] dbix + perl5.18

2013-06-12 Thread Bernhard Bauch
+0200, Bernhard Bauch wrote: need/want more infos ? Yes - I need the relationship definitions between classes as well - this is where your exception is occuring. A class is allowed to load another class, *outside* of the Schema.pm codeflow. This is where the problem lies, Schema.pm

Re: [Dbix-class] dbix + perl5.18

2013-06-12 Thread Bernhard Bauch
...) ..tomorrow...have a good day. On 12.06.2013, at 16:44, Peter Rabbitson wrote: On Wed, Jun 12, 2013 at 04:34:00PM +0200, Bernhard Bauch wrote: need/want more infos ? Yes - I need the relationship definitions between classes as well - this is where your exception is occuring. A class

Re: [Dbix-class] dbix + perl5.18

2014-01-28 Thread Bernhard Bauch
. i'll try to get back my test-devel environment soon, and let you know if your fix, solved the problem. cherrz, bernhard On 24.01.14 09:33, Peter Rabbitson wrote: On Wed, Jun 12, 2013 at 03:42:20PM +0200, Bernhard Bauch wrote: dear dbix-folks, i just upgraded to the latest perl 5.18

Re: [Dbix-class] latest DBIx::Class "Not inlining a constructor..."

2016-09-14 Thread Bernhard Bauch
in a constructor named 'new'. If > you are certain you don't need to inline your constructor, specify > inline_constructor => 0 in your call to > MyApp::Schema::ResultSet->meta->make_immutable anyideas why ? bye, bernhard > On 14 Sep 2016, at 11:13, Bernhard Bauch <ba...@zs

Re: [Dbix-class] latest DBIx::Class "Not inlining a constructor..."

2016-09-14 Thread Bernhard Bauch
Peter Rabbitson <rabbit+d...@rabbit.us> wrote: > > On 09/14/2016 11:13 AM, Bernhard Bauch wrote: >> dear all, >> >> i've been updating to the latest dbix::class version yesterday, and now >> my catalyst app / more the dbix::class schema does not work.. > > I

[Dbix-class] latest DBIx::Class "Not inlining a constructor..."

2016-09-14 Thread Bernhard Bauch
hod "columns" on an undefined value at /usr/local/DBIx/Class/ResultSet.pm line 3538 or Can't use an undefined value as a HASH reference at /usr/local/.../DBIx/Class/ResultSet.pm line 477 anyidea whats wrong here ? thanks for you support, bernhard — Bernhard Bauch

Re: [Dbix-class] latest DBIx::Class "Not inlining a constructor..."

2016-09-21 Thread Bernhard Bauch
t;, so you don't have to use MooseX::NonMoose in subclasses > which extend your MyBaseApp::* > > On 19 September 2016 at 15:14, Bernhard Bauch <ba...@zsi.at> wrote: >> dear peter, >> >> here's my example code..(see attachment) >> >> it produces the foll

Re: [Dbix-class] latest DBIx::Class "Not inlining a constructor..."

2016-09-19 Thread Bernhard Bauch
:Schema::ResultSet', default_resultset_class => '+MyApp::Schema::ResultSet', ); } my $q = MyApp::Schema->connect("dbi:SQLite::memory:")->resultset("Foo")->as_query; warn $$q->[0]; > On 14 Sep 2016, at 15:29, Peter Rabbitson <rabbit+d...@rabbit.us&

Re: [Dbix-class] latest DBIx::Class "Not inlining a constructor..."

2016-09-29 Thread Bernhard Bauch
dear peter, any news on that ? cheers, berni > On 22 Sep 2016, at 08:27, Peter Rabbitson <rabbit+d...@rabbit.us> wrote: > > On 09/21/2016 02:18 PM, Bernhard Bauch wrote: >> hey again, >> that does not change a thing :( >> >> any ideas peter what could be

Re: [Dbix-class] latest DBIx::Class "Not inlining a constructor..."

2016-10-13 Thread Bernhard Bauch
, when DBIC will be released including the moose-fix ? thanks for yourr support!! cheers, berni > On 30 Sep 2016, at 12:48, Peter Rabbitson <rabbit+d...@rabbit.us> wrote: > > On 09/19/2016 02:14 PM, Bernhard Bauch wrote: >> dear peter, >> >> here's my example