update pod
|
1 |
=encoding utf8 |
2 | ||
added DBIx::Custom::Guides
|
3 |
=head1 NAME |
4 | ||
update pod
|
5 |
DBIx::Custom::Guide - DBIx::Custom Guide |
added DBIx::Custom::Guides
|
6 | |
updatedd pod
|
7 |
=head1 FEATURES |
deprecated DBIx::Custom::MyS...
|
8 | |
updatedd pod
|
9 |
L<DBIx::Custom> is the wrapper class of L<DBI> to execute SQL easily. |
10 |
This module have the following features. |
|
update pod
|
11 | |
12 |
=over 4 |
|
13 | ||
updatedd pod
|
14 |
=item * Execute INSERT, UPDATE, DELETE, SELECT statement easily |
update pod
|
15 | |
updatedd pod
|
16 |
=item * You can specify bind values by hash reference |
update pod
|
17 | |
updatedd pod
|
18 |
=item * Filtering by data type. and you can set filter to any column |
update pod
|
19 | |
fixed end_filter DEPRECATED ...
|
20 |
=item * Creating where clause and order by clause flexibly |
update pod
|
21 | |
updated pod
|
22 |
=item * Support model |
update pod
|
23 | |
24 |
=back |
|
25 | ||
updatedd pod
|
26 |
=head1 GUIDE |
update pod
|
27 | |
fixed end_filter DEPRECATED ...
|
28 |
=head2 Connect to database |
update pod
|
29 | |
30 |
use DBIx::Custom; |
|
31 |
my $dbi = DBIx::Custom->connect( |
|
- update_param_tag is DEPREC...
|
32 |
dsn => "dbi:mysql:database=bookshop", |
update pod
|
33 |
user => 'ken', |
34 |
password => '!LFKD%$&', |
|
updatedd pod
|
35 |
dbi_option => {mysql_enable_utf8 => 1} |
update pod
|
36 |
); |
37 | ||
updatedd pod
|
38 |
You can connect to database by C<connect> method. |
39 |
C<dsn> is data source name, C<user> is user name, C<password> is password. |
|
deprecated DBIx::Custom::MyS...
|
40 | |
updatedd pod
|
41 |
C<dbi_option> is L<DBI> option. |
42 |
By default, the following option is set. |
|
fixed end_filter DEPRECATED ...
|
43 |
Exeption is thrown when fatal error occur and commit mode is auto commit. |
deprecated DBIx::Custom::MyS...
|
44 | |
updatedd pod
|
45 |
{ |
46 |
RaiseError => 1 |
|
47 |
PrintError => 0 |
|
48 |
AutoCommit => 1 |
|
49 |
} |
|
added DBIx::Custom::Guides
|
50 | |
fixed end_filter DEPRECATED ...
|
51 |
=head2 Execute query |
added DBIx::Custom::Guides
|
52 | |
updatedd pod
|
53 |
=head3 Insert Statement : C<insert> |
added DBIx::Custom::Guides
|
54 | |
updatedd pod
|
55 |
If you want to execute insert statement, use C<insert> method. |
added DBIx::Custom::Guides
|
56 | |
updatedd pod
|
57 |
$dbi->insert({title => 'Perl', author => 'Ken'}, table => 'book'); |
added DBIx::Custom::Guides
|
58 | |
updatedd pod
|
59 |
First argument is insert row data, C<table> is table name. |
added DBIx::Custom::Guides
|
60 | |
updatedd pod
|
61 |
=head3 Update Statement : C<update> |
added DBIx::Custom::Guides
|
62 | |
updatedd pod
|
63 |
If you want to execute update stateimuse, use C<update> method. |
added DBIx::Custom::Guides
|
64 | |
updatedd pod
|
65 |
$dbi->update( |
66 |
{title => 'Perl', author => 'Ken'}, |
|
67 |
table => 'book', |
|
68 |
where => {id => 5} |
|
69 |
); |
|
added DBIx::Custom::Guides
|
70 | |
updatedd pod
|
71 |
First argument is update row data, C<table> is table name, C<where> is condition. |
added DBIx::Custom::Guides
|
72 | |
updatedd pod
|
73 |
Note that you can't execute C<update> method without C<where>. |
74 |
If you want to update all rows, use update_all. |
|
added DBIx::Custom::Guides
|
75 | |
updatedd pod
|
76 |
$dbi->update_all({title => 'Perl', author => 'Ken'}, table => 'book'); |
added DBIx::Custom::Guides
|
77 | |
updatedd pod
|
78 |
=head3 Delete Statement : C<delete> |
added DBIx::Custom::Guides
|
79 | |
updatedd pod
|
80 |
If you want to execute delete statement, use C<delete> method. |
added DBIx::Custom::Guides
|
81 | |
updatedd pod
|
82 |
$dbi->delete(table => 'book', where => {author => 'Ken'}); |
added DBIx::Custom::Guides
|
83 | |
update pod
|
84 |
C<table> is table name, C<where> is condition. |
added DBIx::Custom::Guides
|
85 | |
updatedd pod
|
86 |
Note that you can't execute C<delete> method without C<where>. |
87 |
If you want to delete all rows, use C<delete_all> method. |
|
added DBIx::Custom::Guides
|
88 | |
update pod
|
89 |
$dbi->delete_all(table => 'book'); |
added DBIx::Custom::Guides
|
90 | |
updatedd pod
|
91 |
=head3 Select Statement : C<select> |
added DBIx::Custom::Guides
|
92 | |
updatedd pod
|
93 |
If you want to execute select statement, use C<select> method. |
added DBIx::Custom::Guides
|
94 | |
remove DBIx::Custom::Model
|
95 |
my $result = $dbi->select(table => 'book'); |
added DBIx::Custom::Guides
|
96 | |
update pod
|
97 |
Return value is L<DBIx::Custom::Result> object. |
updatedd pod
|
98 |
You can fetch rows by C<fetch> method. |
added DBIx::Custom::Guides
|
99 | |
100 |
while (my $row = $result->fetch) { |
|
101 |
my $title = $row->[0]; |
|
102 |
my $author = $row->[1]; |
|
103 |
} |
|
104 | ||
updatedd pod
|
105 |
See also L<Fetch row/"Fetch row"> about L<DBIx::Custom::Result>. |
added DBIx::Custom::Guides
|
106 | |
updatedd pod
|
107 |
You can specify column names by C<column> option |
108 |
and condition by C<where> option. |
|
added DBIx::Custom::Guides
|
109 | |
110 |
my $result = $dbi->select( |
|
remove DBIx::Custom::Model
|
111 |
table => 'book', |
update pod
|
112 |
column => ['author', 'title'], |
added DBIx::Custom::Guides
|
113 |
where => {author => 'Ken'} |
114 |
); |
|
115 | ||
updatedd pod
|
116 |
You can specify join clause by C<join> option. |
added DBIx::Custom::Guides
|
117 | |
118 |
my $result = $dbi->select( |
|
cleanup
|
119 |
table => 'book', |
updatedd pod
|
120 |
column => ['company.name as company_name'] |
cleanup
|
121 |
where => {'book.name' => 'Perl'}, |
122 |
join => ['left outer join company on book.company_id = company.id] |
|
added DBIx::Custom::Guides
|
123 |
); |
124 | ||
updatedd pod
|
125 |
Note that join clause is joined only when C<where> or C<column> option contains table name, |
126 |
such as book.name. |
|
cleanup
|
127 | |
updatedd pod
|
128 |
You can append statement to the end of whole statement by C<append> option. |
added DBIx::Custom::Guides
|
129 | |
130 |
my $result = $dbi->select( |
|
remove DBIx::Custom::Model
|
131 |
table => 'book', |
added DBIx::Custom::Guides
|
132 |
where => {author => 'Ken'}, |
update pod
|
133 |
append => 'for update', |
added DBIx::Custom::Guides
|
134 |
); |
135 | ||
updatedd pod
|
136 |
=head3 C<execute> |
added DBIx::Custom::Guides
|
137 | |
updatedd pod
|
138 |
If you want to execute SQL, use C<execute> method. |
update pod
|
139 | |
140 |
$dbi->execute("select * from book;"); |
|
141 | ||
I call :title named placehol...
|
142 |
You can specify named placeholder. |
update pod
|
143 | |
144 |
$dbi->execute( |
|
updated pod
|
145 |
"select * from book title = :title and author = :author;" |
updatedd pod
|
146 |
{title => 'Perl', author => 'Ken'} |
update pod
|
147 |
); |
148 | ||
I call :title named placehol...
|
149 |
:title and :author is named placeholder, which is replaced to placeholers. |
update pod
|
150 | |
151 |
select * from book title = ? and author = ?; |
|
152 | ||
updatedd pod
|
153 |
=head3 C<dbh> |
update pod
|
154 | |
updatedd pod
|
155 |
my $dbh = $dbi->dbh; |
update pod
|
156 | |
updatedd pod
|
157 |
Get get database handle object of L<DBI>. |
update pod
|
158 | |
updatedd pod
|
159 |
=head3 C<DBI> methods |
update pod
|
160 | |
updatedd pod
|
161 |
$dbi->do(...); |
162 |
$dbi->begin_work; |
|
update pod
|
163 | |
updatedd pod
|
164 |
You can call all methods of L<DBI> from L<DBIx::Custom> object. |
update pod
|
165 | |
updatedd pod
|
166 |
=head2 Fetch Rows |
167 | ||
168 |
C<select> method return value is L<DBIx::Custom::Result> object. |
|
169 |
You can fetch a row or rows by various methods. |
|
170 | ||
171 |
=head3 Fetch a row (array) : C<fetch> |
|
update pod
|
172 | |
173 |
my $row = $result->fetch; |
|
174 | ||
updatedd pod
|
175 |
C<fetch> method fetch a row and put it into array reference. |
176 |
You can continue to fetch |
|
added DBIx::Custom::Guides
|
177 | |
178 |
while (my $row = $result->fetch) { |
|
update pod
|
179 |
my $title = $row->[0]; |
180 |
my $author = $row->[1]; |
|
added DBIx::Custom::Guides
|
181 |
} |
182 | ||
updatedd pod
|
183 |
=head3 Fetch only first row (array) : C<fetch_first> |
added DBIx::Custom::Guides
|
184 | |
185 |
my $row = $result->fetch_first; |
|
186 | ||
updatedd pod
|
187 |
C<fetch_first> fetch a only first row and finish statment handle, |
188 |
and put it into array refrence. |
|
update pod
|
189 | |
update pod
|
190 |
=head3 Fetch all rows (array) : C<fetch_all> |
update pod
|
191 | |
added DBIx::Custom::Guides
|
192 |
my $rows = $result->fetch_all; |
193 | ||
updatedd pod
|
194 |
C<fetch_all> fetch all rows and put them into array of array reference. |
update pod
|
195 | |
updatedd pod
|
196 |
=head3 Fetch a row (hash) : C<fetch_hash> |
update pod
|
197 | |
updatedd pod
|
198 |
my $row = $result->fetch_hash; |
update pod
|
199 | |
updatedd pod
|
200 |
C<fetch_hash> fetch a row and put it into hash reference. |
201 |
You can fetch a row while row exists. |
|
added DBIx::Custom::Guides
|
202 | |
203 |
while (my $row = $result->fetch_hash) { |
|
204 |
my $title = $row->{title}; |
|
205 |
my $author = $row->{author}; |
|
206 |
} |
|
207 | ||
updatedd pod
|
208 |
=head3 Fetch only a first row (hash) : C<fetch_hash_first> |
added DBIx::Custom::Guides
|
209 | |
210 |
my $row = $result->fetch_hash_first; |
|
update pod
|
211 | |
updatedd pod
|
212 |
C<fetch_hash_first> fetch only a first row and finish statement handle, |
213 |
and put them into hash refrence. |
|
update pod
|
214 | |
updatedd pod
|
215 |
C<one> is C<fetch_hash_first> synonym to save word typing. |
update pod
|
216 | |
updatedd pod
|
217 |
my $row = $result->one; |
update pod
|
218 | |
updatedd pod
|
219 |
=head3 Fetch all rows (hash) : C<fetch_hash_all> |
added DBIx::Custom::Guides
|
220 | |
221 |
my $rows = $result->fetch_hash_all; |
|
222 | ||
updatedd pod
|
223 |
C<fetch_hash_all> fetch all rows and put them into array of hash reference. |
update pod
|
224 | |
updatedd pod
|
225 |
=head3 Statement Handle : C<sth> |
added DBIx::Custom::Guides
|
226 | |
227 |
my $sth = $result->sth; |
|
228 | ||
updatedd pod
|
229 |
If you want to get statment handle, use <sth> method. |
update pod
|
230 | |
I call :title named placehol...
|
231 |
=head2 Named placeholder |
update pod
|
232 | |
updated pod
|
233 |
=head3 Basic of Parameter |
update pod
|
234 | |
I call :title named placehol...
|
235 |
You can embedd named placeholder into SQL. |
update pod
|
236 | |
updated pod
|
237 |
select * from book where title = :title and author like :author; |
update pod
|
238 | |
I call :title named placehol...
|
239 |
:title and :author is named placeholder |
update pod
|
240 | |
I call :title named placehol...
|
241 |
Named placeholder is replaced by place holder. |
update pod
|
242 | |
243 |
select * from book where title = ? and author like ?; |
|
244 | ||
updatedd pod
|
245 |
use C<execute> to execute SQL. |
update pod
|
246 | |
updated pod
|
247 |
my $sql = "select * from book where title = :title and author like :author;" |
updatedd pod
|
248 |
$dbi->execute($sql, {title => 'Perl', author => '%Ken%'}); |
update pod
|
249 | |
updatedd pod
|
250 |
You can specify C<filter> at C<execute>. |
update pod
|
251 | |
updatedd pod
|
252 |
$dbi->execute($sql, {title => 'Perl', author => '%Ken%'} |
update pod
|
253 |
filter => {title => 'to_something'); |
254 | ||
update pod
|
255 |
=head3 Manipulate same name's columns |
added DBIx::Custom::Guides
|
256 | |
update pod
|
257 |
It is ok if there are same name's columns. |
258 |
Let's think two date comparison. |
|
added DBIx::Custom::Guides
|
259 | |
updated pod
|
260 |
my $sql = "select * from table where date > :date and date < :date;"; |
added DBIx::Custom::Guides
|
261 | |
updatedd pod
|
262 |
In this case, You specify parameter values as array reference. |
added DBIx::Custom::Guides
|
263 | |
updatedd pod
|
264 |
my $dbi->execute($sql, {date => ['2010-10-01', '2012-02-10']}); |
added DBIx::Custom::Guides
|
265 | |
updatedd pod
|
266 |
=head2 Create where clause |
update pod
|
267 | |
updatedd pod
|
268 |
=head3 Dinamically create where clause : where |
update pod
|
269 | |
update pod
|
270 |
You want to search multiple conditions in many times. |
271 |
Let's think the following three cases. |
|
update pod
|
272 | |
update pod
|
273 |
Case1: Search only C<title> |
update pod
|
274 | |
updated pod
|
275 |
where title = :title |
update pod
|
276 | |
update pod
|
277 |
Case2: Search only C<author> |
update pod
|
278 | |
updated pod
|
279 |
where author = :author |
update pod
|
280 | |
update pod
|
281 |
Case3: Search C<title> and C<author> |
update pod
|
282 | |
updated pod
|
283 |
where title = :title and author = :author |
update pod
|
284 | |
update pod
|
285 |
L<DBIx::Custom> support dinamic where clause creating. |
updatedd pod
|
286 |
At first, create L<DBIx::Custom::Where> object by C<where>. |
update pod
|
287 | |
288 |
my $where = $dbi->where; |
|
289 | ||
updatedd pod
|
290 |
Set clause by C<clause> |
update pod
|
291 | |
292 |
$where->clause( |
|
updated pod
|
293 |
['and', 'title = :title, 'author = :author'] |
added DBIx::Custom::Guides
|
294 |
); |
295 | ||
update pod
|
296 |
C<clause> is the following format. |
update pod
|
297 | |
updated pod
|
298 |
['or' or 'and', PART1, PART1, PART1] |
added DBIx::Custom::Guides
|
299 | |
update pod
|
300 |
First argument is 'or' or 'and'. |
I call :title named placehol...
|
301 |
Later than first argument are part which contains named placeholder. |
update pod
|
302 | |
update pod
|
303 |
You can write more complex format. |
update pod
|
304 | |
305 |
['and', |
|
updated pod
|
306 |
'title = :title', |
307 |
['or', 'author = :author', 'date like :date'] |
|
update pod
|
308 |
] |
309 | ||
updated pod
|
310 |
This mean "title = :title and ( author = :author or date like :date )". |
update pod
|
311 | |
312 |
After setting C<clause>, set C<param>. |
|
added DBIx::Custom::Guides
|
313 |
|
update pod
|
314 |
$where->param({title => 'Perl'}); |
added DBIx::Custom::Guides
|
315 | |
update pod
|
316 |
In this example, parameter contains only title. |
added DBIx::Custom::Guides
|
317 | |
updatedd pod
|
318 |
If you execute C<string_to>, you can get where clause |
I call :title named placehol...
|
319 |
which contain only named placeholder. |
update pod
|
320 | |
321 |
my $where_clause = $where->to_string; |
|
322 | ||
update pod
|
323 |
Parameter name is only title, the following where clause is created. |
update pod
|
324 | |
updated pod
|
325 |
where title = :title |
update pod
|
326 | |
update pod
|
327 |
You can also create where clause by stringification. |
update pod
|
328 | |
329 |
my $where_clause = "$where"; |
|
330 | ||
update pod
|
331 |
This is useful to embbed it into SQL. |
added DBIx::Custom::Guides
|
332 | |
update pod
|
333 |
=head3 In case where clause contains same name columns |
check arguments of connect m...
|
334 | |
updated pod
|
335 |
Even if same name parameters exists, you can create where clause. |
update pod
|
336 |
Let's think that there are starting date and ending date. |
added experimental DBIx::Cus...
|
337 | |
update pod
|
338 |
my $param = {start_date => '2010-11-15', end_date => '2011-11-21'}; |
added experimental DBIx::Cus...
|
339 | |
update pod
|
340 |
In this case, you set parameter value as array reference. |
update pod
|
341 | |
342 |
my $p = {date => ['2010-11-15', '2011-11-21']}; |
|
343 | ||
updated pod
|
344 |
You can embbed these values into same name parameters. |
update pod
|
345 | |
346 |
$where->clause( |
|
updated pod
|
347 |
['and', 'date > :date', 'date < :date'] |
added experimental DBIx::Cus...
|
348 |
); |
update pod
|
349 |
$where->param($p); |
350 | ||
update pod
|
351 |
If starting date isn't exists, create the following parameter. |
update pod
|
352 | |
353 |
my $p = {date => [$dbi->not_exists, '2011-11-21']}; |
|
354 | ||
updatedd pod
|
355 |
You can get DBIx::Custom::NotExists object by C<not_exists> |
update pod
|
356 |
This mean correnspondinf value isn't exists. |
update pod
|
357 | |
update pod
|
358 |
If ending date isn't exists, create the following parameter. |
update pod
|
359 | |
360 |
my $p = {date => ['2010-11-15']}; |
|
361 | ||
update pod
|
362 |
If both date isn't exists, create the following parameter. |
update pod
|
363 | |
364 |
my $p = {date => []}; |
|
365 | ||
update pod
|
366 |
This logic is a little difficut. See the following ones. |
update pod
|
367 | |
368 |
my @date; |
|
369 |
push @date, exists $param->{start_date} ? $param->{start_date} |
|
370 |
: $dbi->not_exists; |
|
371 |
push @date, $param->{end_date} if exists $param->{end_date}; |
|
372 |
my $p = {date => \@date}; |
|
373 | ||
updatedd pod
|
374 |
=head3 With C<select> |
update pod
|
375 | |
updatedd pod
|
376 |
You can pass L<DBIx::Custom::Where> object to C<where> of C<select>. |
update pod
|
377 |
|
378 |
my $where = $dbi->where; |
|
updated pod
|
379 |
$where->clause(['and', 'title = :title', 'author = :author']); |
update pod
|
380 |
$where->param({title => 'Perl'}); |
update pod
|
381 |
my $result = $dbi->select(table => 'book', where => $where); |
382 | ||
updatedd pod
|
383 |
You can also pass it to C<where> of C<update>AC<delete> |
update pod
|
384 | |
updatedd pod
|
385 |
=head3 With C<execute> |
added experimental DBIx::Cus...
|
386 | |
update pod
|
387 |
L<DBIx::Custom::Where> object is embedded into SQL. |
added experimental DBIx::Cus...
|
388 | |
update pod
|
389 |
my $where = $dbi->where; |
updated pod
|
390 |
$where->clause(['and', 'title = :title', 'author = :author']); |
update pod
|
391 |
$where->param({title => 'Perl'}); |
update pod
|
392 | |
update pod
|
393 |
my $sql = <<"EOS"; |
updated pod
|
394 |
select * from book; |
update pod
|
395 |
$where |
396 |
EOS |
|
397 | ||
updatedd pod
|
398 |
$dbi->execute($sql, $param, table => 'book'); |
399 | ||
400 |
=head2 Filtering |
|
401 | ||
402 |
=head3 Register filter : C<register_filter> |
|
403 | ||
404 |
If you want to register filter, use C<register_filter>. |
|
405 | ||
406 |
$dbi->register_filter( |
|
407 |
# Time::Piece object to DATE format |
|
408 |
tp_to_date => sub { |
|
409 |
my $date = shift; |
|
410 |
return $tp->strftime('%Y-%m-%d'); |
|
411 |
}, |
|
412 |
|
|
413 |
# DATE to Time::Piece object |
|
414 |
date_to_tp => sub { |
|
415 |
my $date = shift; |
|
416 |
return Time::Piece->strptime($date, '%Y-%m-%d'); |
|
417 |
}, |
|
418 |
); |
|
419 | ||
420 |
=head3 Filter before sending data into database : C<filter> option |
|
421 | ||
422 |
If you filter sending data, use C<filter> option. |
|
423 | ||
424 |
$dbi->execute( |
|
425 |
'insert into book (date) values (:date)', |
|
426 |
{date => $tp}, |
|
427 |
filter => {date => 'tp_to_date'} |
|
428 |
); |
|
429 | ||
430 |
You can use C<filter> option in C<insert>, C<update>, C<delete>, C<select> method. |
|
431 | ||
432 |
$dbi->insert( |
|
433 |
{date => $tp}, |
|
434 |
table => 'book', |
|
435 |
filter => {date => 'tp_to_date'} |
|
436 |
); |
|
437 | ||
438 |
=head3 Filter after fetching data from database. |
|
439 | ||
440 |
If you filter fetch data, use L<DBIx::Custom::Result>'s C<filter> method. |
|
441 | ||
442 |
my $result = $dbi->select(column => 'date', table => 'book'); |
|
443 |
$result->filter(date => 'date_to_tp'); |
|
444 |
my $row = $result->one; |
|
update pod
|
445 | |
add feture. all model class ...
|
446 |
=head2 7. Model |
update pod
|
447 | |
add feture. all model class ...
|
448 |
=head3 Model |
update pod
|
449 | |
add feture. all model class ...
|
450 |
you can define model extending L<DBIx::Custom::Model> |
removed experimental base_ta...
|
451 |
to improve source code view. |
update pod
|
452 | |
add experimental DBIx::Custo...
|
453 |
At first, you create basic model class extending <DBIx::Custom::Model>. |
updatedd pod
|
454 |
Each L<DBIx::Custom> class inherit L<Object::Simple>. |
455 |
so you can inherit the following way. |
|
update pod
|
456 | |
add experimental DBIx::Custo...
|
457 |
package MyModel; |
updatedd pod
|
458 |
use DBIx::Custom::Model -base; |
update pod
|
459 | |
add experimental DBIx::Custo...
|
460 |
Next, you create each model classes. |
update pod
|
461 | |
add experimental DBIx::Custo...
|
462 |
MyModel::book |
removed experimental base_ta...
|
463 | |
add experimental DBIx::Custo...
|
464 |
package MyModel::book; |
updatedd pod
|
465 |
use MyModel -base; |
add experimental DBIx::Custo...
|
466 |
|
467 |
sub insert { ... } |
|
468 |
sub list { ... } |
|
removed experimental base_ta...
|
469 | |
add experimental DBIx::Custo...
|
470 |
MyModel::company |
removed experimental base_ta...
|
471 | |
add experimental DBIx::Custo...
|
472 |
package MyModel::company; |
updatedd pod
|
473 |
use MyModel -base; |
add experimental DBIx::Custo...
|
474 |
|
475 |
sub insert { ... } |
|
476 |
sub list { ... } |
|
add feture. all model class ...
|
477 | |
478 |
The follwoing modules location is needed. |
|
479 | ||
480 |
MyModel.pm |
|
481 |
MyModel / book.pm |
|
482 |
/ company.pm |
|
add experimental DBIx::Custo...
|
483 | |
updatedd pod
|
484 |
You can include these models by C<include_model> |
add experimental DBIx::Custo...
|
485 | |
486 |
$dbi->include_model('MyModel'); |
|
487 | ||
488 |
First argument is name space of model. |
|
489 | ||
add feture. all model class ...
|
490 |
You can use model like this. |
491 | ||
492 |
my $result = $dbi->model('book')->list; |
|
493 | ||
494 |
In mode, You can use such as methods, |
|
updatedd pod
|
495 |
C<insert>, C<update>, C<update_all>, |
496 |
C<delete>, C<delete_all>, C<select> |
|
add feture. all model class ...
|
497 |
without C<table> option. |
498 | ||
updatedd pod
|
499 |
$dbi->model('book')->insert($param); |
update pod
|
500 | |
add feture. all model class ...
|
501 |
Model is L<DBIx::Custom::Model>. |
update pod
|
502 | |
updatedd pod
|
503 |
If you need table nameAyou can get it by C<table>. |
update pod
|
504 | |
add feture. all model class ...
|
505 |
my $table = $model->table; |
update pod
|
506 | |
add feture. all model class ...
|
507 |
You can get L<DBIx::Custom>. |
update pod
|
508 | |
add feture. all model class ...
|
509 |
my $dbi = $model->dbi; |
removed experimental base_ta...
|
510 | |
add feture. all model class ...
|
511 |
You can also call all methods of L<DBIx::Custom> and L<DBI>. |
added experimental DBIx::Cus...
|
512 | |
update pod
|
513 |
# DBIx::Custom method |
add feture. all model class ...
|
514 |
$model->execute($sql); |
update pod
|
515 |
|
516 |
# DBI method |
|
add feture. all model class ...
|
517 |
$model->begin_work; |
518 |
$model->commit; |
|
added experimental DBIx::Cus...
|
519 | |
updatedd pod
|
520 |
If you want to get all models, you can get them by keys of C<models>. |
add models() attribute
|
521 | |
522 |
my @models = keys %{$self->models}; |
|
523 | ||
add DBIx::Custom::Model fore...
|
524 |
You can set primary key to model. |
525 | ||
526 |
$model->primary_key(['id', 'number_id']); |
|
527 | ||
updatedd pod
|
528 |
Primary key is used by C<insert>, C<update>, C<delete>, |
529 |
and C<select> methods. |
|
add DBIx::Custom::Model fore...
|
530 | |
add DBIx::Custom::Model colu...
|
531 |
You can set column names |
532 | ||
533 |
$model->columns(['id', 'number_id']); |
|
534 | ||
updatedd pod
|
535 |
Column names is automarically set by C<setup_model>. |
536 |
This method is needed to be call after C<include_model>. |
|
add experimental setup_model...
|
537 | |
538 |
$dbi->setup_model; |
|
539 | ||
cleanup
|
540 |
You can set C<join> |
cleanup
|
541 | |
cleanup
|
542 |
$model->join(['left outer join company on book.company_id = company.id']); |
cleanup
|
543 | |
updatedd pod
|
544 |
C<join> is used by C<select> method. |
cleanup
|
545 | |
updatedd pod
|
546 |
=head2 Create column clause automatically : mycolumn, column |
cleanup
|
547 | |
updatedd pod
|
548 |
To create column clause automatically, use C<mycolumn>. |
cleanup
|
549 |
Valude of C<table> and C<columns> is used. |
550 | ||
cleanup
|
551 |
my $mycolumns = $model->mycolumn; |
cleanup
|
552 | |
data_source is DEPRECATED! I...
|
553 |
If C<table> is 'book'AC<column> is ['id', 'name'], |
cleanup
|
554 |
the following clause is created. |
555 | ||
556 |
book.id as id, book.name as name |
|
557 | ||
558 |
These column name is for removing column name ambiguities. |
|
559 | ||
560 |
You can create column clause from columns of other table. |
|
561 | ||
cleanup
|
562 |
my $columns = $model->column('company'); |
cleanup
|
563 | |
cleanup
|
564 |
If C<table> is "company", C<column> return ['id', 'name'], |
cleanup
|
565 |
the following clause is created. |
566 | ||
cleanup
|
567 |
company.id as "company.id", company.name as "company.name" |
add experimental DBIx::Custo...
|
568 | |
add feture. all model class ...
|
569 |
=head2 Model Examples |
added DBIx::Custom::Guides
|
570 | |
add feture. all model class ...
|
571 |
Model examples |
added DBIx::Custom::Guides
|
572 | |
update pod
|
573 |
package MyDBI; |
updatedd pod
|
574 |
use DBIx::Custom -base; |
added DBIx::Custom::Guides
|
575 |
|
update pod
|
576 |
sub connect { |
577 |
my $self = shift->SUPER::connect(@_); |
|
578 |
|
|
add feture. all model class ...
|
579 |
$self->include_model( |
580 |
MyModel => [ |
|
removed experimental base_ta...
|
581 |
'book', |
582 |
'company' |
|
583 |
] |
|
update pod
|
584 |
); |
585 |
} |
|
removed experimental base_ta...
|
586 |
|
add feture. all model class ...
|
587 |
package MyModel::book; |
updatedd pod
|
588 |
use DBIx::Custom::Model -base; |
removed experimental base_ta...
|
589 |
|
updatedd pod
|
590 |
has primary_key => sub { ['id'] }; |
add experimental update_at()...
|
591 |
|
removed experimental base_ta...
|
592 |
sub insert { ... } |
593 |
sub list { ... } |
|
594 |
|
|
add feture. all model class ...
|
595 |
package MyModel::company; |
updatedd pod
|
596 |
use DBIx::Custom::Model -base; |
add experimental update_at()...
|
597 | |
updatedd pod
|
598 |
has primary_key => sub { ['id'] }; |
removed experimental base_ta...
|
599 |
|
600 |
sub insert { ... } |
|
601 |
sub list { ... } |
|
update pod
|
602 | |
added DBIx::Custom::Guides
|
603 |
=cut |