The class-dbi tag has no wiki summary.
2
votes
2answers
45 views
How do I access a specific return value from the CDBI::Search function?
I am using a DB::CDBI class for accessing the database in our application. Our project is in object-oriented Perl.
package LT::LanguageImport;
use strict;
use warnings;
use base 'Misk5::CDBI';
...
0
votes
1answer
69 views
How to identify whether record was found or created: class::dbi find_or_create
I'm still learning Perl and CLASS::DBI. I have a script that does a bunch of lookups and I only want to insert the new items that are found by the lookups. I created a composite key for ...
3
votes
1answer
450 views
Moving from Class::DBI to DBIx::Class
I'm currently doing some research on DBIx::Class in order to migrate my current application from Class::DBI. Honestly I'm a bit disappointed about the DBIx::Class when it comes to configuring the ...
2
votes
2answers
180 views
Is it possible to obtain the SQL statements generated by Class::DBI?
I want to find the exact SQL statements that are generated by a Perl ORM package such as Class::DBI. I am not looking for SQL generated for simple inserts and deletes, but for row modifications that ...
7
votes
3answers
258 views
What is the future of Class::DBI?
Does anyone know what is the status of Class::DBI? I see that it was last updated on 4 October 2007, is anyone still working on this project or is it just left to die? Thank you.
3
votes
3answers
321 views
Is there a way to caching mechanism for Class::DBI?
I have a set of rather complex ORM modules that inherit from Class::DBI. Since the data changes quite infrequently, I am considering using a Caching/Memoization layer on top of this to speed things ...
3
votes
2answers
369 views
How can I do an update in Class::DBI without selecting a record first?
To do an insert with Class::DBI, you can simply do:
my $object = Object::DB->insert({ a => 1, b => 2, c => 3, ...});
But there is no such thing for update. The best I could come up with ...
1
vote
2answers
287 views
How do I override autogenerated accessors in Perl's Class::DBI?
I followed the example at http://wiki.class-dbi.com/wiki/Overriding_autogenerated_accessors
I want to modify the URL before it is inserted to the database:
package Hosting::Company;
use base ...
3
votes
3answers
542 views
How do I use add_to in Class::DBI?
I'm trying to use Class::DBI with a simple one parent -> may chidren relationships:
Data::Company->table('Companies');
Data::Company->columns(All => qw/CompanyId Name Url/);
...
3
votes
3answers
285 views
Where is detailed documentation on Class::DBI's sth_to_objects() method?
How do I find detailed documentation on the behavior of the sth_to_objects() method in the Class::DBI module?
2
votes
1answer
852 views
How do you insert binary data into a BLOB column with Class::DBI?
I want to create a new object using Class::DBI. One of the fields of this object is a BLOB type. I have a filehandle I want to use for this data, but apparently, just doing this doesn't work:
my ...
2
votes
4answers
779 views
How can I clear Class::DBI's internal cache?
I'm currently working on a large implementation of Class::DBI for an existing database structure, and am running into a problem with clearing the cache from Class::DBI. This is a mod_perl ...