added experimental expand me...
|
1 |
=encoding utf8 |
2 | ||
updated document
|
3 |
=head1 NAME |
added experimental expand me...
|
4 | |
update pod
|
5 |
DBIx::Custom::Guide::Ja - DBIx::Customのガイドブック |
added experimental expand me...
|
6 | |
7 |
=head1 ガイド |
|
8 | ||
update pod
|
9 |
L<DBIx::Custom>はSQLの実行を簡単に行うためのクラスです。 |
10 |
L<DBIx::Class>やL<DBIx::Simple>と同じように |
|
updated document
|
11 |
L<DBI>のラッパクラスになっています。L<DBIx::Class>よりも簡単に、 |
12 |
L<DBIx::Simple>よりもはるかに柔軟なことを行うことができます。 |
|
added experimental expand me...
|
13 | |
14 |
L<DBIx::Custom>はO/Rマッパーではありません。O/Rマッパーは |
|
15 |
便利ですが、O/Rマッパのたくさんの文法を覚える必要があります。 |
|
updated document
|
16 |
また、O/Rマッパによって生成されたSQLは非効率なことがありますし、 |
17 |
複雑なSQLを生成することができないので、 |
|
update pod
|
18 |
生のSQLを実行しなければならない場合がたくさんあります。 |
added experimental expand me...
|
19 | |
updated document
|
20 |
L<DBIx::Custom>はO/Rマッパとは対照的な設計が行われています。 |
updated document
|
21 |
L<DBIx::Custom>の主な目的は、SQLを尊重しつつ、L<DBI>だけでは |
updated document
|
22 |
とてもめんどうな作業を簡単にすることです。もしSQLについて |
23 |
多くの知識を持っているならば、L<DBIx::Custom>でそのまま |
|
updated document
|
24 |
活用することができます。 |
updated document
|
25 | |
update pod
|
26 |
L<DBIx::Custom>の仕組みを少しだけ説明しておきます。 |
updated document
|
27 |
L<DBIx::Custom>では、タグと呼ばれるものを |
28 |
SQLの中に埋め込むことができます。 |
|
29 | ||
30 |
select * from book where {= title} and {=author}; |
|
31 | ||
32 |
{}で囲まれた部分がタグです。このSQLは実際に実行されるときには |
|
33 |
次のようにプレースホルダに展開されます。 |
|
34 | ||
updated document
|
35 |
select * from book where title = ? and author = ?; |
updated document
|
36 | |
37 |
これらの展開にはどのような意味があるのでしょうかと質問 |
|
update pod
|
38 |
されるかもしれません。この簡単な仕組みの上に |
39 |
便利な機能が実装されます。それは以下のようなものです。 |
|
updated document
|
40 | |
updated document
|
41 |
=over 4 |
updated document
|
42 | |
update pod
|
43 |
=item 1. プレースホルダにバインドする値をハッシュリファレンスで指定 |
updated document
|
44 | |
update pod
|
45 |
L<DBI>を使うのであればプレースホルダにバインドする値は配列 |
updated document
|
46 |
で指定する必要があります。 |
updated document
|
47 | |
updated document
|
48 |
$sth->execute(@bind); |
49 | ||
50 |
L<DBIx::Custom>を利用するのであればハッシュリファレンスで指定すること |
|
51 |
できます。 |
|
52 |
|
|
53 |
my $param = {title => 'Perl', author => 'Ken'}; |
|
54 |
$dbi->execute($sql, $param); |
|
55 | ||
update pod
|
56 |
=item 2. 値のフィルタリング |
updated document
|
57 | |
update pod
|
58 |
L<DBIx::Custom>はフィルタリングの機能を提供します。 |
updated document
|
59 |
たとえば、日付の列は、Perlで扱うときにはC<Time::Piece>などの日付オブジェクト |
60 |
で扱い、データベースに格納するときはデータベースの日付型に変換したい |
|
61 |
と思うのではないでしょうか。またデータベースから取り出すときは |
|
62 |
データベースの日付型から日付オブジェクトに変換したと思うのでは |
|
63 |
ないでしょうか。 |
|
64 | ||
65 |
このようなときはフィルタ機能を使うことができます。 |
|
66 | ||
67 |
まずフィルタを登録します。 |
|
68 | ||
69 |
$dbi->register_filter( |
|
70 |
tp_to_date => sub { |
|
71 |
... |
|
72 |
}, |
|
73 |
date_to_tp => sub { |
|
74 |
... |
|
75 |
} |
|
76 |
); |
|
77 | ||
78 |
次にテーブルの各列にこのフィルタを適用します。 |
|
79 | ||
80 |
$dbi->apply_filter('book', |
|
renamed dbi_options to dbi_o...
|
81 |
'issue_date' => {out => 'tp_to_date', in => 'date_to_tp'} |
updated document
|
82 |
); |
83 | ||
84 |
outはPerlからデータベースに保存する方向、inはデータベースからPerlに取得する方向です。 |
|
85 | ||
update pod
|
86 |
多くのメソッドで自動的にこのフィルタが有効になります。 |
updated document
|
87 | |
update pod
|
88 |
$dbi->insert(table => 'book', param => {issue_date => $tp}); |
updated document
|
89 | |
90 |
=item 3. 選択的な検索条件 |
|
91 | ||
update pod
|
92 |
L<DBI>では選択的に検索条件を作成することは難しいです。 |
updated document
|
93 | |
94 |
たとえば、検索条件にtitleとauthorが指定された場合は次のSQLを |
|
95 | ||
96 |
select * from book where title = ? and author = ?; |
|
97 | ||
98 |
titleだけの場合は次のSQLを |
|
99 | ||
100 |
select * from book where title = ?; |
|
101 |
|
|
update pod
|
102 |
authorだけの場合は次のSQLを実行した場合を考えましょう。 |
updated document
|
103 | |
104 |
select * from book where author = ?; |
|
105 | ||
106 |
これはとても大変な作業なので、通常はL<SQL::Abstract>を動的に生成してくれる |
|
107 |
モジュールを利用することになります。 |
|
108 | ||
109 |
L<DBIx::Custom>はさらに簡単で便利な方法を用意しています。 |
|
110 | ||
update pod
|
111 |
# Whereオブジェクト |
updated document
|
112 |
my $where = $dbi->where; |
update pod
|
113 |
|
114 |
# 検索条件 |
|
updated document
|
115 |
$where->clause( |
116 |
['and', '{= title}', {'= author'}] |
|
117 |
); |
|
update pod
|
118 |
|
119 |
# 必要な列を自動的に選択するための設定 |
|
120 |
$where->param({title => 'Perl'}); |
|
updated document
|
121 | |
update pod
|
122 |
# SQLへのWhere句の埋め込み |
updated document
|
123 |
my $sql = "select * from book $where"; |
124 | ||
125 |
詳しい説明は後ほど行いますが、上記のように記述すれば、 |
|
126 |
L<DBIx::Custom>では選択的な検索条件を持つWhere句を生成することができます。 |
|
127 |
検索条件が入れ子になった構造やorについても対応しています。 |
|
128 | ||
129 |
=item 4. 挿入、更新、削除、選択を行うためのメソッド |
|
130 | ||
update pod
|
131 |
L<DBIx::Custom>では挿入、更新、削除、選択を行うための |
132 |
メソッドを提供しています。 |
|
133 |
C<insert()>, C<update()>, C<delete()>,C<select()>などがあります。 |
|
updated document
|
134 | |
135 |
my $param = {title => 'Perl', author => 'Ken'}; |
|
136 |
$dbi->insert(table => 'book', param => $param); |
|
137 | ||
update pod
|
138 |
=item 5. テーブルのためのメソッドの登録 |
updated document
|
139 | |
update pod
|
140 |
テーブルのためにメソッドを登録することができます。 |
updated document
|
141 | |
update pod
|
142 |
$dbi->table('book')->method( |
updated document
|
143 |
list => sub { |
144 |
... |
|
145 |
}, |
|
update pod
|
146 |
something => sub { |
147 |
... |
|
updated document
|
148 |
} |
149 |
); |
|
150 | ||
update pod
|
151 |
メソッドの利用です。 |
updated document
|
152 | |
153 |
$dbi->table('book')->list; |
|
added experimental expand me...
|
154 | |
update pod
|
155 |
多くのO/Rマッパではテーブルのためのクラスを作成する必要がありますが、 |
156 |
L<DBIx::Custom>では簡単です。 |
|
added experimental expand me...
|
157 | |
updated document
|
158 |
=back |
159 | ||
update pod
|
160 |
L<DBIx::Custom>はとても便利です。 |
161 |
興味をもたれた方は、続きをご覧になってみてください。 |
|
added experimental expand me...
|
162 | |
163 |
=head2 1. データベースへの接続 |
|
164 | ||
update pod
|
165 |
L<DBIx::Custom>を読み込みます。 |
updated document
|
166 | |
167 |
use DBIx::Custom; |
|
168 | ||
update pod
|
169 |
データベースに接続するにはC<connect()>メソッドを使用します。 |
170 |
戻り値はL<DBIx::Custom>オブジェクトです。 |
|
added experimental expand me...
|
171 | |
updated document
|
172 |
my $dbi = DBIx::Custom->connect( |
update pod
|
173 |
data_source => "dbi:mysql:database=bookstore", |
updated document
|
174 |
user => 'ken', |
175 |
password => '!LFKD%$&', |
|
176 |
dbi_options => {mysql_enable_utf8 => 1} |
|
177 |
); |
|
added experimental expand me...
|
178 | |
update pod
|
179 |
C<data_source>はデータベースシステムに応じたものである必要があります。 |
180 |
以下はデータソースのサンプルです。 |
|
added experimental expand me...
|
181 | |
updated document
|
182 |
B<MySQL> |
added experimental expand me...
|
183 | |
deprecated DBIx::Custom::MyS...
|
184 |
"dbi:mysql:database=$database" |
185 |
"dbi:mysql:database=$database;host=$hostname;port=$port" |
|
added experimental expand me...
|
186 | |
updated document
|
187 |
B<SQLite> |
deprecated DBIx::Custom::MyS...
|
188 | |
189 |
"dbi:SQLite:dbname=$database" |
|
190 |
"dbi:SQLite:dbname=:memory:" |
|
191 | ||
updated document
|
192 |
B<PostgreSQL> |
deprecated DBIx::Custom::MyS...
|
193 | |
194 |
"dbi:Pg:dbname=$dbname" |
|
195 | ||
updated document
|
196 |
B<Oracle> |
deprecated DBIx::Custom::MyS...
|
197 | |
198 |
"dbi:Oracle:$dbname" |
|
199 |
"dbi:Oracle:host=$host;sid=$sid" |
|
200 | ||
updated document
|
201 |
B<ODBC(Microsoft Access)> |
deprecated DBIx::Custom::MyS...
|
202 | |
203 |
"dbi:ODBC:driver=Microsoft Access Driver (*.mdb);dbq=hoge.mdb" |
|
204 | ||
updated document
|
205 |
B<ODBC(SQL Server)> |
deprecated DBIx::Custom::MyS...
|
206 | |
207 |
"dbi:ODBC:driver={SQL Server};Server=(local);database=test;Trusted_Connection=yes;AutoTranslate=No;" |
|
added experimental expand me...
|
208 | |
update pod
|
209 |
認証が必要な場合は、C<user>とC<password>を指定できます。 |
updated document
|
210 | |
update pod
|
211 |
L<DBIx::Custom>はL<DBI>のラッパークラスです。 |
212 |
L<DBI>のデータベースハンドルは取得するにあhC<dbh()>を使用します。 |
|
added experimental expand me...
|
213 | |
214 |
my $dbh = $dbi->dbh; |
|
215 | ||
updated document
|
216 |
L<DBIx::Custom>ではデータベースハンドル属性にはデフォルトで次のものが設定されます。 |
added experimental expand me...
|
217 |
|
218 |
$dbi->dbh->{RaiseError} = 1; |
|
219 |
$dbi->dbh->{PrintError} = 0; |
|
220 |
$dbi->dbh->{AutoCommit} = 1; |
|
221 | ||
update pod
|
222 |
致命的なエラーが起こるとプログラムは終了します。 |
223 |
SQLが実行されると自動的にコミットされます。 |
|
added experimental expand me...
|
224 | |
updated document
|
225 |
=head2 2. 挿入、更新、削除、選択のためのメソッド |
added experimental expand me...
|
226 | |
update pod
|
227 |
下記のメソッドがあります。 |
added experimental expand me...
|
228 | |
update pod
|
229 |
=head3 行の挿入 C<insert()> |
added experimental expand me...
|
230 | |
update pod
|
231 |
データベースに行を挿入するにはC<insert()>を使用します。 |
added experimental expand me...
|
232 | |
remove DBIx::Custom::Model
|
233 |
$dbi->insert(table => 'book', |
added experimental expand me...
|
234 |
param => {title => 'Perl', author => 'Ken'}); |
235 | ||
update pod
|
236 |
C<table>はテーブル名、C<param>は挿入する行のデータです。 |
added experimental expand me...
|
237 | |
update pod
|
238 |
次のSQLが実行されます。 |
updated document
|
239 | |
240 |
insert into (title, author) values (?, ?); |
|
added experimental expand me...
|
241 | |
update pod
|
242 |
=head3 データの更新 C<update()> |
added experimental expand me...
|
243 | |
update pod
|
244 |
データベースの行を更新するには、C<update()>を使用します。 |
added experimental expand me...
|
245 | |
remove DBIx::Custom::Model
|
246 |
$dbi->update(table => 'book', |
added experimental expand me...
|
247 |
param => {title => 'Perl', author => 'Ken'}, |
248 |
where => {id => 5}); |
|
249 | ||
update pod
|
250 |
C<table>はテーブル名、C<param>は更新データ、C<where>は |
251 |
条件です。 |
|
added experimental expand me...
|
252 | |
update pod
|
253 |
次のSQLが実行されます。 |
updated document
|
254 | |
255 |
update book set title = ?, author = ?; |
|
added experimental expand me...
|
256 | |
update pod
|
257 |
安全のためC<where>のないupdate()を実効することはできません。 |
added experimental expand me...
|
258 |
もしすべての行を更新したい場合は |
updated document
|
259 |
C<update_all()>を使用してください。 |
added experimental expand me...
|
260 | |
remove DBIx::Custom::Model
|
261 |
$dbi->update_all(table => 'book', |
added experimental expand me...
|
262 |
param => {title => 'Perl', author => 'Ken'}); |
263 | ||
update pod
|
264 |
=head3 データの削除 C<delete()> |
added experimental expand me...
|
265 | |
update pod
|
266 |
データベースの行を1件削除するには、C<delete()>を使用します。 |
added experimental expand me...
|
267 | |
remove DBIx::Custom::Model
|
268 |
$dbi->delete(table => 'book', |
added experimental expand me...
|
269 |
where => {author => 'Ken'}); |
270 | ||
update pod
|
271 |
C<table>はテーブル名、C<where>は条件です。 |
added experimental expand me...
|
272 | |
update pod
|
273 |
次のSQLが実行されます。 |
updated document
|
274 | |
275 |
delete from book where id = ?; |
|
added experimental expand me...
|
276 | |
update pod
|
277 |
安全のためC<where>のないC<delete()>を実効することはできません。 |
added experimental expand me...
|
278 |
もしすべての行を削除したい場合は |
updated document
|
279 |
C<delete_all()>を使用してください。 |
added experimental expand me...
|
280 | |
remove DBIx::Custom::Model
|
281 |
$dbi->delete_all(table => 'book'); |
added experimental expand me...
|
282 | |
update pod
|
283 |
=head3 データの選択 C<select()> |
added experimental expand me...
|
284 | |
updated document
|
285 |
行を選択するにはC<select()>を使用します。 |
added experimental expand me...
|
286 | |
remove DBIx::Custom::Model
|
287 |
my $result = $dbi->select(table => 'book'); |
added experimental expand me...
|
288 | |
update pod
|
289 |
次のSQLが実行されます。 |
added experimental expand me...
|
290 | |
updated document
|
291 |
select * from book; |
added experimental expand me...
|
292 | |
update pod
|
293 |
戻り値はL<DBIx::Custom::Result> |
updated document
|
294 |
オブジェクトです。行をフェッチするにはC<fetch()>を使用します。 |
added experimental expand me...
|
295 | |
296 |
while (my $row = $result->fetch) { |
|
297 |
my $title = $row->[0]; |
|
298 |
my $author = $row->[1]; |
|
299 |
} |
|
300 | ||
update pod
|
301 |
L<DBIx::Custom::Result>についてはL<3. 行のフェッチ/"3. 行のフェッチ">を見てください。 |
updated document
|
302 | |
update pod
|
303 |
サンプルを続けます。 |
added experimental expand me...
|
304 | |
305 |
my $result = $dbi->select( |
|
remove DBIx::Custom::Model
|
306 |
table => 'book', |
updated document
|
307 |
column => ['author', 'title'], |
added experimental expand me...
|
308 |
where => {author => 'Ken'} |
309 |
); |
|
310 | ||
update pod
|
311 |
C<column>は列名、C<where>は条件です。 |
312 | ||
313 |
次のSQLが実行されます。 |
|
updated document
|
314 | |
315 |
select author, title from book where author = ?; |
|
added experimental expand me...
|
316 | |
update pod
|
317 |
次のサンプルです。 |
added experimental expand me...
|
318 | |
319 |
my $result = $dbi->select( |
|
remove DBIx::Custom::Model
|
320 |
table => ['book', 'rental'], |
updated document
|
321 |
where => {book.name => 'Perl'}, |
remove DBIx::Custom::Model
|
322 |
relation => {'book.id' => 'rental.book_id'} |
added experimental expand me...
|
323 |
); |
324 | ||
update pod
|
325 |
C<relation>テーブル間の関係です。これは内部結合です。 |
326 | ||
327 |
次のSQLが実行されます。 |
|
328 | ||
updated document
|
329 |
bookテーブルのid列とrentalテーブルのbook_idが関連付けられます。 |
update pod
|
330 |
次のSQLが実行されます。 |
added experimental expand me...
|
331 | |
updated document
|
332 |
select * from book, rental where book.name = ? and book.id = rental.book_id; |
added experimental expand me...
|
333 | |
update pod
|
334 |
次のサンプルです。 |
added experimental expand me...
|
335 | |
336 |
my $result = $dbi->select( |
|
remove DBIx::Custom::Model
|
337 |
table => 'book', |
added experimental expand me...
|
338 |
where => {author => 'Ken'}, |
updated document
|
339 |
append => 'for update', |
added experimental expand me...
|
340 |
); |
341 | ||
update pod
|
342 |
C<append>はSQLの末尾に追加される文字列です。 |
343 | ||
344 |
次のSQLが実行されます。 |
|
updated document
|
345 | |
updated document
|
346 |
select * book where author = ? for update; |
updated document
|
347 | |
updated document
|
348 |
またC<append>は、C<select>だけでなくC<insert()>、C<update()>、C<update_all()> |
349 |
C<delete()>、C<delete_all()>、C<select()>で使用することもできます。 |
|
updated document
|
350 | |
update pod
|
351 |
=head3 SQLの実行 C<execute()> |
removed experimental txn_sco...
|
352 | |
update pod
|
353 |
SQLを実行するにはC<execute()>を使用します。 |
removed experimental txn_sco...
|
354 | |
355 |
$dbi->execute("select * from book;"); |
|
356 | ||
update pod
|
357 |
タグを処理してSQLを実行します。 |
removed experimental txn_sco...
|
358 | |
359 |
$dbi->execute( |
|
360 |
"select * from book {= title} and {= author};" |
|
361 |
param => {title => 'Perl', author => 'Ken'} |
|
362 |
); |
|
363 | ||
update pod
|
364 |
次のSQLが実行されます。 |
removed experimental txn_sco...
|
365 | |
366 |
select * from book title = ? and author = ?; |
|
367 | ||
update pod
|
368 |
プレースホルダにtitleとauthorの値が埋め込まれます。 |
removed experimental txn_sco...
|
369 | |
update pod
|
370 |
タグについてはL<5. タグ/"5. タグ">を見てください。 |
removed experimental txn_sco...
|
371 | |
update pod
|
372 |
またC<execute()>のSQLの末尾にはセミコロンを置く必要はありません。 |
removed experimental txn_sco...
|
373 | |
374 |
$dbi->execute('select * from book'); |
|
375 | ||
updated document
|
376 |
=head2 3. 行のフェッチ |
377 | ||
updated document
|
378 |
C<select()>メソッドの戻り値はL<DBIx::Custom::Result>オブジェクトです。 |
update pod
|
379 |
行をフェッチするためのさまざまなメソッドがあります。 |
updated document
|
380 | |
update pod
|
381 |
=head3 1行づつフェッチ(配列) C<fetch()> |
updated document
|
382 | |
updated document
|
383 |
一行フェッチして配列のリファレンスに格納するにはC<fetch()>を使用します。 |
updated document
|
384 | |
update pod
|
385 |
my $row = $result->fetch; |
386 | ||
387 |
以下のようにすべての行を取得することができます。 |
|
388 | ||
updated document
|
389 |
while (my $row = $result->fetch) { |
updated document
|
390 |
my $title = $row->[0]; |
391 |
my $author = $row->[1]; |
|
updated document
|
392 |
} |
393 | ||
update pod
|
394 |
=head3 最初の行だけフェッチ(配列) C<fetch_first()> |
updated document
|
395 | |
updated document
|
396 |
一行だけフェッチして配列のリファレンスに格納するにはC<fetch_first()> |
397 |
を使用します。 |
|
updated document
|
398 | |
399 |
my $row = $result->fetch_first; |
|
400 | ||
update pod
|
401 |
ステートメントハンドルのC<finish()>が実行される |
402 |
ので残りの行をフェッチできません。 |
|
updated document
|
403 | |
update pod
|
404 |
=head3 複数行を順にフェッチ(配列) C<fetch_multi()> |
updated document
|
405 | |
updated document
|
406 |
複数行をフェッチして配列のリファレンスを要素に持つ |
407 |
配列のリファレンスに格納するにはC<fetch_multi()>を使用します。 |
|
updated document
|
408 | |
updated document
|
409 |
while (my $rows = $result->fetch_multi(2)) { |
410 |
my $title0 = $rows->[0][0]; |
|
411 |
my $author0 = $rows->[0][1]; |
|
412 |
|
|
413 |
my $title1 = $rows->[1][0]; |
|
414 |
my $author1 = $rows->[1][1]; |
|
updated document
|
415 |
} |
416 | ||
update pod
|
417 |
取り出したい行数を引数に指定します。 |
updated document
|
418 | |
update pod
|
419 |
次のようなデータを取得できます。 |
updated document
|
420 | |
421 |
[ |
|
422 |
['Perl', 'Ken'], |
|
423 |
['Ruby', 'Mark'] |
|
424 |
] |
|
425 | ||
update pod
|
426 |
=head3 すべての行をフェッチ(配列) C<fetch_all> |
updated document
|
427 | |
updated document
|
428 |
すべての行をフェッチして配列のリファレンスを要素に持つ |
429 |
配列のリファレンスに格納するにはC<fetch_all()>を使用します。 |
|
updated document
|
430 | |
431 |
my $rows = $result->fetch_all; |
|
432 | ||
updated document
|
433 |
すべての行を格納した次のようなデータを取得できます。 |
434 | ||
435 |
[ |
|
436 |
['Perl', 'Ken'], |
|
437 |
['Ruby', 'Mark'] |
|
438 |
] |
|
439 | ||
update pod
|
440 |
=head3 1行づつフェッチ(ハッシュ) C<fetch_hash()> |
updated document
|
441 | |
updated document
|
442 |
一行フェッチしてハッシュのリファレンスに格納するにはC<fetch_hash()>を使用します。 |
updated document
|
443 | |
444 |
while (my $row = $result->fetch_hash) { |
|
445 |
my $title = $row->{title}; |
|
446 |
my $author = $row->{author}; |
|
447 |
} |
|
448 | ||
update pod
|
449 |
=head3 最初の行だけフェッチ(ハッシュ) C<fetch_hash_first()> |
updated document
|
450 | |
updated document
|
451 |
一行だけフェッチしてハッシュのリファレンスに格納するには |
452 |
C<fetch_hash_first()>を使用します。 |
|
updated document
|
453 | |
454 |
my $row = $result->fetch_hash_first; |
|
455 | ||
update pod
|
456 |
ステートメントハンドルのC<finish()>が実行される |
457 |
ので残りの行をフェッチできません。 |
|
updated document
|
458 | |
update pod
|
459 |
=head3 複数行をフェッチ(ハッシュ) C<fetch_hash_multi()> |
updated document
|
460 | |
updated document
|
461 |
複数行をフェッチしてハッシュのリファレンスを要素に持つ |
462 |
配列のリファレンスに格納するにはC<fetch_hash_multi()> |
|
463 |
を使用します。 |
|
updated document
|
464 | |
465 |
while (my $rows = $result->fetch_hash_multi(5)) { |
|
updated document
|
466 |
my $title0 = $rows->[0]{title}; |
467 |
my $author0 = $rows->[0]{author}; |
|
468 |
my $title1 = $rows->[1]{title}; |
|
469 |
my $author1 = $rows->[1]{author}; |
|
updated document
|
470 |
} |
471 | ||
updated document
|
472 |
引数には取り出したい行数を指定します。 |
473 | ||
update pod
|
474 |
次のようなデータを取得できます。 |
updated document
|
475 | |
476 |
[ |
|
477 |
{title => 'Perl', author => 'Ken'}, |
|
478 |
{title => 'Ruby', author => 'Mark'} |
|
479 |
] |
|
480 | ||
update pod
|
481 |
=head3 すべての行をフェッチ(ハッシュ) C<fetch_hash_all()> |
updated document
|
482 | |
updated document
|
483 |
すべての行をフェッチしてハッシュのリファレンスを要素に持つ |
484 |
配列のリファレンスに格納するにはC<fetch_hash_all()> |
|
485 |
を使用します。 |
|
updated document
|
486 | |
487 |
my $rows = $result->fetch_hash_all; |
|
488 | ||
update pod
|
489 |
次のようなデータを取得できます。 |
updated document
|
490 | |
491 |
[ |
|
492 |
{title => 'Perl', author => 'Ken'}, |
|
493 |
{title => 'Ruby', author => 'Mark'} |
|
494 |
] |
|
495 | ||
update pod
|
496 |
=head3 ステートメントハンドル C<sth()> |
updated document
|
497 | |
update pod
|
498 |
ステートメントハンドル取得したい場合は |
499 |
<sth()>を使用します。 |
|
updated document
|
500 | |
501 |
my $sth = $result->sth; |
|
502 | ||
renamed dbi_options to dbi_o...
|
503 |
=head2 4. フィルタリング |
504 | ||
update pod
|
505 |
L<DBIx::Custom>は値のフィルタリング機能を提供します。 |
506 | ||
507 |
たとえば、データをデータベースに登録するときは |
|
508 |
L<Time::Piece>オブジェクトからデータベースの日付のフォーマットに、 |
|
509 |
データベースからデータを取得するときは、 |
|
510 |
データベースの日付のフォーマットからL<Time::Piece>オブジェクト |
|
511 |
に変換を行いたいと思うことでしょう。 |
|
renamed dbi_options to dbi_o...
|
512 | |
update pod
|
513 |
=head3 フィルタの登録 C<register_filter()> |
renamed dbi_options to dbi_o...
|
514 | |
515 |
フィルタを登録するにはC<register_filter()>を使用します。 |
|
516 | ||
517 |
$dbi->register_filter( |
|
518 |
# Time::Piece object to DATE format |
|
519 |
tp_to_date => sub { |
|
520 |
my $date = shift; |
|
521 | ||
522 |
return '0000-00-00' unless $tp; |
|
523 |
return $tp->strftime('%Y-%m-%d'); |
|
524 |
}, |
|
525 |
|
|
526 |
# DATE to Time::Piece object |
|
527 |
date_to_tp => sub { |
|
528 |
my $date = shift; |
|
529 | ||
530 |
return if $date eq '0000-00-00'; |
|
531 |
return Time::Piece->strptime($date, '%Y-%m-%d'); |
|
532 |
}, |
|
533 |
); |
|
534 | ||
535 |
登録したフィルタはC<apply_filter()>などで利用することができます。 |
|
536 | ||
update pod
|
537 |
=head3 フィルタの適用 C<apply_filter()> |
renamed dbi_options to dbi_o...
|
538 | |
539 |
作成したフィルタを適用するには、C<apply_filter()>を使用します。 |
|
540 | ||
541 |
$dbi->apply_filter('book', |
|
542 |
issue_date => {out => 'tp_to_date', in => 'date_to_tp'}, |
|
543 |
first_issue_date => {out => 'tp_to_date', in => 'date_to_tp'} |
|
544 |
); |
|
545 | ||
update pod
|
546 |
第一引数はテーブル名です。第1引数より後の引数は、列名とフィルタルールのペアを記述します。 |
renamed dbi_options to dbi_o...
|
547 |
フィルタルールのoutには、データベースにデータを送信するときに適用するフィルタを、 |
548 |
フィルタルールのinには、データベースからデータを取得するときに適用するフィルタを |
|
update pod
|
549 |
記述します。 |
550 | ||
551 |
フィルタとしてコードリファレンスを |
|
renamed dbi_options to dbi_o...
|
552 |
指定することもできます。 |
553 | ||
554 |
issue_date => {out => sub { ... }, in => sub { ... }} |
|
555 | ||
556 |
適用されたフィルタはC<insert()>、C<update()>、C<update_all()>、C<delete()>、 |
|
557 |
C<delete_all()>、C<select()>で有効になります。 |
|
558 | ||
559 |
my $tp = Time::Piece->strptime('2010/10/14', '%Y/%m/%d'); |
|
560 |
my $result = $dbi->select(table => 'book', where => {issu_date => $tp}); |
|
561 | ||
562 |
データベースにデータが送信されるときに、L<Time::Piece>オブジェクトは |
|
563 |
データベースの日付のフォーマット「2010-10-14」に変換されます。 |
|
564 | ||
update pod
|
565 |
データをフェッチするときには、データベースの日付のフォーマットは |
566 |
L<Time::Piece>オブジェクトに変換されます。 |
|
renamed dbi_options to dbi_o...
|
567 | |
568 |
my $row = $resutl->fetch_hash_first; |
|
569 |
my $tp = $row->{issue_date}; |
|
570 | ||
update pod
|
571 |
テーブル名を含む列名を使用することもできます。 |
removed experimental expand
|
572 | |
573 |
$dbi->select( |
|
574 |
table => 'book', |
|
575 |
where => {'book.title' => 'Perl', 'book.author' => 'Ken'} |
|
576 |
); |
|
577 | ||
update pod
|
578 |
=head3 個別のフィルタ C<filter> |
renamed dbi_options to dbi_o...
|
579 | |
removed experimental txn_sco...
|
580 |
個別にフィルタを適用することもできます。 |
renamed dbi_options to dbi_o...
|
581 |
個別のフィルタはC<apply_filter()>で適用したフィルタを上書きます。 |
removed experimental txn_sco...
|
582 | |
update pod
|
583 |
データを送信する場合に個別のフィルタを適用するには、C<filter>オプションを使用します。 |
584 |
このオプションはC<insert()>、C<update()>、 |
|
removed experimental txn_sco...
|
585 |
C<update_all()>、C<delete()>、C<delete_all()>、C<select()>、C<execute()> |
586 |
で使用することができます。 |
|
renamed dbi_options to dbi_o...
|
587 | |
removed experimental txn_sco...
|
588 |
$dbi->insert( |
589 |
table => 'book', |
|
590 |
param => {issue_date => $tp, first_issue_date => $tp}, |
|
591 |
filter => {issue_date => 'tp_to_date', first_issue_date => 'tp_to_date'} |
|
592 |
); |
|
593 | ||
594 |
C<execute()>の例を示します。 |
|
595 | ||
596 |
my $sql = <<"EOS"; |
|
597 |
select YEAR(issue_date) as issue_year |
|
598 |
from book |
|
599 |
where YEAR(issue_date) = {? issue_year} |
|
600 |
EOS |
|
601 |
|
|
602 |
my $result = $dbi->execute( |
|
603 |
$sql, |
|
604 |
param => {issue_year => '2010'}, |
|
605 |
filter => {issue_year => 'tp_to_year'} |
|
606 |
); |
|
607 | ||
update pod
|
608 |
行をフェッチするときにも個別のフィルタを適用することができます。 |
609 |
C<DBIx::Custom::Result>のC<filter()>を使用します。 |
|
renamed dbi_options to dbi_o...
|
610 | |
removed experimental txn_sco...
|
611 |
$result->filter(issue_year => 'year_to_tp'); |
612 | ||
update pod
|
613 |
=head3 最後のフィルタリング : C<end_filter()> |
removed experimental txn_sco...
|
614 | |
update pod
|
615 |
最後にもうひとつフィルタを追加することができます。 |
616 |
最終的な出力を作成する場合に便利です。 |
|
617 |
最後のフィルタを登録するにはC<end_filter()>を使用します。 |
|
removed experimental txn_sco...
|
618 | |
619 |
$result->end_filter(issue_date => sub { |
|
620 |
my $tp = shift; |
|
621 |
|
|
622 |
return '' unless $tp; |
|
623 |
return $tp->strftime('%Y/%m/%d %h:%m:%s (%a)'); |
|
624 |
}); |
|
625 | ||
update pod
|
626 |
この例ではL<Time::Piece>オブジェクトを読みやすい書式に変換しています。 |
removed experimental txn_sco...
|
627 | |
update pod
|
628 |
=head3 フィルタの適用の自動化 C<each_column()> |
removed experimental txn_sco...
|
629 | |
update pod
|
630 |
日付型の列は自動的にフィルタを適用できると便利です。 |
631 |
列のすべての情報を処理するためのC<each_column()>を利用することができます。 |
|
removed experimental txn_sco...
|
632 | |
633 |
$dbi->each_column( |
|
634 |
sub { |
|
635 |
my ($self, $table, $column, $info) = @_; |
|
636 |
|
|
637 |
my $type = $info->{TYPE_NAME}; |
|
638 |
|
|
639 |
my $filter = $type eq 'DATE' ? {out => 'tp_to_date', in => 'date_to_tp'} |
|
640 |
: $type eq 'DATETIME' ? {out => 'tp_to_datetime', in => 'datetime_to_tp'} |
|
641 |
: undef; |
|
642 |
|
|
643 |
$self->apply_filter($table, $column, $filter) |
|
644 |
if $filter; |
|
645 |
} |
|
646 |
); |
|
renamed dbi_options to dbi_o...
|
647 | |
removed experimental txn_sco...
|
648 |
each_columnはコールバックを受け取ります。コールバックの引数は |
update pod
|
649 |
L<DBIx::Custom>オブジェクト、テーブル名、列名、列の情報です。 |
removed experimental txn_sco...
|
650 |
列の型名の情報をもとに自動的に、フィルタを適用しています。 |
651 | ||
renamed dbi_options to dbi_o...
|
652 |
=head2 5. タグ |
updated document
|
653 | |
update pod
|
654 |
=head3 タグの基本 |
updated document
|
655 | |
update pod
|
656 |
SQLの中にタグを埋め込むことができます。 |
updated document
|
657 | |
update pod
|
658 |
select * from book where {= title} and {like author}; |
updated document
|
659 | |
update pod
|
660 |
{= title}と{like author}の部分がタグです。タグは次のような形式 |
661 |
を持ちます。 |
|
updated document
|
662 | |
update pod
|
663 |
{タグ名 引数1 引数2 ...} |
664 |
|
|
665 |
タグはC<{>で始まり、C<}>で終わります。最初のC<{>とタグ名の間 |
|
666 |
には空白を挿入しないよう注意してください。 |
|
updated document
|
667 | |
update pod
|
668 |
C<{>とC<}>は予約語になっています。 |
669 |
もし利用したい場合は\でエスケープを行う必要があります。 |
|
updated document
|
670 | |
update pod
|
671 |
select from book \\{ ... \\} |
672 | ||
673 |
C<\>自体がPerlのエスケープ文字ですので、 |
|
update pod
|
674 |
C<\>は二つ必要になります。 |
update pod
|
675 | |
update pod
|
676 |
タグはSQLが実行される前に展開されます。 |
update pod
|
677 | |
678 |
select * from book where title = ? and author like ?; |
|
updated document
|
679 | |
update pod
|
680 |
タグを含むSQLを実行するにはC<execute()>を使用します。 |
updated document
|
681 | |
update pod
|
682 |
my $sql = "select * from book where {= author} and {like title};" |
683 |
$dbi->execute($sql, param => {title => 'Perl', author => '%Ken%'}); |
|
updated document
|
684 | |
update pod
|
685 |
C<param>オプションを使って、プレースホルダに埋め込みたい値を |
686 |
ハッシュリファレンスで指定することができます。 |
|
updated document
|
687 | |
update pod
|
688 |
C<execute()>においてもC<filter>を指定することができます。 |
update pod
|
689 | |
690 |
$dbi->execute($sql, param => {title => 'Perl', author => '%Ken%'} |
|
691 |
filter => {title => 'to_something'); |
|
692 | ||
update pod
|
693 |
C<execute>ではC<apply_filter()>で適用されたフィルタ |
694 |
は有効ではないということに注意してください。 |
|
update pod
|
695 |
C<apply_filter()>で適用されたフィルタを有効にするには、 |
696 |
C<table>を指定する必要があります。 |
|
697 | ||
698 |
$dbi->execute($sql, param => {title => 'Perl', author => '%Ken%'} |
|
699 |
table => ['book']); |
|
700 | ||
update pod
|
701 |
=head3 タグ一覧 |
update pod
|
702 | |
update pod
|
703 |
=head4 C<?> |
update pod
|
704 | |
705 |
{? NAME} -> ? |
|
706 | ||
update pod
|
707 |
=head4 C<=> |
update pod
|
708 | |
709 |
{= NAME} -> NAME = ? |
|
710 | ||
update pod
|
711 |
=head4 C<E<lt>E<gt>> |
update pod
|
712 | |
713 |
{<> NAME} -> NAME <> ? |
|
714 | ||
update pod
|
715 |
=head4 C<E<lt>> |
update pod
|
716 | |
717 |
{< NAME} -> NAME < ? |
|
718 | ||
update pod
|
719 |
=head4 C<E<gt>> |
update pod
|
720 | |
721 |
{> NAME} -> NAME > ? |
|
722 | ||
update pod
|
723 |
=head4 C<E<gt>=> |
update pod
|
724 | |
725 |
{>= NAME} -> NAME >= ? |
|
726 | ||
update pod
|
727 |
=head4 C<E<lt>=> |
update pod
|
728 | |
729 |
{<= NAME} -> NAME <= ? |
|
730 | ||
update pod
|
731 |
=head4 C<like> |
update pod
|
732 | |
733 |
{like NAME} -> NAME like ? |
|
734 | ||
update pod
|
735 |
=head4 C<in> |
update pod
|
736 | |
737 |
{in NAME COUNT} -> NAME in [?, ?, ..] |
|
738 | ||
update pod
|
739 |
=head4 C<insert_param> |
update pod
|
740 | |
updated document
|
741 |
{insert_param NAME1 NAME2} -> (NAME1, NAME2) values (?, ?) |
update pod
|
742 | |
update pod
|
743 |
=head4 C<update_param> |
update pod
|
744 | |
updated document
|
745 |
{update_param NAME1 NAME2} -> set NAME1 = ?, NAME2 = ? |
746 | ||
update pod
|
747 |
=head3 同名の列の扱い |
updated document
|
748 | |
update pod
|
749 |
同名の列を含むタグがある場合でも大丈夫です。 |
750 |
二つの日付で比較しなければならない場合を |
|
update pod
|
751 |
考えて見ましょう。 |
updated document
|
752 | |
update pod
|
753 |
my $sql = "select * from table where {> date} and {< date};"; |
updated document
|
754 | |
update pod
|
755 |
このような場合はパラメータの値を配列のリファレンスで指定します。 |
removed experimental txn_sco...
|
756 | |
update pod
|
757 |
my $dbi->execute($sql, param => {date => ['2010-10-01', '2012-02-10']}); |
758 | ||
update pod
|
759 |
=head3 タグの登録 C<register_tag()> |
update pod
|
760 | |
update pod
|
761 |
独自のタグを登録することができます。 |
update pod
|
762 |
タグを追加するにはC<register_tag()>を使用します。 |
removed experimental txn_sco...
|
763 | |
764 |
$dbi->register_tag( |
|
update pod
|
765 |
'=' => sub { |
766 |
my $column = shift; |
|
767 |
|
|
768 |
return ["$column = ?", [$column]]; |
|
removed experimental txn_sco...
|
769 |
} |
770 |
); |
|
771 | ||
update pod
|
772 |
ここではデフォルトのC<=>タグがどのように実装されているかを示しています。 |
773 |
タグを登録する関数の引数はタグの中に書かれた引数になります。 |
|
774 | ||
775 |
{タグ名 引数1 引数2} |
|
776 | ||
777 |
C<=>タグの場合は |
|
778 | ||
779 |
{= title} |
|
780 | ||
781 |
という形式ですから、サブルーチンにはtitleというひとつの列名がわたってきます。 |
|
782 | ||
783 |
サブルーチンの戻り値には次の形式の配列のリファレンスを返す必要があります。 |
|
784 | ||
785 |
[ |
|
786 |
展開後の文字列, |
|
787 |
[プレースホルダに埋め込みに利用する列名1, 列名2, ...] |
|
788 |
] |
|
789 | ||
790 |
一つ目の要素は展開後の文字列です。この例では |
|
791 | ||
792 |
'title = ?' |
|
793 | ||
794 |
を返す必要があります。 |
|
795 | ||
796 |
二つ目の要素はプレースホルダに埋め込みに利用する列名を含む配列の |
|
797 |
リファレンスです。今回の例では |
|
798 | ||
799 |
['title'] |
|
800 | ||
801 |
を返す必要があります。複数のプレースホルダを含む場合は、この部分が |
|
802 |
複数になります。C<insert_param>タグやC<update_param>タグは |
|
803 |
この部分が実際複数になっています。 |
|
804 | ||
805 |
上記を合わせると |
|
806 | ||
807 |
['title = ?', ['title']] |
|
808 |
|
|
809 |
を返す必要があるということです。 |
|
810 | ||
added experimental not_exist...
|
811 |
タグの実装の他のサンプルはL<DBIx::Custom::Tag>のソースコード |
812 |
をご覧になってみてください。 |
|
813 | ||
removed experimental txn_sco...
|
814 |
=head2 6. Where句の動的な生成 |
815 | ||
added experimental not_exist...
|
816 |
=head3 Where句の動的な生成 where() |
817 | ||
818 |
複数の検索条件を指定して、検索を行いたい場合があります。 |
|
819 |
次の3つのケースのwhere句を考えてみましょう。 |
|
820 |
下記のようなwhere句が必要になります。 |
|
821 | ||
822 |
titleの値だけで検索したい場合 |
|
823 | ||
824 |
where {= title} |
|
825 | ||
826 |
authorの値だけで検索したい場合 |
|
827 | ||
828 |
where {= author} |
|
829 | ||
830 |
titleとauthorの両方の値で検索したい場合 |
|
831 | ||
832 |
where {= title} and {=author} |
|
833 | ||
834 |
L<DBIx::Custom>では動的なWhere句の生成をサポートしています。 |
|
835 |
まずC<where()>でL<DBIx::Custom::Where>オブジェクトを生成します。 |
|
836 | ||
837 |
my $where = $dbi->where; |
|
838 | ||
839 |
次にC<clause()>を使用してwhere句を記述します。 |
|
840 | ||
841 |
$where->clause( |
|
842 |
['and', '{= title'}, '{= author}'] |
|
843 |
); |
|
844 | ||
845 |
clauseの指定方法は次のようになります。 |
|
846 | ||
847 |
['or' あるいは 'and', タグ1, タグ2, タグ3] |
|
848 | ||
849 |
第一引数にはorあるいはandを指定します。第二引数以降には |
|
850 |
検索条件をタグを使って記述します。 |
|
851 | ||
852 |
C<clause>の指定は入れ子にすることもでき、さらに複雑な条件 |
|
853 |
を記述することもできます。 |
|
854 | ||
855 |
['and', |
|
856 |
'{= title}', |
|
857 |
['or', '{= author}', '{like date}'] |
|
858 |
] |
|
859 | ||
860 |
このようにC<clause>を設定した後にC<param>にパラメータを指定します。 |
|
861 |
|
|
862 |
my $param => {title => 'Perl'}; |
|
863 |
$where->param($param); |
|
864 | ||
865 |
この例ではtitleだけがパラメータに含まれています。 |
|
866 | ||
867 |
この後C<to_string()>を実行すると$paramに含まれるパラメータを満たす |
|
868 |
where句を生成することができます。 |
|
869 | ||
870 |
my $where_clause = $where->to_string; |
|
871 | ||
872 |
パラメータはtitleだけですので、次のようなwhere句が生成されます。 |
|
873 | ||
874 |
where {= title} |
|
875 | ||
cleanup
|
876 |
またL<DBIx::Custom>は文字列の評価をオーバーロードして、C<to_string()> |
added experimental not_exist...
|
877 |
を呼び出すようにしていますので、次のようにしてwhere句を生成することも |
878 |
できます。 |
|
879 | ||
880 |
my $where_clause = "$where"; |
|
881 | ||
882 |
これはSQLの中にwhere句を埋め込むときにとても役立つ機能です。 |
|
883 | ||
make delete() using where ob...
|
884 |
=head3 同一の列名を含む場合 |
added experimental not_exist...
|
885 | |
make delete() using where ob...
|
886 |
タグの中に同一の名前を持つものが存在した場合でも動的に |
887 |
where句を作成することができます。 |
|
added experimental not_exist...
|
888 | |
make delete() using where ob...
|
889 |
たとえば、パラメータとして開始日付と終了日付を受け取ったことを |
890 |
考えてみてください。 |
|
added experimental not_exist...
|
891 | |
make delete() using where ob...
|
892 |
my $param = {start_date => '2010-11-15', end_date => '2011-11-21'}; |
added experimental not_exist...
|
893 | |
make delete() using where ob...
|
894 |
また開始日付と終了日付の片方だけや、どちらも受け取らない場合もあるかもしれません。 |
added experimental not_exist...
|
895 | |
make delete() using where ob...
|
896 |
この場合は次のようなパラメータに変換することで対応することができます。 |
added experimental not_exist...
|
897 | |
make delete() using where ob...
|
898 |
my $p = {date => ['2010-11-15', '2011-11-21']}; |
added experimental not_exist...
|
899 | |
make delete() using where ob...
|
900 |
値が配列のリファレンスになっていることに注目してください。このようにすれば |
901 |
同名の列を含むタグに順番に埋め込むことができます。 |
|
added experimental not_exist...
|
902 | |
make delete() using where ob...
|
903 |
$where->clause( |
904 |
['and', '{> date}', '{< date}'] |
|
905 |
); |
|
906 |
$where->param($p); |
|
907 | ||
908 |
また開始日付が存在しない場合は次のようなデータを作成します。 |
|
909 | ||
910 |
my $p = {date => [$dbi->not_exists, '2011-11-21']}; |
|
911 | ||
912 |
L<DBIx::Custom>のC<not_exists>でDBIx::Custom::NotExistsオブジェクトを |
|
913 |
取得できます。これは対応する値が存在しないことを示すためのものです。 |
|
914 | ||
915 |
また終了日付が存在しない場合は次のようなデータを作成します。 |
|
916 | ||
917 |
my $p = {date => ['2010-11-15']}; |
|
added experimental not_exist...
|
918 | |
make delete() using where ob...
|
919 |
どちらも存在しない場合は次のようなデータを作成します。 |
920 | ||
921 |
my $p = {date => []}; |
|
922 | ||
923 |
少し難しいので一番簡単に作成できるロジックを示しておきます。 |
|
924 | ||
925 |
my @date; |
|
926 |
push @date, exists $param->{start_date} ? $param->{start_date} |
|
927 |
: $dbi->not_exists; |
|
928 |
push @date, $param->{end_date} if exists $param->{end_date}; |
|
929 |
my $p = {date => \@date}; |
|
930 | ||
931 |
=head3 C<select()>との連携 |
|
932 | ||
update pod
|
933 |
L<DBIx::Custom::Where>オブジェクトは |
934 |
C<select()>のC<where>に直接渡すことが |
|
make delete() using where ob...
|
935 |
できます。 |
936 |
|
|
937 |
my $where = $dbi->where; |
|
938 |
$where->clause(...); |
|
939 |
$where->param($param); |
|
940 |
my $result = $dbi->select(table => 'book', where => $where); |
|
941 | ||
update pod
|
942 |
あるいはC<update()>、C<delete()>のwhereに指定することも可能です。 |
make delete() using where ob...
|
943 | |
944 |
=head3 C<execute()>との連携 |
|
945 | ||
946 |
C<execute()>との連携です。SQLを作成するときに埋め込むことができます。 |
|
947 | ||
948 | ||
949 |
my $where = $dbi->where; |
|
950 |
$where->clause(...); |
|
951 |
$where->param($param); |
|
952 | ||
953 |
my $sql = <<"EOS" |
|
954 |
select * from book; |
|
955 |
$where |
|
956 |
EOS |
|
added experimental not_exist...
|
957 | |
make delete() using where ob...
|
958 |
$dbi->execute($sql, param => $param); |
added experimental not_exist...
|
959 | |
update pod
|
960 |
=head2 7. テーブルモデル |
961 | ||
962 |
=head3 テーブルオブジェクトの作成 C<table()> |
|
963 | ||
964 |
L<DBIx::Custom>はロジックとしてテーブルを中心にすえた |
|
965 |
モデルの作成を支援します。 |
|
966 | ||
967 |
アプリケーションのロジックを記述するときに、そのロジックを |
|
968 |
データベースのテーブルにすえることは、RDBMSを利用する |
|
969 |
モデルであれば、コードの重複も少なく |
|
970 |
わかりやすいものになります。 |
|
971 | ||
972 |
テーブルオブジェクトを生成するにはC<table()>を使用します。 |
|
973 | ||
974 |
my $table = $dbi->table('book'); |
|
975 | ||
976 |
実際にデータベースにテーブルは存在している必要はありません。 |
|
977 |
これは仮想的なテーブルオブジェクトです。これは |
|
978 |
L<DBIx::Customm::Table>オブジェクトになります。 |
|
979 | ||
980 |
テーブルオブジェクトからはC<insert()>、C<update()>、C<update_all()>、 |
|
981 |
C<delete()>、C<delete_all()>、C<select()>などのメソッド呼び出すことができます。 |
|
982 |
L<DBIx::Custom>と異なるところは、C<table>を必ずしも指定する必要が |
|
983 |
ないということです。 |
|
984 | ||
985 |
$table->insert(param => $param); |
|
986 | ||
987 |
C<table>の値は自動的にbookに設定されます。 |
|
988 | ||
989 |
またテーブルオブジェクトには独自のメソッドを追加することができます。 |
|
990 | ||
991 |
$table->method( |
|
992 |
register => sub { |
|
993 |
my $self = shift; |
|
994 |
my $table_name = $self->name; |
|
995 |
# something |
|
996 |
}, |
|
997 |
list => sub { |
|
998 |
my $self = shift; |
|
999 |
my $table_name = $self->name; |
|
1000 |
# something |
|
1001 |
} |
|
1002 |
); |
|
1003 | ||
1004 |
メソッドに渡される第一引数はL<DBIx::Custom::Table>オブジェクトです。 |
|
1005 |
C<name()>を使用して、テーブル名を取得することができます。 |
|
1006 | ||
1007 |
このようにして登録したメソッドは直接呼び出すことができます。 |
|
1008 | ||
1009 |
$table->register(...); |
|
1010 |
$table->list(...); |
|
1011 | ||
1012 |
またテーブル専用のメソッドをオーバーライドして作成することもできます。 |
|
1013 | ||
1014 |
$table->method( |
|
1015 |
insert => sub { |
|
1016 |
my $self = shift; |
|
1017 |
|
|
1018 |
$self->base_insert(...); |
|
1019 |
|
|
1020 |
# something |
|
1021 |
} |
|
1022 |
); |
|
1023 | ||
1024 |
もともと存在していたC<insert()>を呼ぶにはC<base_$method>とします。L<DBIx::Custom::Table> |
|
1025 |
のオーバーライドの機能は簡易的なものですが、とても便利です。 |
|
1026 | ||
1027 |
=head2 テーブルで共有のメソッドの登録 |
|
1028 | ||
1029 |
すべてのテーブルでメソッドを共有するにはC<table>メソッドでテーブルを作成する前に、 |
|
1030 |
C<base_table>にメソッドを登録しておきます。 |
|
1031 | ||
1032 |
$dbi->base_table->method( |
|
1033 |
count => sub { |
|
1034 |
my $self = shift; |
|
1035 |
return $self->select(column => ['count(*)']); |
|
1036 |
} |
|
1037 |
); |
|
1038 | ||
1039 |
またテーブルからはL<DBIx::Custom>とL<DBI>のすべてのメソッドを呼び出すことができます。 |
|
1040 | ||
1041 |
# DBIx::Custom method |
|
1042 |
$table->execute($sql); |
|
1043 |
|
|
1044 |
# DBI method |
|
1045 |
$table->begin_work; |
|
1046 |
$table->commit; |
|
1047 | ||
1048 |
=head2 一般的なモデルの構成 |
|
1049 | ||
1050 |
一般的には、L<DBIx::Custom>を継承してコンストラクタの中に、モデルを作成 |
|
1051 |
するのがよいでしょう。 |
|
1052 | ||
1053 |
package MyDBI; |
|
1054 |
|
|
1055 |
use base 'DBIx::Custom'; |
|
1056 |
|
|
1057 |
sub connect { |
|
1058 |
my $self = shift->SUPER::connect(@_); |
|
1059 |
|
|
1060 |
$self->base_table->method( |
|
1061 |
... => sub { ... } |
|
1062 |
); |
|
1063 |
|
|
1064 |
$self->table('book')->method( |
|
1065 |
insert_multi => sub { ... }, |
|
1066 |
... => sub { ... } |
|
1067 |
); |
|
1068 |
|
|
1069 |
$self->table('company')->method( |
|
1070 |
... => sub { ... }, |
|
1071 |
); |
|
1072 |
} |
|
1073 | ||
1074 |
このようにして定義しておけば、次のように利用することができます。 |
|
1075 | ||
1076 |
my $dbi = MyDBI->connect(...); |
|
1077 |
$dbi->table('book')->insert_multi(...); |
|
1078 | ||
1079 |
=head2 8. パフォーマンスの改善 |
|
updated document
|
1080 | |
update pod
|
1081 |
=head3 クエリの作成 |
updated document
|
1082 | |
1083 |
もしC<insert()>メソッドを使用してインサートを実行した場合、 |
|
1084 |
必要なパフォーマンスを得られない場合があるかもしれません。 |
|
1085 |
C<insert()>メソッドは、SQL文とステートメントハンドルを |
|
update pod
|
1086 |
毎回作成するためです。 |
1087 | ||
1088 |
そのような場合は、C<query>オプションを指定することで、 |
|
1089 |
クエリを取得することができます。 |
|
1090 | ||
1091 |
my $query = $dbi->insert(table => 'book', param => $param, query => 1); |
|
1092 | ||
1093 |
またC<create_query()>メソッドを使って任意のSQLのクエリを作成 |
|
1094 |
することもできます。 |
|
updated document
|
1095 | |
1096 |
my $query = $dbi->create_query( |
|
update pod
|
1097 |
"insert into book {insert_param title author};"; |
updated document
|
1098 |
); |
1099 | ||
1100 |
戻り値はL<DBIx::Custom::Query>オブジェクトです。 |
|
1101 |
このオブジェクトはSQL文とパラメータバインド時の列名を |
|
1102 |
保持しています。またステートメントハンドルも保持しています。 |
|
1103 | ||
1104 |
{ |
|
1105 |
sql => 'insert into book (title, author) values (?, ?);', |
|
1106 |
columns => ['title', 'author'], |
|
1107 |
sth => $sth |
|
1108 |
} |
|
1109 | ||
update pod
|
1110 |
クエリオブジェクトを使って繰り返し実行するにはC<execute()>を使用します。 |
updated document
|
1111 |
|
update pod
|
1112 |
my $params = [ |
updated document
|
1113 |
{title => 'Perl', author => 'Ken'}, |
1114 |
{title => 'Good days', author => 'Mike'} |
|
1115 |
]; |
|
1116 |
|
|
update pod
|
1117 |
foreach my $param (@$paramss) { |
1118 |
$dbi->execute($query, table => 'book', param => $input); |
|
updated document
|
1119 |
} |
1120 | ||
1121 |
C<execute>メソッドの第一引数にクエリオブジェトを渡すことができます。 |
|
update pod
|
1122 |
C<insert()>メソッドよりも高速です。 |
updated document
|
1123 | |
update pod
|
1124 |
注意点がいくつかあります。それはパラメータの数は必ず同じでなくてはならない |
1125 |
ということです。最初に3つのパラメータだけを渡したのに、次の実行では |
|
1126 |
二つのパラメータを渡すと予期しない結果になります。それは |
|
1127 |
動的に生成されたSQLに含まれるプレースホルダの数が異なるからです。 |
|
1128 |
またC<execute()>によっては自動的にはフィルタが有効にならないので、 |
|
1129 |
C<table>を指定する必要のあることに注意してください。 |
|
1130 |
本当に必要な場合だけ利用してください。 |
|
updated document
|
1131 | |
update pod
|
1132 |
=head2 9. その他の機能 |
updated document
|
1133 | |
update pod
|
1134 |
=head3 メソッドの登録 |
updated document
|
1135 | |
update pod
|
1136 |
メソッドを登録するにはC<method()>を使用します。 |
updated document
|
1137 | |
update pod
|
1138 |
$dbi->method( |
updated document
|
1139 |
update_or_insert => sub { |
1140 |
my $self = shift; |
|
update pod
|
1141 |
# something |
updated document
|
1142 |
}, |
1143 |
find_or_create => sub { |
|
1144 |
my $self = shift; |
|
update pod
|
1145 |
# something |
updated document
|
1146 |
} |
1147 |
); |
|
1148 | ||
update pod
|
1149 |
<method()>で登録したメソッドは |
updated document
|
1150 |
L<DBIx::Custom>オブジェクトから直接呼び出すことができます。 |
1151 | ||
1152 |
$dbi->update_or_insert; |
|
1153 |
$dbi->find_or_create; |
|
1154 | ||
removed experimental expand
|
1155 |
=head3 結果クラスの変更 |
1156 | ||
1157 |
必要ならば結果クラスを変更することができます。 |
|
1158 | ||
1159 |
package MyResult; |
|
1160 |
use base 'DBIx::Custom::Result'; |
|
1161 |
|
|
1162 |
sub some_method { ... } |
|
updated document
|
1163 | |
removed experimental expand
|
1164 |
1; |
1165 |
|
|
1166 |
package main; |
|
1167 |
|
|
1168 |
use MyResult; |
|
1169 |
|
|
1170 |
my $dbi = DBIx::Custom->connect(...); |
|
1171 |
$dbi->result_class('MyResult'); |
|
updated document
|
1172 | |
removed experimental expand
|
1173 |
=head3 キャッシング |
updated document
|
1174 | |
removed experimental expand
|
1175 |
タグの展開後のSQLはパフォーマンスの理由のためにキャッシュされます。 |
1176 |
これはC<chace>で設定でき、デフォルトではキャッシュを行う設定です。 |
|
updated document
|
1177 | |
removed experimental expand
|
1178 |
$dbi->cache(1); |
updated document
|
1179 | |
removed experimental expand
|
1180 |
キャッシュ方法はC<cache_method>にメソッドを指定することで |
1181 |
変更することができます。 |
|
1182 |
データの保存と取得のためのメソッドを定義します。 |
|
updated document
|
1183 | |
removed experimental expand
|
1184 |
デフォルトでは次のようにメモリ上にキャッシュを行うものになっています。 |
updated document
|
1185 | |
removed experimental expand
|
1186 |
$dbi->cache_method(sub { |
1187 |
sub { |
|
1188 |
my $self = shift; |
|
1189 |
|
|
1190 |
$self->{_cached} ||= {}; |
|
1191 |
|
|
1192 |
if (@_ > 1) { |
|
1193 |
# Set |
|
1194 |
$self->{_cached}{$_[0]} = $_[1] |
|
1195 |
} |
|
1196 |
else { |
|
1197 |
# Get |
|
1198 |
return $self->{_cached}{$_[0]} |
|
1199 |
} |
|
1200 |
} |
|
1201 |
}); |
|
1202 |
|
|
1203 |
第一はL<DBIx::Custom>オブジェクトです。 |
|
1204 |
第二引数はタグの展開される前のSQLです。 |
|
1205 |
第三引数はタグの展開後のSQLです。 |
|
updated document
|
1206 | |
removed experimental expand
|
1207 |
自分で作成する場合は第三引数が存在した場合はキャッシュを設定し、 |
1208 |
存在しなかった場合はキャッシュを取得する実装に |
|
1209 |
してください。 |
|
updated document
|
1210 | |
1211 |
=cut |