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 | |
updatedd pod
|
20 |
=item * Creating where clause flexibly |
update pod
|
21 | |
updatedd pod
|
22 |
=imte * Support model |
update pod
|
23 | |
24 |
=back |
|
25 | ||
updatedd pod
|
26 |
=head1 GUIDE |
update pod
|
27 | |
updatedd pod
|
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. |
|
43 |
Fatal error throw exeption 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 | |
updatedd pod
|
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 | ||
updatedd pod
|
142 |
You can specify parameters. |
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 | ||
updatedd pod
|
149 |
:title and :author is parameters, which is replaced to placeholers. |
update pod
|
150 | |
151 |
select * from book title = ? and author = ?; |
|
152 | ||
updatedd pod
|
153 |
See also L<Parameter/"Parameter"> about parameter. |
update pod
|
154 | |
updatedd pod
|
155 |
=head3 C<dbh> |
update pod
|
156 | |
updatedd pod
|
157 |
my $dbh = $dbi->dbh; |
update pod
|
158 | |
updatedd pod
|
159 |
Get get database handle object of L<DBI>. |
update pod
|
160 | |
updatedd pod
|
161 |
=head3 C<DBI> methods |
update pod
|
162 | |
updatedd pod
|
163 |
$dbi->do(...); |
164 |
$dbi->begin_work; |
|
update pod
|
165 | |
updatedd pod
|
166 |
You can call all methods of L<DBI> from L<DBIx::Custom> object. |
update pod
|
167 | |
updatedd pod
|
168 |
=head2 Fetch Rows |
169 | ||
170 |
C<select> method return value is L<DBIx::Custom::Result> object. |
|
171 |
You can fetch a row or rows by various methods. |
|
172 | ||
173 |
=head3 Fetch a row (array) : C<fetch> |
|
update pod
|
174 | |
175 |
my $row = $result->fetch; |
|
176 | ||
updatedd pod
|
177 |
C<fetch> method fetch a row and put it into array reference. |
178 |
You can continue to fetch |
|
added DBIx::Custom::Guides
|
179 | |
180 |
while (my $row = $result->fetch) { |
|
update pod
|
181 |
my $title = $row->[0]; |
182 |
my $author = $row->[1]; |
|
added DBIx::Custom::Guides
|
183 |
} |
184 | ||
updatedd pod
|
185 |
=head3 Fetch only first row (array) : C<fetch_first> |
added DBIx::Custom::Guides
|
186 | |
187 |
my $row = $result->fetch_first; |
|
188 | ||
updatedd pod
|
189 |
C<fetch_first> fetch a only first row and finish statment handle, |
190 |
and put it into array refrence. |
|
update pod
|
191 | |
update pod
|
192 |
=head3 Fetch all rows (array) : C<fetch_all> |
update pod
|
193 | |
added DBIx::Custom::Guides
|
194 |
my $rows = $result->fetch_all; |
195 | ||
updatedd pod
|
196 |
C<fetch_all> fetch all rows and put them into array of array reference. |
update pod
|
197 | |
updatedd pod
|
198 |
=head3 Fetch a row (hash) : C<fetch_hash> |
update pod
|
199 | |
updatedd pod
|
200 |
my $row = $result->fetch_hash; |
update pod
|
201 | |
updatedd pod
|
202 |
C<fetch_hash> fetch a row and put it into hash reference. |
203 |
You can fetch a row while row exists. |
|
added DBIx::Custom::Guides
|
204 | |
205 |
while (my $row = $result->fetch_hash) { |
|
206 |
my $title = $row->{title}; |
|
207 |
my $author = $row->{author}; |
|
208 |
} |
|
209 | ||
updatedd pod
|
210 |
=head3 Fetch only a first row (hash) : C<fetch_hash_first> |
added DBIx::Custom::Guides
|
211 | |
212 |
my $row = $result->fetch_hash_first; |
|
update pod
|
213 | |
updatedd pod
|
214 |
C<fetch_hash_first> fetch only a first row and finish statement handle, |
215 |
and put them into hash refrence. |
|
update pod
|
216 | |
updatedd pod
|
217 |
C<one> is C<fetch_hash_first> synonym to save word typing. |
update pod
|
218 | |
updatedd pod
|
219 |
my $row = $result->one; |
update pod
|
220 | |
updatedd pod
|
221 |
=head3 Fetch all rows (hash) : C<fetch_hash_all> |
added DBIx::Custom::Guides
|
222 | |
223 |
my $rows = $result->fetch_hash_all; |
|
224 | ||
updatedd pod
|
225 |
C<fetch_hash_all> fetch all rows and put them into array of hash reference. |
update pod
|
226 | |
updatedd pod
|
227 |
=head3 Statement Handle : C<sth> |
added DBIx::Custom::Guides
|
228 | |
229 |
my $sth = $result->sth; |
|
230 | ||
updatedd pod
|
231 |
If you want to get statment handle, use <sth> method. |
update pod
|
232 | |
updatedd pod
|
233 |
=head2 Parameter |
update pod
|
234 | |
updated pod
|
235 |
=head3 Basic of Parameter |
update pod
|
236 | |
updated pod
|
237 |
You can embedd parameter into SQL. |
update pod
|
238 | |
updated pod
|
239 |
select * from book where title = :title and author like :author; |
update pod
|
240 | |
updated pod
|
241 |
:title and :author is parameter |
update pod
|
242 | |
updated pod
|
243 |
Parameter is converted to place holder. |
update pod
|
244 | |
245 |
select * from book where title = ? and author like ?; |
|
246 | ||
updatedd pod
|
247 |
use C<execute> to execute SQL. |
update pod
|
248 | |
updated pod
|
249 |
my $sql = "select * from book where title = :title and author like :author;" |
updatedd pod
|
250 |
$dbi->execute($sql, {title => 'Perl', author => '%Ken%'}); |
update pod
|
251 | |
update pod
|
252 |
You can specify values embedded into place holder as hash reference using |
253 |
C<param> option. |
|
update pod
|
254 | |
updatedd pod
|
255 |
You can specify C<filter> at C<execute>. |
update pod
|
256 | |
updatedd pod
|
257 |
$dbi->execute($sql, {title => 'Perl', author => '%Ken%'} |
update pod
|
258 |
filter => {title => 'to_something'); |
259 | ||
update pod
|
260 |
=head3 Manipulate same name's columns |
added DBIx::Custom::Guides
|
261 | |
update pod
|
262 |
It is ok if there are same name's columns. |
263 |
Let's think two date comparison. |
|
added DBIx::Custom::Guides
|
264 | |
updated pod
|
265 |
my $sql = "select * from table where date > :date and date < :date;"; |
added DBIx::Custom::Guides
|
266 | |
updatedd pod
|
267 |
In this case, You specify parameter values as array reference. |
added DBIx::Custom::Guides
|
268 | |
updatedd pod
|
269 |
my $dbi->execute($sql, {date => ['2010-10-01', '2012-02-10']}); |
added DBIx::Custom::Guides
|
270 | |
updatedd pod
|
271 |
=head2 Create where clause |
update pod
|
272 | |
updatedd pod
|
273 |
=head3 Dinamically create where clause : where |
update pod
|
274 | |
update pod
|
275 |
You want to search multiple conditions in many times. |
276 |
Let's think the following three cases. |
|
update pod
|
277 | |
update pod
|
278 |
Case1: Search only C<title> |
update pod
|
279 | |
updated pod
|
280 |
where title = :title |
update pod
|
281 | |
update pod
|
282 |
Case2: Search only C<author> |
update pod
|
283 | |
updated pod
|
284 |
where author = :author |
update pod
|
285 | |
update pod
|
286 |
Case3: Search C<title> and C<author> |
update pod
|
287 | |
updated pod
|
288 |
where title = :title and author = :author |
update pod
|
289 | |
update pod
|
290 |
L<DBIx::Custom> support dinamic where clause creating. |
updatedd pod
|
291 |
At first, create L<DBIx::Custom::Where> object by C<where>. |
update pod
|
292 | |
293 |
my $where = $dbi->where; |
|
294 | ||
updatedd pod
|
295 |
Set clause by C<clause> |
update pod
|
296 | |
297 |
$where->clause( |
|
updated pod
|
298 |
['and', 'title = :title, 'author = :author'] |
added DBIx::Custom::Guides
|
299 |
); |
300 | ||
update pod
|
301 |
C<clause> is the following format. |
update pod
|
302 | |
updated pod
|
303 |
['or' or 'and', PART1, PART1, PART1] |
added DBIx::Custom::Guides
|
304 | |
update pod
|
305 |
First argument is 'or' or 'and'. |
updated pod
|
306 |
Later than first argument are part which contains parameter. |
update pod
|
307 | |
update pod
|
308 |
You can write more complex format. |
update pod
|
309 | |
310 |
['and', |
|
updated pod
|
311 |
'title = :title', |
312 |
['or', 'author = :author', 'date like :date'] |
|
update pod
|
313 |
] |
314 | ||
updated pod
|
315 |
This mean "title = :title and ( author = :author or date like :date )". |
update pod
|
316 | |
317 |
After setting C<clause>, set C<param>. |
|
added DBIx::Custom::Guides
|
318 |
|
update pod
|
319 |
$where->param({title => 'Perl'}); |
added DBIx::Custom::Guides
|
320 | |
update pod
|
321 |
In this example, parameter contains only title. |
added DBIx::Custom::Guides
|
322 | |
updatedd pod
|
323 |
If you execute C<string_to>, you can get where clause |
update pod
|
324 |
which contain only parameter name. |
update pod
|
325 | |
326 |
my $where_clause = $where->to_string; |
|
327 | ||
update pod
|
328 |
Parameter name is only title, the following where clause is created. |
update pod
|
329 | |
updated pod
|
330 |
where title = :title |
update pod
|
331 | |
update pod
|
332 |
You can also create where clause by stringification. |
update pod
|
333 | |
334 |
my $where_clause = "$where"; |
|
335 | ||
update pod
|
336 |
This is useful to embbed it into SQL. |
added DBIx::Custom::Guides
|
337 | |
update pod
|
338 |
=head3 In case where clause contains same name columns |
check arguments of connect m...
|
339 | |
updated pod
|
340 |
Even if same name parameters exists, you can create where clause. |
update pod
|
341 |
Let's think that there are starting date and ending date. |
added experimental DBIx::Cus...
|
342 | |
update pod
|
343 |
my $param = {start_date => '2010-11-15', end_date => '2011-11-21'}; |
added experimental DBIx::Cus...
|
344 | |
update pod
|
345 |
In this case, you set parameter value as array reference. |
update pod
|
346 | |
347 |
my $p = {date => ['2010-11-15', '2011-11-21']}; |
|
348 | ||
updated pod
|
349 |
You can embbed these values into same name parameters. |
update pod
|
350 | |
351 |
$where->clause( |
|
updated pod
|
352 |
['and', 'date > :date', 'date < :date'] |
added experimental DBIx::Cus...
|
353 |
); |
update pod
|
354 |
$where->param($p); |
355 | ||
update pod
|
356 |
If starting date isn't exists, create the following parameter. |
update pod
|
357 | |
358 |
my $p = {date => [$dbi->not_exists, '2011-11-21']}; |
|
359 | ||
updatedd pod
|
360 |
You can get DBIx::Custom::NotExists object by C<not_exists> |
update pod
|
361 |
This mean correnspondinf value isn't exists. |
update pod
|
362 | |
update pod
|
363 |
If ending date isn't exists, create the following parameter. |
update pod
|
364 | |
365 |
my $p = {date => ['2010-11-15']}; |
|
366 | ||
update pod
|
367 |
If both date isn't exists, create the following parameter. |
update pod
|
368 | |
369 |
my $p = {date => []}; |
|
370 | ||
update pod
|
371 |
This logic is a little difficut. See the following ones. |
update pod
|
372 | |
373 |
my @date; |
|
374 |
push @date, exists $param->{start_date} ? $param->{start_date} |
|
375 |
: $dbi->not_exists; |
|
376 |
push @date, $param->{end_date} if exists $param->{end_date}; |
|
377 |
my $p = {date => \@date}; |
|
378 | ||
updatedd pod
|
379 |
=head3 With C<select> |
update pod
|
380 | |
updatedd pod
|
381 |
You can pass L<DBIx::Custom::Where> object to C<where> of C<select>. |
update pod
|
382 |
|
383 |
my $where = $dbi->where; |
|
updated pod
|
384 |
$where->clause(['and', 'title = :title', 'author = :author']); |
update pod
|
385 |
$where->param({title => 'Perl'}); |
update pod
|
386 |
my $result = $dbi->select(table => 'book', where => $where); |
387 | ||
updatedd pod
|
388 |
You can also pass it to C<where> of C<update>AC<delete> |
update pod
|
389 | |
updatedd pod
|
390 |
=head3 With C<execute> |
added experimental DBIx::Cus...
|
391 | |
update pod
|
392 |
L<DBIx::Custom::Where> object is embedded into SQL. |
added experimental DBIx::Cus...
|
393 | |
update pod
|
394 |
my $where = $dbi->where; |
updated pod
|
395 |
$where->clause(['and', 'title = :title', 'author = :author']); |
update pod
|
396 |
$where->param({title => 'Perl'}); |
update pod
|
397 | |
update pod
|
398 |
my $sql = <<"EOS"; |
updated pod
|
399 |
select * from book; |
update pod
|
400 |
$where |
401 |
EOS |
|
402 | ||
updatedd pod
|
403 |
$dbi->execute($sql, $param, table => 'book'); |
404 | ||
405 |
=head2 Filtering |
|
406 | ||
407 |
=head3 Register filter : C<register_filter> |
|
408 | ||
409 |
If you want to register filter, use C<register_filter>. |
|
410 | ||
411 |
$dbi->register_filter( |
|
412 |
# Time::Piece object to DATE format |
|
413 |
tp_to_date => sub { |
|
414 |
my $date = shift; |
|
415 |
return $tp->strftime('%Y-%m-%d'); |
|
416 |
}, |
|
417 |
|
|
418 |
# DATE to Time::Piece object |
|
419 |
date_to_tp => sub { |
|
420 |
my $date = shift; |
|
421 |
return Time::Piece->strptime($date, '%Y-%m-%d'); |
|
422 |
}, |
|
423 |
); |
|
424 | ||
425 |
=head3 Filter before sending data into database : C<filter> option |
|
426 | ||
427 |
If you filter sending data, use C<filter> option. |
|
428 | ||
429 |
$dbi->execute( |
|
430 |
'insert into book (date) values (:date)', |
|
431 |
{date => $tp}, |
|
432 |
filter => {date => 'tp_to_date'} |
|
433 |
); |
|
434 | ||
435 |
You can use C<filter> option in C<insert>, C<update>, C<delete>, C<select> method. |
|
436 | ||
437 |
$dbi->insert( |
|
438 |
{date => $tp}, |
|
439 |
table => 'book', |
|
440 |
filter => {date => 'tp_to_date'} |
|
441 |
); |
|
442 | ||
443 |
=head3 Filter after fetching data from database. |
|
444 | ||
445 |
If you filter fetch data, use L<DBIx::Custom::Result>'s C<filter> method. |
|
446 | ||
447 |
my $result = $dbi->select(column => 'date', table => 'book'); |
|
448 |
$result->filter(date => 'date_to_tp'); |
|
449 |
my $row = $result->one; |
|
update pod
|
450 | |
add feture. all model class ...
|
451 |
=head2 7. Model |
update pod
|
452 | |
add feture. all model class ...
|
453 |
=head3 Model |
update pod
|
454 | |
add feture. all model class ...
|
455 |
you can define model extending L<DBIx::Custom::Model> |
removed experimental base_ta...
|
456 |
to improve source code view. |
update pod
|
457 | |
add experimental DBIx::Custo...
|
458 |
At first, you create basic model class extending <DBIx::Custom::Model>. |
updatedd pod
|
459 |
Each L<DBIx::Custom> class inherit L<Object::Simple>. |
460 |
so you can inherit the following way. |
|
update pod
|
461 | |
add experimental DBIx::Custo...
|
462 |
package MyModel; |
updatedd pod
|
463 |
use DBIx::Custom::Model -base; |
update pod
|
464 | |
add experimental DBIx::Custo...
|
465 |
Next, you create each model classes. |
update pod
|
466 | |
add experimental DBIx::Custo...
|
467 |
MyModel::book |
removed experimental base_ta...
|
468 | |
add experimental DBIx::Custo...
|
469 |
package MyModel::book; |
updatedd pod
|
470 |
use MyModel -base; |
add experimental DBIx::Custo...
|
471 |
|
472 |
sub insert { ... } |
|
473 |
sub list { ... } |
|
removed experimental base_ta...
|
474 | |
add experimental DBIx::Custo...
|
475 |
MyModel::company |
removed experimental base_ta...
|
476 | |
add experimental DBIx::Custo...
|
477 |
package MyModel::company; |
updatedd pod
|
478 |
use MyModel -base; |
add experimental DBIx::Custo...
|
479 |
|
480 |
sub insert { ... } |
|
481 |
sub list { ... } |
|
add feture. all model class ...
|
482 | |
483 |
The follwoing modules location is needed. |
|
484 | ||
485 |
MyModel.pm |
|
486 |
MyModel / book.pm |
|
487 |
/ company.pm |
|
add experimental DBIx::Custo...
|
488 | |
updatedd pod
|
489 |
You can include these models by C<include_model> |
add experimental DBIx::Custo...
|
490 | |
491 |
$dbi->include_model('MyModel'); |
|
492 | ||
493 |
First argument is name space of model. |
|
494 | ||
add feture. all model class ...
|
495 |
You can use model like this. |
496 | ||
497 |
my $result = $dbi->model('book')->list; |
|
498 | ||
499 |
In mode, You can use such as methods, |
|
updatedd pod
|
500 |
C<insert>, C<update>, C<update_all>, |
501 |
C<delete>, C<delete_all>, C<select> |
|
add feture. all model class ...
|
502 |
without C<table> option. |
503 | ||
updatedd pod
|
504 |
$dbi->model('book')->insert($param); |
update pod
|
505 | |
add feture. all model class ...
|
506 |
Model is L<DBIx::Custom::Model>. |
update pod
|
507 | |
updatedd pod
|
508 |
If you need table nameAyou can get it by C<table>. |
update pod
|
509 | |
add feture. all model class ...
|
510 |
my $table = $model->table; |
update pod
|
511 | |
add feture. all model class ...
|
512 |
You can get L<DBIx::Custom>. |
update pod
|
513 | |
add feture. all model class ...
|
514 |
my $dbi = $model->dbi; |
removed experimental base_ta...
|
515 | |
add feture. all model class ...
|
516 |
You can also call all methods of L<DBIx::Custom> and L<DBI>. |
added experimental DBIx::Cus...
|
517 | |
update pod
|
518 |
# DBIx::Custom method |
add feture. all model class ...
|
519 |
$model->execute($sql); |
update pod
|
520 |
|
521 |
# DBI method |
|
add feture. all model class ...
|
522 |
$model->begin_work; |
523 |
$model->commit; |
|
added experimental DBIx::Cus...
|
524 | |
updatedd pod
|
525 |
If you want to get all models, you can get them by keys of C<models>. |
add models() attribute
|
526 | |
527 |
my @models = keys %{$self->models}; |
|
528 | ||
add DBIx::Custom::Model fore...
|
529 |
You can set primary key to model. |
530 | ||
531 |
$model->primary_key(['id', 'number_id']); |
|
532 | ||
updatedd pod
|
533 |
Primary key is used by C<insert>, C<update>, C<delete>, |
534 |
and C<select> methods. |
|
add DBIx::Custom::Model fore...
|
535 | |
add DBIx::Custom::Model colu...
|
536 |
You can set column names |
537 | ||
538 |
$model->columns(['id', 'number_id']); |
|
539 | ||
updatedd pod
|
540 |
Column names is automarically set by C<setup_model>. |
541 |
This method is needed to be call after C<include_model>. |
|
add experimental setup_model...
|
542 | |
543 |
$dbi->setup_model; |
|
544 | ||
cleanup
|
545 |
You can set C<join> |
cleanup
|
546 | |
cleanup
|
547 |
$model->join(['left outer join company on book.company_id = company.id']); |
cleanup
|
548 | |
updatedd pod
|
549 |
C<join> is used by C<select> method. |
cleanup
|
550 | |
updatedd pod
|
551 |
=head2 Create column clause automatically : mycolumn, column |
cleanup
|
552 | |
updatedd pod
|
553 |
To create column clause automatically, use C<mycolumn>. |
cleanup
|
554 |
Valude of C<table> and C<columns> is used. |
555 | ||
cleanup
|
556 |
my $mycolumns = $model->mycolumn; |
cleanup
|
557 | |
data_source is DEPRECATED! I...
|
558 |
If C<table> is 'book'AC<column> is ['id', 'name'], |
cleanup
|
559 |
the following clause is created. |
560 | ||
561 |
book.id as id, book.name as name |
|
562 | ||
563 |
These column name is for removing column name ambiguities. |
|
564 | ||
565 |
You can create column clause from columns of other table. |
|
566 | ||
cleanup
|
567 |
my $columns = $model->column('company'); |
cleanup
|
568 | |
cleanup
|
569 |
If C<table> is "company", C<column> return ['id', 'name'], |
cleanup
|
570 |
the following clause is created. |
571 | ||
cleanup
|
572 |
company.id as "company.id", company.name as "company.name" |
add experimental DBIx::Custo...
|
573 | |
add feture. all model class ...
|
574 |
=head2 Model Examples |
added DBIx::Custom::Guides
|
575 | |
add feture. all model class ...
|
576 |
Model examples |
added DBIx::Custom::Guides
|
577 | |
update pod
|
578 |
package MyDBI; |
updatedd pod
|
579 |
use DBIx::Custom -base; |
added DBIx::Custom::Guides
|
580 |
|
update pod
|
581 |
sub connect { |
582 |
my $self = shift->SUPER::connect(@_); |
|
583 |
|
|
add feture. all model class ...
|
584 |
$self->include_model( |
585 |
MyModel => [ |
|
removed experimental base_ta...
|
586 |
'book', |
587 |
'company' |
|
588 |
] |
|
update pod
|
589 |
); |
590 |
} |
|
removed experimental base_ta...
|
591 |
|
add feture. all model class ...
|
592 |
package MyModel::book; |
updatedd pod
|
593 |
use DBIx::Custom::Model -base; |
removed experimental base_ta...
|
594 |
|
updatedd pod
|
595 |
has primary_key => sub { ['id'] }; |
add experimental update_at()...
|
596 |
|
removed experimental base_ta...
|
597 |
sub insert { ... } |
598 |
sub list { ... } |
|
599 |
|
|
add feture. all model class ...
|
600 |
package MyModel::company; |
updatedd pod
|
601 |
use DBIx::Custom::Model -base; |
add experimental update_at()...
|
602 | |
updatedd pod
|
603 |
has primary_key => sub { ['id'] }; |
removed experimental base_ta...
|
604 |
|
605 |
sub insert { ... } |
|
606 |
sub list { ... } |
|
update pod
|
607 | |
added DBIx::Custom::Guides
|
608 |
=cut |