DBIx::Class is a Perl object-relational mapping (ORM) module. It aims to make representing queries in your code as perl-ish as possible while still providing access to as many of the capabilities of the database as possible, including retrieving related records from multiple tables in a single ...

learn more… | top users | synonyms (1)

2
votes
2answers
56 views

Using DBIx::Class, how can I check if a table exists?

My goal is to create a function that will create my MySQL db table (using schema defined via DBIx::Class already) if it hasn't been created yet. Otherwise it simply creates the reference to $schema. ...
1
vote
1answer
32 views

DBIx::Class: Counting entries with specific values in related table

I have the two MySQL tables humans and dogs: TABLE humans: id int, name varchar(32) TABLE dogs id int, human int, dead int Every human can have zero or more dogs. If the dog is dead, then the ...
0
votes
1answer
78 views

DBIx::Class::Schema::Loader installation fails

Well, I been trying to get this work for the past two days, re installing dependencies, updating modules, but I haven't found any solution. install command line: $> cpan ...
0
votes
2answers
76 views

Selecting distinct values from key/value pairs in a seperate table

I have 2 database tables JOBS(JOB_ID, JOB_TIME, JOB_NAME,...), JOB_PARAMETERS(JOB_ID,NAME,VALUE) where JOB_PARAMETERS is essentially a map containing job parameter key value pairs. Every job may ...
0
votes
2answers
37 views

Auto-encoding Catalyst::View::JSON

I use DBIx class for selectintg data from database; I send response from controller to client using serialization to json using Catalyst::View::JSON But utf8-data selected from databse needs to be ...
0
votes
1answer
35 views

Duplicate index names with DBIx::Class and PostgreSQL

I have an existing MySQL database which I'm trying to migrate to PostgreSQL using the following steps. The database is fairly simple - it has a few foreign keys and other constraints but no triggers, ...
1
vote
2answers
49 views

What is differences between ResultSet and an object?

From DBIx::Class::ResultSet we read that: WARNING If called on an object, proxies to "new_result" instead, so my $cd = $schema->resultset('CD')->new({ title => 'Spoon' }); will return a CD ...
0
votes
3answers
63 views

How to create global var $schema for connection to DB in Catalyst app?

I've created a model lib/MyApp/Model/Foo.pm. Inside it: ... sub bar { my $schema = MyApp::Schem->connect("dbi:SQLite:data.db"); } ... It works fine but when I write so: ... my $schema = ...
0
votes
1answer
45 views

What differences between populate and create methods in DBIx::Class?

Could someone explain in which cases I have to use create or populate methods on ResultSet in DBIx::Class? And what differences between each other if everyone is used to insert some data to database? ...
1
vote
1answer
46 views

DBIx::Class and Searching

I am trying to return today's birthdays. This is what I have right now, which works, but I need to grab the month and day to input into the statement. I thought maybe I could grab them from localtime, ...
1
vote
1answer
74 views

Abstraction of Column Names in DBIx::Class::ResultSet

I am developing a Catalyst application that uses DBIx::Class to access a MySQL database. The application performs data quality checks on a file. The files are loaded into a table FileContent: ...
2
votes
2answers
80 views

Why use this strange variant of package name?

Could someone explain me for which goals programmers use this variant "package name" like in that file SQLite.pm from DBIx::Class module? Full listing: package # Hide from PAUSE ...
0
votes
1answer
60 views

Postgresql Geometry Type parseing In Perl?

PostgreSQL supports Geometric types and I have a database full of them. I'd like to use Perl with DBIx:Class to retrieve them. For example the point type is defined as '(x,y)' and thats how ...
2
votes
3answers
88 views

DBIx::Class Perimeter Search

I am trying to get a perimeter search working with DBIx::Class but have not succeeded so far. The SQL I would like to generate looks like this: SELECT zip, 6371 * ACos( Cos(RADIANS(Lat)) * ...
0
votes
0answers
32 views

Catalyst create schema on Windows: many warnings

I have a Catalyst app that runs fine on OS X and Ubuntu, but I am told it has the following problem on Windows. The problem is with this call, from which I have removed the db cx info: ...
2
votes
2answers
180 views

Perl ORM with Moo

I'd like to use Moo as the Object Oriented approach for my app (with a relational database). I had used DBIx::Class & Rose::DB::Object in the past, but these distributions are not Moo (neither ...
1
vote
1answer
49 views

DBIx::Class How do I enable PRAGMA foreign_keys for SQLite?

I want to enable foreign keys support to SQLite3 using DBIx::Class, in order to use cascade on update and on delete. I found this ...
1
vote
2answers
124 views

DBIx::Class get the dbh

I'm using DBIx::Class in a Catalyst app I am building. It works great, but sometimes I need to use my own db functions that I've developed that are very specific to my needs. Because of this, I need a ...
0
votes
1answer
51 views

How to give additional parameters to DBIx search method to Schema class

I added new relationship to my Schema in Catalyst project: __PACKAGE__->has_many( 'messageslog' => "myproject::Schema::Result::MessagesLog", sub { my $args = shift; return { ...
1
vote
2answers
47 views

DBIx::Class reuse dbh with HTML::FormHandler

I'm using DBIx::Class in a Catalyst app, and I was wondering if it is possible to make HTML::FormHandler use the same dbh that was already used by DBIx::Class earlier in the code (perhaps it already ...
0
votes
3answers
48 views

Cannot use DBIx::Class to authentication from Catalyst App

I'm trying to use DBIx::Class for authentication users from Catalyst app. My steps I've done: created SQLite db; CREATE TABLE people ( id integer primary key, name text not null, password text not ...
0
votes
1answer
52 views

How do I create a GiST index on a PostGIS geometry column using DBIx::Class?

I have a Postgres + PostGIS database with geometry columns. I would like to add indices to them, e.g. create index plot_idx_location on plot using gist (location); I know how to create indices in ...
0
votes
2answers
74 views

perl waring : “Use of unintitialized value in string ne” for condition check for column with the null value

I am trying to fetch certain column from a table , some of the column might have the null value.Hence before filling my main data, I am checking the hash for null value.As some of the key is having ...
2
votes
2answers
96 views

DBIx::Class::Schema::Loader connect to db on different machine

I'm using DBIx::Class:Schema::Loader via the command line to generate schema from my database for DBIx::Class for my Catalyst app. This is the command that I use: script/myapp_create.pl model DB ...
1
vote
2answers
126 views

Use DBIx::Class with a single result class definition to handle several tables with the same structure

I have several (~100 and counting) MySQL tables with more than 50M entries each. The thing is that all this tables have exactly the same structure and I would like to create a single result class for ...
0
votes
0answers
75 views

Use DBIx::Class with Postgres to Accomplish Greatest-N-Per-Group Query?

Currently, I'm using DBIx::Class coupled with SQLite and its GROUP BY to query for the greatest-row-per-group; according to http://comments.gmane.org/gmane.comp.lang.perl.modules.dbix-class/1565, ...
1
vote
3answers
173 views

Formatting timestamp field for output in TemplateToolkit

I'm using Perl with Catalyst framework, DBIx class as ORM, TT for views, Postgresql as DB. I have a column with 'timestamp without timezone' type, and if I do manual query in Postgres the column ...
2
votes
2answers
53 views

How to set sql options on DBIx::Class in Catalyst

I need to set ARITHABORT ON for DBIx::Class on Catalyst. I'm not sure I can do this way: $source->storage->do("set ARITHABORT ON"); I have this error from the MS SQL Server 2008: SELECT ...
0
votes
1answer
91 views

How to create a unique index that is case-insensitive using DBIx::Class

I am using Postgres and I was hoping to create a case insensitive unique constraint on my database using DBIx::Class. I understand that an example like: ...
1
vote
1answer
70 views

Insert object with add_to_$rel into a many-to-many relationship with DBIx::Class

Problem I'm trying to build a minimal example where I create a many-to-many relationship in DBIx::Class and insert some rows into the database. In my database I have two tables A and C which are ...
0
votes
1answer
98 views

Is there any way to filter a column using SQL functions in Perl's DBIx::Class?

I am using a PostgreSQL database with PostGIS geometry columns. I would like to configure the Result classes so that geometry columns are inflated using the ST_AsEWKT function and deflated using the ...
4
votes
2answers
132 views

How do I make DBIx::Class::Schema::Loader ignore non result classes?

I'm switching from using DBIx::Class::Schema::Loader in dynamic mode to static. But there's a problem, my result classes are mixed up with non result classes. Here's the specifics. ...
0
votes
1answer
139 views

Timezone Issues with DateTime, DBIx::Class and SQLite (Time Off by 5 Hours)

I'm using a DBIx::Class schema generated by dbcidump to make inserts and queries. Recently, I discovered that all of my times are stored +5 hours ahead of our local time (est). In my Result class, I ...
1
vote
1answer
187 views

DBIx::Class schema handling differs between in-memory and on-disk SQLite

Update: Solved my problem Again I have tripped over the behaviour of make_schema_at (see the comment in the code about @INC being modified, I already filed a bug report for that). The reason my code ...
1
vote
1answer
74 views

DBIx Class: overloading new() in a resultset

Hello dear community members. I have a following problem. Say, I have a user table. During my programming I create a lot of search queries to this table. Then, later, I realize that I need to select ...
1
vote
1answer
49 views

What does a schema.conf for Test::DBIx::Class look like?

The SYNOPSIS for Test::DBIx::Class states: Yes, it looks like a lot of boilerplate, but sensible defaults are in place (the above code example shows most of the existing defaults) and ...
2
votes
1answer
127 views

Create DBIx ResultSet using column aliases

I have started to use DBIx::Class and I really like it for the most part but what is really starting to annoy me is the column alias does not seem to work fully. Eg. Suppose I have this table ...
3
votes
2answers
197 views

How to properly use UTF-8-encoded data from Schema inside Catalyst app?

Data defined inside Catalyst app or in templates has correct encoding and is diplayed well, but from database everything non-Latin1 is converted to ?. I suppose problem should be in model class, which ...
0
votes
0answers
61 views

DBIx::Class Update one table from another

I have a SQL query which works fine directly in MySQL, but I'm struggling to convert it to use via DBIx::Class, I've simplified the query here UPDATE table1, table2 SET table1.field1 = SOMEFUNC( ...
0
votes
0answers
80 views

DBIx::Class::DeploymentHandler: Wrong foreign key names in auto-sql

I use the DBIx::Class::DeploymentHandler to keep track of different versions of my database, which works great. However, when I needed to remove/update some foreign keys, I ran into a problem. I use ...
4
votes
3answers
132 views

DBIx and inheritance in Perl

I'm currently trying to implement the following scenario with DBIx: The table products contains "general products" and "bundle products" (bundle products are collections of general products): ...
0
votes
2answers
58 views

DBIx::Class query fails, yet dump from DBIC_TRACE works

I cannot rewrite the current DB schema right now BTW, but that's beside the point to the issue I've hit, so please ignore the table structure :D I'm running this DB query: my $rs = ...
3
votes
2answers
164 views

Can DBIx::Class be used to create tables?

I do not think I understand the scope of DBIx::Class Do I have to manually create a database with regular SQL first, then use the schemaloader (or manually code the schema/resultsets)? Or is there a ...
0
votes
2answers
72 views

Construct DBIx::Class object and related objects but save later

I would like to construct a DBIx::Class object and its related objects but defer saving the object, calling the insert method on the object later and at that time have everything saved all at once. ...
1
vote
2answers
109 views

How does DBIx::Class handle boolean values?

I'm using DBIx::Class in my perl script to interact with a sqlite database. When doing inserts/searches, what will DBIx::Class consider 'true' and 'false'? eg: ...
0
votes
1answer
48 views

Converting SQL query

I have an SQL query which is fetching me the data correcting from sqlplus. When I try to convert the query such that I can implement in the catalyst controller, I am getting an error message saying ...
0
votes
2answers
110 views

How to override the “new”method in DBIx::Class Tables

I have read here http://search.cpan.org/~frew/DBIx-Class-0.08200/lib/DBIx/Class/Manual/Cookbook.pod#Setting_default_values_for_a_row that a way to set default values for columns was to override the ...
1
vote
1answer
67 views

One resultset for many tables DBIx::class

I have a database with many tables that are structured the same and have the same column names. Table 1 col1 col2 col3 Table 2 col1 col2 col3 and so on. I'm trying to learn how to use ...
0
votes
3answers
124 views

dbix::class generate schema for a non-catalyst app

I've been building Catalyst apps lately and one thing I love is using Catalyst's create script to easily generate the table schemas for DBIx::Class. I'd like to be able to use DBIX::Class without ...
0
votes
1answer
131 views

How would I write this query with DBIX::Class?

I've seen a few other questions on Stackoverflow that discuss sub-selects, but they usually relate to the use of multiple tables. In most cases, a proper join could serve the same purpose. However ...

1 2 3 4