Newer Older
1288 lines | 44.167kb
added experimental expand me...
yuki-kimoto authored on 2010-10-20
1
=encoding utf8
2

            
updated document
yuki-kimoto authored on 2010-10-22
3
=head1 NAME
added experimental expand me...
yuki-kimoto authored on 2010-10-20
4

            
update pod
Yuki Kimoto authored on 2011-01-28
5
DBIx::Custom::Guide::Ja - DBIx::Customのガイドブック
added experimental expand me...
yuki-kimoto authored on 2010-10-20
6

            
7
=head1 ガイド
8

            
update pod
Yuki Kimoto authored on 2011-01-28
9
L<DBIx::Custom>はSQLの実行を簡単に行うためのクラスです。
10
L<DBIx::Class>やL<DBIx::Simple>と同じように
updated document
Yuki Kimoto authored on 2011-01-20
11
L<DBI>のラッパクラスになっています。L<DBIx::Class>よりも簡単に、
12
L<DBIx::Simple>よりもはるかに柔軟なことを行うことができます。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
13

            
14
L<DBIx::Custom>はO/Rマッパーではありません。O/Rマッパーは
15
便利ですが、O/Rマッパのたくさんの文法を覚える必要があります。
updated document
Yuki Kimoto authored on 2011-01-20
16
また、O/Rマッパによって生成されたSQLは非効率なことがありますし、
17
複雑なSQLを生成することができないので、
18
生のSQLを発行しなければならない場合がたくさんあります。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
19

            
updated document
Yuki Kimoto authored on 2011-01-20
20
L<DBIx::Custom>はO/Rマッパとは対照的な設計が行われています。
updated document
Yuki Kimoto authored on 2011-01-20
21
L<DBIx::Custom>の主な目的は、SQLを尊重しつつ、L<DBI>だけでは
updated document
Yuki Kimoto authored on 2011-01-20
22
とてもめんどうな作業を簡単にすることです。もしSQLについて
23
多くの知識を持っているならば、L<DBIx::Custom>でそのまま
updated document
Yuki Kimoto authored on 2011-01-20
24
活用することができます。
updated document
Yuki Kimoto authored on 2011-01-20
25

            
update pod
Yuki Kimoto authored on 2011-01-28
26
L<DBIx::Custom>の仕組みを少しだけ説明しておきます。
updated document
Yuki Kimoto authored on 2011-01-20
27
L<DBIx::Custom>では、タグと呼ばれるものを
28
SQLの中に埋め込むことができます。
29

            
30
    select * from book where {= title} and {=author};
31

            
32
{}で囲まれた部分がタグです。このSQLは実際に実行されるときには
33
次のようにプレースホルダに展開されます。
34

            
updated document
Yuki Kimoto authored on 2011-01-20
35
    select * from book where title = ? and author = ?;
updated document
Yuki Kimoto authored on 2011-01-20
36

            
37
これらの展開にはどのような意味があるのでしょうかと質問
update pod
Yuki Kimoto authored on 2011-01-28
38
されるかもしれません。この簡単な仕組みの上に
39
便利な機能が実装されます。それは以下のようなものです。
updated document
Yuki Kimoto authored on 2011-01-20
40

            
updated document
Yuki Kimoto authored on 2011-01-20
41
=over 4
updated document
Yuki Kimoto authored on 2011-01-20
42

            
update pod
Yuki Kimoto authored on 2011-01-28
43
=item 1. プレースホルダにバインドする値をハッシュリファレンスで指定
updated document
Yuki Kimoto authored on 2011-01-20
44

            
update pod
Yuki Kimoto authored on 2011-01-28
45
L<DBI>を使うのであればプレースホルダにバインドする値は配列
updated document
Yuki Kimoto authored on 2011-01-20
46
で指定する必要があります。
updated document
Yuki Kimoto authored on 2011-01-20
47

            
updated document
Yuki Kimoto authored on 2011-01-20
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
Yuki Kimoto authored on 2011-01-28
56
=item 2. 値のフィルタリング
updated document
Yuki Kimoto authored on 2011-01-20
57

            
update pod
Yuki Kimoto authored on 2011-01-28
58
L<DBIx::Custom>はフィルタリングの機能を提供します。
updated document
Yuki Kimoto authored on 2011-01-20
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...
Yuki Kimoto authored on 2011-01-23
81
        'issue_date' => {out => 'tp_to_date', in => 'date_to_tp'}
updated document
Yuki Kimoto authored on 2011-01-20
82
    );
83

            
84
outはPerlからデータベースに保存する方向、inはデータベースからPerlに取得する方向です。
85

            
update pod
Yuki Kimoto authored on 2011-01-28
86
多くのメソッドで自動的にこのフィルタが有効になります。
updated document
Yuki Kimoto authored on 2011-01-20
87

            
update pod
Yuki Kimoto authored on 2011-01-28
88
    $dbi->insert(table => 'book', param => {issue_date => $tp});
updated document
Yuki Kimoto authored on 2011-01-20
89

            
90
=item 3. 選択的な検索条件
91

            
update pod
Yuki Kimoto authored on 2011-01-28
92
L<DBI>では選択的に検索条件を作成することは難しいです。
updated document
Yuki Kimoto authored on 2011-01-20
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
    
102
authorだけの場合は次のSQLを発行した場合を考えましょう。
103

            
104
    select * from book where author = ?;
105

            
106
これはとても大変な作業なので、通常はL<SQL::Abstract>を動的に生成してくれる
107
モジュールを利用することになります。
108

            
109
L<DBIx::Custom>はさらに簡単で便利な方法を用意しています。
110

            
update pod
Yuki Kimoto authored on 2011-01-28
111
    # Whereオブジェクト
updated document
Yuki Kimoto authored on 2011-01-20
112
    my $where = $dbi->where;
update pod
Yuki Kimoto authored on 2011-01-28
113
    
114
    # 検索条件
updated document
Yuki Kimoto authored on 2011-01-20
115
    $where->clause(
116
        ['and', '{= title}', {'= author'}]
117
    );
update pod
Yuki Kimoto authored on 2011-01-28
118
    
119
    # 必要な列を自動的に選択するための設定
120
    $where->param({title => 'Perl'});
updated document
Yuki Kimoto authored on 2011-01-20
121

            
update pod
Yuki Kimoto authored on 2011-01-28
122
    # SQLへのWhere句の埋め込み
updated document
Yuki Kimoto authored on 2011-01-20
123
    my $sql = "select * from book $where";
124

            
125
詳しい説明は後ほど行いますが、上記のように記述すれば、
126
L<DBIx::Custom>では選択的な検索条件を持つWhere句を生成することができます。
127
検索条件が入れ子になった構造やorについても対応しています。
128

            
129
=item 4. 挿入、更新、削除、選択を行うためのメソッド
130

            
update pod
Yuki Kimoto authored on 2011-01-30
131
L<DBIx::Custom>では挿入、更新、削除、選択を行うための
132
メソッドを提供しています。
133
C<insert()>, C<update()>, C<delete()>,C<select()>などがあります。
updated document
Yuki Kimoto authored on 2011-01-20
134

            
135
    my $param = {title => 'Perl', author => 'Ken'};
136
    $dbi->insert(table => 'book', param => $param);
137

            
update pod
Yuki Kimoto authored on 2011-01-30
138
=item 5. テーブルのためのメソッドの登録
updated document
Yuki Kimoto authored on 2011-01-20
139

            
update pod
Yuki Kimoto authored on 2011-01-30
140
テーブルのためにメソッドを登録することができます。
updated document
Yuki Kimoto authored on 2011-01-20
141

            
update pod
Yuki Kimoto authored on 2011-01-30
142
    $dbi->table('book')->method(
updated document
Yuki Kimoto authored on 2011-01-20
143
        list => sub {
144
            ...
145
        },
update pod
Yuki Kimoto authored on 2011-01-30
146
        something => sub {
147
            ...
updated document
Yuki Kimoto authored on 2011-01-20
148
        }
149
    );
150

            
update pod
Yuki Kimoto authored on 2011-01-30
151
メソッドの利用です。
updated document
Yuki Kimoto authored on 2011-01-20
152

            
153
    $dbi->table('book')->list;
added experimental expand me...
yuki-kimoto authored on 2010-10-20
154

            
update pod
Yuki Kimoto authored on 2011-01-30
155
多くのO/Rマッパではテーブルのためのクラスを作成する必要がありますが、
156
L<DBIx::Custom>では簡単です。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
157

            
updated document
Yuki Kimoto authored on 2011-01-20
158
=back
159

            
update pod
Yuki Kimoto authored on 2011-01-30
160
L<DBIx::Custom>はとても便利です。
161
興味をもたれた方は、続きをご覧になってみてください。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
162

            
163
=head2 1. データベースへの接続
164

            
update pod
Yuki Kimoto authored on 2011-01-30
165
L<DBIx::Custom>を読み込みます。
updated document
Yuki Kimoto authored on 2011-01-23
166

            
167
    use DBIx::Custom;
168

            
update pod
Yuki Kimoto authored on 2011-01-30
169
データベースに接続するにはC<connect()>メソッドを使用します。
170
戻り値はL<DBIx::Custom>オブジェクトです。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
171

            
updated document
Yuki Kimoto authored on 2011-01-23
172
    my $dbi = DBIx::Custom->connect(
update pod
Yuki Kimoto authored on 2011-01-30
173
        data_source => "dbi:mysql:database=bookstore",
updated document
Yuki Kimoto authored on 2011-01-23
174
        user => 'ken',
175
        password => '!LFKD%$&',
176
        dbi_options => {mysql_enable_utf8 => 1}
177
    );
added experimental expand me...
yuki-kimoto authored on 2010-10-20
178

            
update pod
Yuki Kimoto authored on 2011-01-30
179
C<data_source>はデータベースシステムに応じたものである必要があります。
180
以下はデータソースのサンプルです。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
181

            
updated document
Yuki Kimoto authored on 2011-01-23
182
B<MySQL>
added experimental expand me...
yuki-kimoto authored on 2010-10-20
183

            
deprecated DBIx::Custom::MyS...
root authored on 2010-11-26
184
    "dbi:mysql:database=$database"
185
    "dbi:mysql:database=$database;host=$hostname;port=$port"
added experimental expand me...
yuki-kimoto authored on 2010-10-20
186

            
updated document
Yuki Kimoto authored on 2011-01-23
187
B<SQLite>
deprecated DBIx::Custom::MyS...
root authored on 2010-11-26
188

            
189
    "dbi:SQLite:dbname=$database"
190
    "dbi:SQLite:dbname=:memory:"
191

            
updated document
Yuki Kimoto authored on 2011-01-23
192
B<PostgreSQL>
deprecated DBIx::Custom::MyS...
root authored on 2010-11-26
193

            
194
    "dbi:Pg:dbname=$dbname"
195

            
updated document
Yuki Kimoto authored on 2011-01-23
196
B<Oracle>
deprecated DBIx::Custom::MyS...
root authored on 2010-11-26
197

            
198
    "dbi:Oracle:$dbname"
199
    "dbi:Oracle:host=$host;sid=$sid"
200

            
updated document
Yuki Kimoto authored on 2011-01-23
201
B<ODBC(Microsoft Access)>
deprecated DBIx::Custom::MyS...
root authored on 2010-11-26
202

            
203
    "dbi:ODBC:driver=Microsoft Access Driver (*.mdb);dbq=hoge.mdb"
204

            
updated document
Yuki Kimoto authored on 2011-01-23
205
B<ODBC(SQL Server)>
deprecated DBIx::Custom::MyS...
root authored on 2010-11-26
206

            
207
   "dbi:ODBC:driver={SQL Server};Server=(local);database=test;Trusted_Connection=yes;AutoTranslate=No;"
added experimental expand me...
yuki-kimoto authored on 2010-10-20
208

            
update pod
Yuki Kimoto authored on 2011-01-30
209
認証が必要な場合は、C<user>とC<password>を指定できます。
updated document
Yuki Kimoto authored on 2011-01-23
210

            
update pod
Yuki Kimoto authored on 2011-01-30
211
L<DBIx::Custom>はL<DBI>のラッパークラスです。
212
L<DBI>のデータベースハンドルは取得するにあhC<dbh()>を使用します。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
213

            
214
    my $dbh = $dbi->dbh;
215

            
updated document
Yuki Kimoto authored on 2011-01-23
216
L<DBIx::Custom>ではデータベースハンドル属性にはデフォルトで次のものが設定されます。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
217
    
218
    $dbi->dbh->{RaiseError} = 1;
219
    $dbi->dbh->{PrintError} = 0;
220
    $dbi->dbh->{AutoCommit} = 1;
221

            
update pod
Yuki Kimoto authored on 2011-01-30
222
致命的なエラーが起こるとプログラムは終了します。
223
SQLが実行されると自動的にコミットされます。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
224

            
updated document
Yuki Kimoto authored on 2011-01-23
225
=head2 2. 挿入、更新、削除、選択のためのメソッド
added experimental expand me...
yuki-kimoto authored on 2010-10-20
226

            
227
L<DBIx::Custom>は、
228
C<insert()>、C<update()>、C<delete()>、C<select()>
updated document
Yuki Kimoto authored on 2011-01-23
229
のような挿入、更新、削除、選択を行うためのメソッドを持っています。
230
簡単なことをを行うのであれば、SQLを自分で記述する必要がありません。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
231

            
update pod
Yuki Kimoto authored on 2011-01-26
232
=head3 データの挿入 C<insert()>
added experimental expand me...
yuki-kimoto authored on 2010-10-20
233

            
updated document
Yuki Kimoto authored on 2011-01-23
234
データベースにデータを挿入するにはC<insert()>を使用します。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
235

            
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
236
    $dbi->insert(table  => 'book',
added experimental expand me...
yuki-kimoto authored on 2010-10-20
237
                 param  => {title => 'Perl', author => 'Ken'});
238

            
updated document
Yuki Kimoto authored on 2011-01-23
239
C<table>にはテーブル名、C<param>には挿入したいデータを指定します。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
240

            
updated document
Yuki Kimoto authored on 2011-01-23
241
次のSQLが発行されます。
242

            
243
    insert into (title, author) values (?, ?);
added experimental expand me...
yuki-kimoto authored on 2010-10-20
244

            
update pod
Yuki Kimoto authored on 2011-01-26
245
=head3 データの更新 C<update()>
added experimental expand me...
yuki-kimoto authored on 2010-10-20
246

            
updated document
Yuki Kimoto authored on 2011-01-23
247
データベースのデータを更新するには、C<update()>を使用します。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
248

            
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
249
    $dbi->update(table  => 'book', 
added experimental expand me...
yuki-kimoto authored on 2010-10-20
250
                 param  => {title => 'Perl', author => 'Ken'}, 
251
                 where  => {id => 5});
252

            
updated document
Yuki Kimoto authored on 2011-01-23
253
C<table>にはテーブル名、C<param>には挿入したいデータ、C<where>には
254
条件を指定します。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
255

            
updated document
Yuki Kimoto authored on 2011-01-23
256
次のSQLが発行されます。
257

            
258
    update book set title = ?, author = ?;
added experimental expand me...
yuki-kimoto authored on 2010-10-20
259

            
260
C<update>メソッドは安全のため
261
where句のないSQLを発行することを許可していません。
262
もしすべての行を更新したい場合は
updated document
Yuki Kimoto authored on 2011-01-23
263
C<update_all()>を使用してください。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
264

            
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
265
    $dbi->update_all(table  => 'book', 
added experimental expand me...
yuki-kimoto authored on 2010-10-20
266
                     param  => {title => 'Perl', author => 'Ken'});
267

            
update pod
Yuki Kimoto authored on 2011-01-26
268
=head3 データの削除 C<delete()>
added experimental expand me...
yuki-kimoto authored on 2010-10-20
269

            
updated document
Yuki Kimoto authored on 2011-01-23
270
データベースのデータを1件削除するには、C<delete()>を使用します。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
271

            
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
272
    $dbi->delete(table  => 'book',
added experimental expand me...
yuki-kimoto authored on 2010-10-20
273
                 where  => {author => 'Ken'});
274

            
updated document
Yuki Kimoto authored on 2011-01-23
275
C<table>にはテーブル名、C<where>には条件を指定します。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
276

            
updated document
Yuki Kimoto authored on 2011-01-23
277
次のSQLが発行されます。
278

            
279
    delete from book where id = ?;
added experimental expand me...
yuki-kimoto authored on 2010-10-20
280

            
281
C<delete>メソッドは安全のため
282
where句のないSQLを発行することを許可していません。
283
もしすべての行を削除したい場合は
updated document
Yuki Kimoto authored on 2011-01-23
284
C<delete_all()>を使用してください。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
285

            
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
286
    $dbi->delete_all(table  => 'book');
added experimental expand me...
yuki-kimoto authored on 2010-10-20
287

            
update pod
Yuki Kimoto authored on 2011-01-26
288
=head3 データの選択 C<select()>
added experimental expand me...
yuki-kimoto authored on 2010-10-20
289

            
updated document
Yuki Kimoto authored on 2011-01-23
290
行を選択するにはC<select()>を使用します。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
291

            
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
292
    my $result = $dbi->select(table => 'book');
added experimental expand me...
yuki-kimoto authored on 2010-10-20
293

            
updated document
Yuki Kimoto authored on 2011-01-23
294
C<table>だけを指定して、他の条件を指定しない場合は次のSQLが発行されます。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
295

            
updated document
Yuki Kimoto authored on 2011-01-23
296
    select * from book;
added experimental expand me...
yuki-kimoto authored on 2010-10-20
297

            
298
C<select()>メソッドの戻り値はL<DBIx::Custom::Result>
updated document
Yuki Kimoto authored on 2011-01-23
299
オブジェクトです。行をフェッチするにはC<fetch()>を使用します。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
300

            
301
    while (my $row = $result->fetch) {
302
        my $title  = $row->[0];
303
        my $author = $row->[1];
304
    }
305

            
updated document
Yuki Kimoto authored on 2011-01-23
306
L<DBIx::Custom::Result>についてはこの後L<3. 行のフェッチ/"3. 行のフェッチ">で詳しく扱います。
307

            
308
さまざまなC<select()>の使い方を見ていきましょう。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
309
次のC<select>は行の名前とwhere句を指定したものです。
310

            
311
    my $result = $dbi->select(
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
312
        table  => 'book',
updated document
Yuki Kimoto authored on 2011-01-23
313
        column => ['author',  'title'],
added experimental expand me...
yuki-kimoto authored on 2010-10-20
314
        where  => {author => 'Ken'}
315
    );
316

            
updated document
Yuki Kimoto authored on 2011-01-23
317
C<column>には列名を、C<where>には条件を指定することができます。
318
次のSQLが発行されます。
319

            
320
    select author, title from book where author = ?;
added experimental expand me...
yuki-kimoto authored on 2010-10-20
321

            
updated document
Yuki Kimoto authored on 2011-01-23
322
テーブルを結合したい場合ははC<relation>にテーブルの
323
関係を記述します。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
324

            
325
    my $result = $dbi->select(
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
326
        table    => ['book', 'rental'],
updated document
Yuki Kimoto authored on 2011-01-23
327
        where    => {book.name => 'Perl'},
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
328
        relation => {'book.id' => 'rental.book_id'}
added experimental expand me...
yuki-kimoto authored on 2010-10-20
329
    );
330

            
updated document
Yuki Kimoto authored on 2011-01-23
331
bookテーブルのid列とrentalテーブルのbook_idが関連付けられます。
332
次のSQLが発行されます。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
333

            
updated document
Yuki Kimoto authored on 2011-01-23
334
    select * from book, rental where book.name = ? and book.id = rental.book_id;
added experimental expand me...
yuki-kimoto authored on 2010-10-20
335

            
updated document
Yuki Kimoto authored on 2011-01-23
336
SQL文の末尾に文字列を追加したい場合は<append>を使用します。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
337

            
338
    my $result = $dbi->select(
remove DBIx::Custom::Model
Yuki Kimoto authored on 2011-01-12
339
        table  => 'book',
added experimental expand me...
yuki-kimoto authored on 2010-10-20
340
        where  => {author => 'Ken'},
updated document
Yuki Kimoto authored on 2011-01-23
341
        append => 'for update',
added experimental expand me...
yuki-kimoto authored on 2010-10-20
342
    );
343

            
updated document
Yuki Kimoto authored on 2011-01-23
344
次のSQLが発行されます。
updated document
Yuki Kimoto authored on 2011-01-20
345

            
updated document
Yuki Kimoto authored on 2011-01-23
346
    select * book where author = ? for update;
updated document
Yuki Kimoto authored on 2011-01-20
347

            
updated document
Yuki Kimoto authored on 2011-01-23
348
またC<append>は、C<select>だけでなくC<insert()>、C<update()>、C<update_all()>
349
C<delete()>、C<delete_all()>、C<select()>で使用することもできます。
updated document
Yuki Kimoto authored on 2011-01-20
350

            
update pod
Yuki Kimoto authored on 2011-01-26
351
=head3 SQLの実行 C<execute()>
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
352

            
353
任意のSQLを実行するにはexecuteメソッドを使用します。
354

            
355
    $dbi->execute("select * from book;");
356

            
357
C<execute()>はL<DBIx::Custom>の根幹のメソッドでありタグを展開します。
358

            
359
    $dbi->execute(
360
        "select * from book {= title} and {= author};"
361
        param => {title => 'Perl', author => 'Ken'}
362
    );
363

            
364
上記のタグを含んだSQLは次のように展開されます。
365

            
366
    select * from book title = ? and author = ?;
367

            
368
SQLが実行されるときにプレースホルダ(?)に対応する位置にtitleとauthor
369
の値がが自動的に埋め込まれます。
370

            
371
タグについてはL<5. タグ/"5. タグ">で詳しく解説しますが、
372
ひとつの注意点があります。
373
タグを展開するためにC<{>とC<}>は予約語になっています。
374
もし利用したい場合は直前に\をおいてエスケープを行う必要があります。
375

            
376
    $dbi->execute("... \\{ ... \\} ...");
377

            
378
\自体がPerlのエスケープ文字ですので、二つ必要になるという点に注意してください。
379

            
380
またexecuteのキュートな機能として、SQLの最後にセミコロンをおかなくても
381
かまいません。
382

            
383
    $dbi->execute('select * from book');
384

            
updated document
Yuki Kimoto authored on 2011-01-20
385
=head2 3. 行のフェッチ
386

            
updated document
Yuki Kimoto authored on 2011-01-23
387
C<select()>メソッドの戻り値はL<DBIx::Custom::Result>オブジェクトです。
388
L<DBIx::Custom::Result>には行をフェッチするためのさまざまなメソッドが
updated document
Yuki Kimoto authored on 2011-01-20
389
用意されています。
390

            
update pod
Yuki Kimoto authored on 2011-01-26
391
=head3 1行づつフェッチ(配列) C<fetch()>
updated document
Yuki Kimoto authored on 2011-01-20
392

            
updated document
Yuki Kimoto authored on 2011-01-23
393
一行フェッチして配列のリファレンスに格納するにはC<fetch()>を使用します。
updated document
Yuki Kimoto authored on 2011-01-20
394

            
395
    while (my $row = $result->fetch) {
updated document
Yuki Kimoto authored on 2011-01-23
396
        my $title  = $row->[0];
397
        my $author = $row->[1];
updated document
Yuki Kimoto authored on 2011-01-20
398
    }
399

            
updated document
Yuki Kimoto authored on 2011-01-23
400
whileループを使って、すべての行を取得することができます。
401

            
update pod
Yuki Kimoto authored on 2011-01-26
402
=head3 最初の行だけフェッチ(配列) C<fetch_first()>
updated document
Yuki Kimoto authored on 2011-01-20
403

            
updated document
Yuki Kimoto authored on 2011-01-23
404
一行だけフェッチして配列のリファレンスに格納するにはC<fetch_first()>
405
を使用します。
updated document
Yuki Kimoto authored on 2011-01-20
406

            
407
    my $row = $result->fetch_first;
408

            
updated document
Yuki Kimoto authored on 2011-01-23
409
一行のフェッチが終わった後はそれ以上フェッチできなくなります。
410
内部的には1行のフェッチが終わった後に
411
ステートメントハンドルのC<finish()>が実行されます。
updated document
Yuki Kimoto authored on 2011-01-20
412

            
update pod
Yuki Kimoto authored on 2011-01-26
413
=head3 複数行を順にフェッチ(配列) C<fetch_multi()>
updated document
Yuki Kimoto authored on 2011-01-20
414

            
updated document
Yuki Kimoto authored on 2011-01-23
415
複数行をフェッチして配列のリファレンスを要素に持つ
416
配列のリファレンスに格納するにはC<fetch_multi()>を使用します。
updated document
Yuki Kimoto authored on 2011-01-20
417

            
updated document
Yuki Kimoto authored on 2011-01-23
418
    while (my $rows = $result->fetch_multi(2)) {
419
        my $title0   = $rows->[0][0];
420
        my $author0  = $rows->[0][1];
421
        
422
        my $title1   = $rows->[1][0];
423
        my $author1  = $rows->[1][1];
updated document
Yuki Kimoto authored on 2011-01-20
424
    }
425

            
updated document
Yuki Kimoto authored on 2011-01-23
426
引数には取り出したい行数を指定します。
427

            
428
指定した行を格納した次のようなデータを取得できます。
429

            
430
    [
431
        ['Perl', 'Ken'],
432
        ['Ruby', 'Mark']
433
    ]
434

            
update pod
Yuki Kimoto authored on 2011-01-26
435
=head3 すべての行をフェッチ(配列) C<fetch_all>
updated document
Yuki Kimoto authored on 2011-01-20
436

            
updated document
Yuki Kimoto authored on 2011-01-23
437
すべての行をフェッチして配列のリファレンスを要素に持つ
438
配列のリファレンスに格納するにはC<fetch_all()>を使用します。
updated document
Yuki Kimoto authored on 2011-01-20
439

            
440
    my $rows = $result->fetch_all;
441

            
updated document
Yuki Kimoto authored on 2011-01-23
442
すべての行を格納した次のようなデータを取得できます。
443

            
444
    [
445
        ['Perl', 'Ken'],
446
        ['Ruby', 'Mark']
447
    ]
448

            
update pod
Yuki Kimoto authored on 2011-01-26
449
=head3 1行づつフェッチ(ハッシュ) C<fetch_hash()>
updated document
Yuki Kimoto authored on 2011-01-20
450

            
updated document
Yuki Kimoto authored on 2011-01-23
451
一行フェッチしてハッシュのリファレンスに格納するにはC<fetch_hash()>を使用します。
updated document
Yuki Kimoto authored on 2011-01-20
452

            
453
    while (my $row = $result->fetch_hash) {
454
        my $title  = $row->{title};
455
        my $author = $row->{author};
456
    }
457

            
update pod
Yuki Kimoto authored on 2011-01-26
458
=head3 最初の行だけフェッチ(ハッシュ) C<fetch_hash_first()>
updated document
Yuki Kimoto authored on 2011-01-20
459

            
updated document
Yuki Kimoto authored on 2011-01-23
460
一行だけフェッチしてハッシュのリファレンスに格納するには
461
C<fetch_hash_first()>を使用します。
updated document
Yuki Kimoto authored on 2011-01-20
462

            
463
    my $row = $result->fetch_hash_first;
464

            
updated document
Yuki Kimoto authored on 2011-01-23
465
一行のフェッチが終わった後はそれ以上フェッチできなくなります。
466
内部的には1行のフェッチが終わった後に
467
ステートメントハンドルのC<finish()>が実行されます。
updated document
Yuki Kimoto authored on 2011-01-20
468

            
update pod
Yuki Kimoto authored on 2011-01-26
469
=head3 複数行を順にフェッチ(ハッシュ) C<fetch_hash_multi()>
updated document
Yuki Kimoto authored on 2011-01-20
470

            
updated document
Yuki Kimoto authored on 2011-01-23
471
複数行をフェッチしてハッシュのリファレンスを要素に持つ
472
配列のリファレンスに格納するにはC<fetch_hash_multi()>
473
を使用します。
updated document
Yuki Kimoto authored on 2011-01-20
474

            
475
    while (my $rows = $result->fetch_hash_multi(5)) {
updated document
Yuki Kimoto authored on 2011-01-23
476
        my $title0   = $rows->[0]{title};
477
        my $author0  = $rows->[0]{author};
478
        my $title1  = $rows->[1]{title};
479
        my $author1 = $rows->[1]{author};
updated document
Yuki Kimoto authored on 2011-01-20
480
    }
481

            
updated document
Yuki Kimoto authored on 2011-01-23
482
引数には取り出したい行数を指定します。
483

            
484
指定した行を格納した次のようなデータを取得できます。
485

            
486
    [
487
        {title => 'Perl', author => 'Ken'},
488
        {title => 'Ruby', author => 'Mark'}
489
    ]
490

            
update pod
Yuki Kimoto authored on 2011-01-26
491
=head3 すべての行をフェッチ(ハッシュ) C<fetch_hash_all()>
updated document
Yuki Kimoto authored on 2011-01-20
492

            
updated document
Yuki Kimoto authored on 2011-01-23
493
すべての行をフェッチしてハッシュのリファレンスを要素に持つ
494
配列のリファレンスに格納するにはC<fetch_hash_all()>
495
を使用します。
updated document
Yuki Kimoto authored on 2011-01-20
496

            
497
    my $rows = $result->fetch_hash_all;
498

            
updated document
Yuki Kimoto authored on 2011-01-23
499
すべての行を格納した次のようなデータを取得できます。
500

            
501
    [
502
        {title => 'Perl', author => 'Ken'},
503
        {title => 'Ruby', author => 'Mark'}
504
    ]
505

            
update pod
Yuki Kimoto authored on 2011-01-26
506
=head3 ステートメントハンドル C<sth()>
updated document
Yuki Kimoto authored on 2011-01-23
507

            
508
ステートメントハンドルに直接アクセスしたい場合は
509
<sth>で取得することができます。
updated document
Yuki Kimoto authored on 2011-01-20
510

            
511
    my $sth = $result->sth;
512

            
updated document
Yuki Kimoto authored on 2011-01-23
513
フェッチのパフォーマンスが用件を満たさないときには、
514
ステートメントハンドルから
515
利用できる速度の速いメソッドを利用することができます。
516

            
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
517
=head2 4. フィルタリング
518

            
519
データベースにデータを登録するときやデータベースからデータを取得する
520
ときに自動的に値の変換を行いたい場合が多いと思います。
521
たとえば、日付を表現する列の場合は、
522
データベースに登録する場合はL<Time::Piece>オブジェクトから
523
データベースの日付のフォーマットに、
524
データベースからデータを取得するときは、その逆を行えると便利です。
525

            
update pod
Yuki Kimoto authored on 2011-01-26
526
=head3 フィルタの登録 C<register_filter()>
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
527

            
528
フィルタを登録するにはC<register_filter()>を使用します。
529

            
530
    $dbi->register_filter(
531
        # Time::Piece object to DATE format
532
        tp_to_date => sub {
533
            my $date = shift;
534

            
535
            return '0000-00-00' unless $tp;
536
            return $tp->strftime('%Y-%m-%d');
537
        },
538
        
539
        # DATE to Time::Piece object
540
        date_to_tp => sub {
541
            my $date = shift;
542

            
543
            return if $date eq '0000-00-00';
544
            return Time::Piece->strptime($date, '%Y-%m-%d');
545
        },
546
    );
547

            
548
登録したフィルタはC<apply_filter()>などで利用することができます。
549

            
update pod
Yuki Kimoto authored on 2011-01-26
550
=head3 フィルタの適用 C<apply_filter()>
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
551

            
552
作成したフィルタを適用するには、C<apply_filter()>を使用します。
553

            
554
    $dbi->apply_filter('book',
555
        issue_date => {out => 'tp_to_date', in => 'date_to_tp'},
556
        first_issue_date => {out => 'tp_to_date', in => 'date_to_tp'}
557
    );
558

            
559
第一引数はテーブル名です。第二引数以降は、列名とフィルタルールのペアを記述します。
560
フィルタルールのoutには、データベースにデータを送信するときに適用するフィルタを、
561
フィルタルールのinには、データベースからデータを取得するときに適用するフィルタを
562
記述します。outがデータベースに送信する方向、inがデータベースから取り出す方向です。
563
フィルタには、C<register_filter>で登録したフィルタ名の他に、コードリファレンスを
564
指定することもできます。
565

            
566
    issue_date => {out => sub { ... }, in => sub { ... }}
567

            
568
適用されたフィルタはC<insert()>、C<update()>、C<update_all()>、C<delete()>、
569
C<delete_all()>、C<select()>で有効になります。
570

            
571
    my $tp = Time::Piece->strptime('2010/10/14', '%Y/%m/%d');
572
    my $result = $dbi->select(table => 'book', where => {issu_date => $tp});
573

            
574
データベースにデータが送信されるときに、L<Time::Piece>オブジェクトは
575
データベースの日付のフォーマット「2010-10-14」に変換されます。
576

            
577
また逆にデータをフェッチするときには、データベースの日付のフォーマットは
578
タイムピースオブジェクトに変換されます。
579

            
580
    my $row = $resutl->fetch_hash_first;
581
    my $tp = $row->{issue_date};
582

            
583
このような自動的に実行されるフィルタを登録できることがL<DBIx::Custom>の
584
特徴のひとつです。
585

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
586
C<apply_filter()>で適用されたフィルタはテーブル名をを含む列名に対しても有効です。
587

            
588
    $dbi->select(
589
        table => 'book',
590
        where => {'book.title' => 'Perl', 'book.author' => 'Ken'}
591
    );
592

            
593
テーブルを区別する必要があるときに便利な機能です。
594

            
update pod
Yuki Kimoto authored on 2011-01-26
595
=head3 個別のフィルタの適用 C<filter>
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
596

            
597
C<apply_filter()>を使って最初にすべてのテーブルの列について
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
598
フィルタを定義することもできますが、
599
個別にフィルタを適用することもできます。
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
600
個別のフィルタはC<apply_filter()>で適用したフィルタを上書きます。
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
601
個別のフィルタはSQLのasを使って、列の別名を作成する必要がある場合に活躍します。
602

            
603
データベースに送信する場合に、個別のフィルタを適用するには、各メソッドの
604
C<filter>オプションを使用します。個別のフィルタは、C<insert()>、C<update()>、
605
C<update_all()>、C<delete()>、C<delete_all()>、C<select()>、C<execute()>
606
で使用することができます。
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
607

            
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
608
C<insert()>の例を示します。
609

            
610
    $dbi->insert(
611
        table => 'book',
612
        param => {issue_date => $tp, first_issue_date => $tp},
613
        filter => {issue_date => 'tp_to_date', first_issue_date => 'tp_to_date'}
614
    );
615

            
616
C<execute()>の例を示します。
617

            
618
my $sql = <<"EOS";
619
select YEAR(issue_date) as issue_year
620
from book
621
where YEAR(issue_date) = {? issue_year}
622
EOS
623
   
624
    my $result = $dbi->execute(
625
        $sql,
626
        param => {issue_year => '2010'},
627
        filter => {issue_year => 'tp_to_year'}
628
    );
629

            
630
これはC<filter>を使う良くある例です。issue_dateの変換についてはC<apply_filter()>
631
で登録してあるのですが、新しく作成した列であるissue_yearについては、
632
何の変換も登録されていません。ですので、個別にフィルタを設定しています。
633

            
634
また反対に行をフェッチするときにも個別のフィルタを適用することができます。
635
フィルタを適用するには、
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
636
C<DBIx::Custom::Result>クラスのC<filter>メソッドを使用します。
637

            
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
638
    $result->filter(issue_year => 'year_to_tp');
639

            
640
頻繁に利用するのであれば、個別に登録するよりもC<apply_filter()>で登録
641
しておいたほうが便利でしょう。C<apply_filter()>は存在しない列に対しても
642
フィルタを適用できるからです。
643

            
644
    $dbi->apply_filter('book',
645
        'issue_year' => {out => 'tp_to_year', in => 'year_to_tp'}
646
    );
647

            
update pod
Yuki Kimoto authored on 2011-01-26
648
=head3 最終出力のためのフィルタリング C<end_filter()>
649

            
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
650
C<DBIx::Custom::Result>ではさらに最後にもう一度、フィルタを追加で
651
登録することができます。たとえばHTMLに出力したい場合に、Time::Piece
652
オブジェクトから読みやすい記述に変換することができます。
653
最後のフィルタを登録するには、C<end_filter()>を使用します。
654

            
655
    $result->end_filter(issue_date => sub {
656
        my $tp = shift;
657
        
658
        return '' unless $tp;
659
        return $tp->strftime('%Y/%m/%d %h:%m:%s (%a)');
660
    });
661

            
662
日付を見やすい形にフォーマットすることができます。
663

            
664
フィルタはフェッチを行う前に登録しておく必要があることに
665
注意してください。
666

            
667
    $result->filter(...);
668
    $result->end_filter(...);
669
    my $row = $result->fetch_hash_first;
670

            
update pod
Yuki Kimoto authored on 2011-01-26
671
=head3 列の情報を元にフィルタを適用する C<each_column()>
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
672

            
673
日付型の列は手動で設定しなくても、自動的に設定できると便利です。
674
このためにデータベースのテーブルの列のすべての情報を
675
順番に処理するためのC<each_column()>があります。
676

            
677
    $dbi->each_column(
678
        sub {
679
            my ($self, $table, $column, $info) = @_;
680
            
681
            my $type = $info->{TYPE_NAME};
682
            
683
            my $filter = $type eq 'DATE'     ? {out => 'tp_to_date', in => 'date_to_tp'}
684
                       : $type eq 'DATETIME' ? {out => 'tp_to_datetime', in => 'datetime_to_tp'}
685
                                             : undef;
686
            
687
            $self->apply_filter($table, $column, $filter)
688
              if $filter;
689
        }
690
    );
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
691

            
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
692
each_columnはコールバックを受け取ります。コールバックの引数は
693
順番にL<DBIx::Custom>オブジェクト、テーブル名、列名、列の情報です。
694
列の型名の情報をもとに自動的に、フィルタを適用しています。
695

            
696
ひとつの注意点としてコールバックの中から、コールバックの外側
697
の変数を参照しないように注意してください。each_columnは
698
高々1回だけ実行されるだけなので、ほとんどの場合問題ありませんが、
699
循環参照によるメモリリークが発生してしまう可能性を持っているからです。
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
700

            
701
=head2 5. タグ
updated document
Yuki Kimoto authored on 2011-01-20
702

            
update pod
Yuki Kimoto authored on 2011-01-26
703
=head3 タグの機能
updated document
Yuki Kimoto authored on 2011-01-20
704

            
update pod
Yuki Kimoto authored on 2011-01-26
705
L<DBIx::Custom>はSQLの中にタグを埋め込む機能を持っています。
updated document
Yuki Kimoto authored on 2011-01-20
706

            
update pod
Yuki Kimoto authored on 2011-01-26
707
    select * from book where {= title} and {like author};
updated document
Yuki Kimoto authored on 2011-01-20
708

            
update pod
Yuki Kimoto authored on 2011-01-26
709
{= title}と{like author}の部分がタグです。タグは次のような形式
710
を持ちます。
updated document
Yuki Kimoto authored on 2011-01-20
711

            
update pod
Yuki Kimoto authored on 2011-01-26
712
    {タグ名 引数1 引数2 ...}
713
    
714
タグはC<{>で始まり、C<}>で終わります。最初のC<{>とタグ名の間
715
には空白を挿入しないよう注意してください。
updated document
Yuki Kimoto authored on 2011-01-20
716

            
update pod
Yuki Kimoto authored on 2011-01-26
717
タグの機能のためにC<{>とC<}>は予約語になっています。
718
もし利用したい場合は直前に\をおいてエスケープを行う必要があります。
updated document
Yuki Kimoto authored on 2011-01-20
719

            
update pod
Yuki Kimoto authored on 2011-01-26
720
    select from book \\{ ... \\}
721

            
722
C<\>自体がPerlのエスケープ文字ですので、
723
エスケープする場合はC<\>が二つ必要になるという点に注意してください。
724

            
725
上記のタグはSQLが実行される前に次のSQLに展開されます。
726

            
727
    select * from book where title = ? and author like ?;
updated document
Yuki Kimoto authored on 2011-01-20
728

            
update pod
Yuki Kimoto authored on 2011-01-26
729
タグを含むSQLを実行するにはC<execute()>を使用します。
updated document
Yuki Kimoto authored on 2011-01-20
730

            
update pod
Yuki Kimoto authored on 2011-01-26
731
    my $sql = "select * from book where {= author} and {like title};"
732
    $dbi->execute($sql, param => {title => 'Perl', author => '%Ken%'});
updated document
Yuki Kimoto authored on 2011-01-20
733

            
update pod
Yuki Kimoto authored on 2011-01-26
734
C<param>オプションを使って、プレースホルダに埋め込みたい値を
735
ハッシュリファレンスで指定することができます。
updated document
Yuki Kimoto authored on 2011-01-20
736

            
update pod
Yuki Kimoto authored on 2011-01-26
737
他のメソッドと同様にC<execute()>においてもC<filter>を指定することができます。
738

            
739
    $dbi->execute($sql, param => {title => 'Perl', author => '%Ken%'}
740
                  filter => {title => 'to_something');
741

            
742
C<execute>のひとつの注意点としてはC<apply_filter()>で適用されたフィルタ
743
はデフォルトでは有効ではないということに注意してください。
744
C<apply_filter()>で適用されたフィルタを有効にするには、
745
C<table>を指定する必要があります。
746

            
747
    $dbi->execute($sql, param => {title => 'Perl', author => '%Ken%'}
748
                  table => ['book']);
749

            
750
=head2 タグ一覧
751

            
752
L<DBIx::Custom>では次のタグが使用可能です。
updated document
Yuki Kimoto authored on 2011-01-20
753

            
754
このようにタグを使ってSQL文を表現するのがL<DBIx::Custom>の
755
特徴です。以下のタグが利用可能です。
756

            
update pod
Yuki Kimoto authored on 2011-01-26
757
=head3 C<?>
758

            
759
C<?>タグは以下のように展開されます。
760

            
761
    {? NAME}    ->   ?
762

            
763
=head3 C<=>
764

            
765
C<=>タグは以下のように展開されます。
766

            
767
    {= NAME}    ->   NAME = ?
768

            
769
=head3 C<E<lt>E<gt>>
770

            
771
C<E<lt>E<gt>>タグは以下のように展開されます。
772

            
773
    {<> NAME}   ->   NAME <> ?
774

            
775
=head3 C<E<lt>>
776

            
777
C<E<lt>>タグは以下のように展開されます。
778

            
779
    {< NAME}    ->   NAME < ?
780

            
781
=head3 C<E<gt>>
782

            
783
C<E<gt>>タグは以下のように展開されます。
784

            
785
    {> NAME}    ->   NAME > ?
786

            
787
=head3 C<E<gt>=>
788

            
789
C<E<gt>=>タグは以下のように展開されます。
790

            
791
    {>= NAME}   ->   NAME >= ?
792

            
793
=head3 C<E<lt>=>
794

            
795
C<E<lt>=>タグは以下のように展開されます。
796

            
797
    {<= NAME}   ->   NAME <= ?
798

            
799
=head3 C<like>
800

            
801
C<like>タグは以下のように展開されます。
802

            
803
    {like NAME}   ->   NAME like ?
804

            
805
=head3 C<in>
806

            
807
C<in>タグは以下のように展開されます。プレースホルダの
808
数を引数で指定する必要があることに注意してください。
809

            
810
    {in NAME COUNT}   ->   NAME in [?, ?, ..]
811

            
812
=head3 C<insert_param>
813

            
814
C<insert_param>タグは以下のように展開されます。
815

            
updated document
Yuki Kimoto authored on 2011-01-20
816
    {insert_param NAME1 NAME2}   ->   (NAME1, NAME2) values (?, ?)
update pod
Yuki Kimoto authored on 2011-01-26
817

            
818
=head3 C<update_param>
819

            
820
C<update_param>タグは以下のように展開されます。
821

            
updated document
Yuki Kimoto authored on 2011-01-20
822
    {update_param NAME1 NAME2}   ->   set NAME1 = ?, NAME2 = ?
823

            
update pod
Yuki Kimoto authored on 2011-01-26
824
=head2 同名の列の扱い
updated document
Yuki Kimoto authored on 2011-01-20
825

            
update pod
Yuki Kimoto authored on 2011-01-26
826
同名の列を含むタグがある場合にも、SQLを実行することができます。
827
たとえば、二つの日付で比較しなければならない場合を
828
考えて見ましょう。
updated document
Yuki Kimoto authored on 2011-01-20
829

            
update pod
Yuki Kimoto authored on 2011-01-26
830
    my $sql = "select * from table where {> date} and {< date};";
updated document
Yuki Kimoto authored on 2011-01-20
831

            
update pod
Yuki Kimoto authored on 2011-01-26
832
このような場合は対応するパラメータの値を配列のリファレンスにします。
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
833

            
update pod
Yuki Kimoto authored on 2011-01-26
834
    my $dbi->execute($sql, param => {date => ['2010-10-01', '2012-02-10']});
835

            
836
=head2 タグの追加 C<register_tag()>
837

            
cleanup
Yuki Kimoto authored on 2011-01-26
838
L<DBIx::Custom>ではタグを独自に追加することができます。
update pod
Yuki Kimoto authored on 2011-01-26
839
タグを追加するにはC<register_tag()>を使用します。
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
840

            
841
    $dbi->register_tag(
update pod
Yuki Kimoto authored on 2011-01-26
842
        '=' => sub {
843
            my $column = shift;
844
            
845
            return ["$column = ?", [$column]];
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
846
        }
847
    );
848

            
update pod
Yuki Kimoto authored on 2011-01-26
849
ここではデフォルトのC<=>タグがどのように実装されているかを示しています。
850
タグを登録する関数の引数はタグの中に書かれた引数になります。
851

            
852
    {タグ名 引数1 引数2}
853

            
854
C<=>タグの場合は
855

            
856
    {= title}
857

            
858
という形式ですから、サブルーチンにはtitleというひとつの列名がわたってきます。
859

            
860
サブルーチンの戻り値には次の形式の配列のリファレンスを返す必要があります。
861

            
862
    [
863
        展開後の文字列,
864
        [プレースホルダに埋め込みに利用する列名1, 列名2, ...]
865
    ]
866

            
867
一つ目の要素は展開後の文字列です。この例では
868

            
869
    'title = ?'
870

            
871
を返す必要があります。
872

            
873
二つ目の要素はプレースホルダに埋め込みに利用する列名を含む配列の
874
リファレンスです。今回の例では
875

            
876
    ['title']
877

            
878
を返す必要があります。複数のプレースホルダを含む場合は、この部分が
879
複数になります。C<insert_param>タグやC<update_param>タグは
880
この部分が実際複数になっています。
881

            
882
上記を合わせると
883

            
884
    ['title = ?', ['title']]
885
    
886
を返す必要があるということです。
887

            
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
888
タグの実装の他のサンプルはL<DBIx::Custom::Tag>のソースコード
889
をご覧になってみてください。
890

            
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
891
=head2 6. Where句の動的な生成
892

            
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
893
=head3 Where句の動的な生成 where()
894

            
895
複数の検索条件を指定して、検索を行いたい場合があります。
896
次の3つのケースのwhere句を考えてみましょう。
897
下記のようなwhere句が必要になります。
898

            
899
titleの値だけで検索したい場合
900

            
901
    where {= title}
902

            
903
authorの値だけで検索したい場合
904

            
905
    where {= author}
906

            
907
titleとauthorの両方の値で検索したい場合
908

            
909
    where {= title} and {=author}
910

            
911
L<DBIx::Custom>では動的なWhere句の生成をサポートしています。
912
まずC<where()>でL<DBIx::Custom::Where>オブジェクトを生成します。
913

            
914
    my $where = $dbi->where;
915

            
916
次にC<clause()>を使用してwhere句を記述します。
917

            
918
    $where->clause(
919
        ['and', '{= title'}, '{= author}']
920
    );
921

            
922
clauseの指定方法は次のようになります。
923

            
924
    ['or' あるいは 'and', タグ1, タグ2, タグ3]
925

            
926
第一引数にはorあるいはandを指定します。第二引数以降には
927
検索条件をタグを使って記述します。
928

            
929
C<clause>の指定は入れ子にすることもでき、さらに複雑な条件
930
を記述することもできます。
931

            
932
    ['and', 
933
      '{= title}', 
934
      ['or', '{= author}', '{like date}']
935
    ]
936

            
937
このようにC<clause>を設定した後にC<param>にパラメータを指定します。
938
    
939
    my $param => {title => 'Perl'};
940
    $where->param($param);
941

            
942
この例ではtitleだけがパラメータに含まれています。
943

            
944
この後C<to_string()>を実行すると$paramに含まれるパラメータを満たす
945
where句を生成することができます。
946

            
947
    my $where_clause = $where->to_string;
948

            
949
パラメータはtitleだけですので、次のようなwhere句が生成されます。
950

            
951
    where {= title}
952

            
cleanup
Yuki Kimoto authored on 2011-01-26
953
またL<DBIx::Custom>は文字列の評価をオーバーロードして、C<to_string()>
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
954
を呼び出すようにしていますので、次のようにしてwhere句を生成することも
955
できます。
956

            
957
    my $where_clause = "$where";
958

            
959
これはSQLの中にwhere句を埋め込むときにとても役立つ機能です。
960

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
961
=head3 同一の列名を含む場合
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
962

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
963
タグの中に同一の名前を持つものが存在した場合でも動的に
964
where句を作成することができます。
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
965

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
966
たとえば、パラメータとして開始日付と終了日付を受け取ったことを
967
考えてみてください。
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
968

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
969
    my $param = {start_date => '2010-11-15', end_date => '2011-11-21'};
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
970

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
971
また開始日付と終了日付の片方だけや、どちらも受け取らない場合もあるかもしれません。
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
972

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
973
この場合は次のようなパラメータに変換することで対応することができます。
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
974

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
975
    my $p = {date => ['2010-11-15', '2011-11-21']};
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
976

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
977
値が配列のリファレンスになっていることに注目してください。このようにすれば
978
同名の列を含むタグに順番に埋め込むことができます。
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
979

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
980
    $where->clause(
981
        ['and', '{> date}', '{< date}']
982
    );
983
    $where->param($p);
984

            
985
また開始日付が存在しない場合は次のようなデータを作成します。
986

            
987
    my $p = {date => [$dbi->not_exists, '2011-11-21']};
988

            
989
L<DBIx::Custom>のC<not_exists>でDBIx::Custom::NotExistsオブジェクトを
990
取得できます。これは対応する値が存在しないことを示すためのものです。
991

            
992
また終了日付が存在しない場合は次のようなデータを作成します。
993

            
994
    my $p = {date => ['2010-11-15']};
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
995

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
996
どちらも存在しない場合は次のようなデータを作成します。
997

            
998
    my $p = {date => []};
999

            
1000
少し難しいので一番簡単に作成できるロジックを示しておきます。
1001

            
1002
    my @date;
1003
    push @date, exists $param->{start_date} ? $param->{start_date}
1004
                                            : $dbi->not_exists;
1005
    push @date, $param->{end_date} if exists $param->{end_date};
1006
    my $p = {date => \@date};
1007

            
1008
=head3 C<select()>との連携
1009

            
update pod
Yuki Kimoto authored on 2011-01-26
1010
L<DBIx::Custom::Where>オブジェクトは
1011
C<select()>のC<where>に直接渡すことが
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
1012
できます。
1013
    
1014
    my $where = $dbi->where;
1015
    $where->clause(...);
1016
    $where->param($param);
1017
    my $result = $dbi->select(table => 'book', where => $where);
1018

            
update pod
Yuki Kimoto authored on 2011-01-26
1019
あるいはC<update()>、C<delete()>のwhereに指定することも可能です。
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
1020

            
1021
=head3 C<execute()>との連携
1022

            
1023
C<execute()>との連携です。SQLを作成するときに埋め込むことができます。
1024

            
1025

            
1026
    my $where = $dbi->where;
1027
    $where->clause(...);
1028
    $where->param($param);
1029

            
1030
    my $sql = <<"EOS"
1031
    select * from book;
1032
    $where
1033
    EOS
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1034

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
1035
    $dbi->execute($sql, param => $param);
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1036

            
update pod
Yuki Kimoto authored on 2011-01-28
1037
=head2 7. テーブルモデル
1038

            
1039
=head3 テーブルオブジェクトの作成 C<table()>
1040

            
1041
L<DBIx::Custom>はロジックとしてテーブルを中心にすえた
1042
モデルの作成を支援します。
1043

            
1044
アプリケーションのロジックを記述するときに、そのロジックを
1045
データベースのテーブルにすえることは、RDBMSを利用する
1046
モデルであれば、コードの重複も少なく
1047
わかりやすいものになります。
1048

            
1049
テーブルオブジェクトを生成するにはC<table()>を使用します。
1050

            
1051
    my $table = $dbi->table('book');
1052

            
1053
実際にデータベースにテーブルは存在している必要はありません。
1054
これは仮想的なテーブルオブジェクトです。これは
1055
L<DBIx::Customm::Table>オブジェクトになります。
1056

            
1057
テーブルオブジェクトからはC<insert()>、C<update()>、C<update_all()>、
1058
C<delete()>、C<delete_all()>、C<select()>などのメソッド呼び出すことができます。
1059
L<DBIx::Custom>と異なるところは、C<table>を必ずしも指定する必要が
1060
ないということです。
1061

            
1062
    $table->insert(param => $param);
1063

            
1064
C<table>の値は自動的にbookに設定されます。
1065

            
1066
またテーブルオブジェクトには独自のメソッドを追加することができます。
1067

            
1068
    $table->method(
1069
        register => sub {
1070
            my $self = shift;
1071
            my $table_name = $self->name;
1072
            # something
1073
        },
1074
        list => sub {
1075
            my $self = shift;
1076
            my $table_name = $self->name;
1077
            # something
1078
        }
1079
    );
1080

            
1081
メソッドに渡される第一引数はL<DBIx::Custom::Table>オブジェクトです。
1082
C<name()>を使用して、テーブル名を取得することができます。
1083

            
1084
このようにして登録したメソッドは直接呼び出すことができます。
1085

            
1086
    $table->register(...);
1087
    $table->list(...);
1088

            
1089
またテーブル専用のメソッドをオーバーライドして作成することもできます。
1090

            
1091
    $table->method(
1092
        insert => sub {
1093
            my $self = shift;
1094
            
1095
            $self->base_insert(...);
1096
            
1097
            # something
1098
        }
1099
    );
1100

            
1101
もともと存在していたC<insert()>を呼ぶにはC<base_$method>とします。L<DBIx::Custom::Table>
1102
のオーバーライドの機能は簡易的なものですが、とても便利です。
1103

            
1104
=head2 テーブルで共有のメソッドの登録
1105

            
1106
すべてのテーブルでメソッドを共有するにはC<table>メソッドでテーブルを作成する前に、
1107
C<base_table>にメソッドを登録しておきます。
1108

            
1109
    $dbi->base_table->method(
1110
        count => sub {
1111
            my $self = shift;
1112
            return $self->select(column => ['count(*)']);
1113
        }
1114
    );
1115

            
1116
またテーブルからはL<DBIx::Custom>とL<DBI>のすべてのメソッドを呼び出すことができます。
1117

            
1118
    # DBIx::Custom method
1119
    $table->execute($sql);
1120
    
1121
    # DBI method
1122
    $table->begin_work;
1123
    $table->commit;
1124

            
1125
=head2 一般的なモデルの構成
1126

            
1127
一般的には、L<DBIx::Custom>を継承してコンストラクタの中に、モデルを作成
1128
するのがよいでしょう。
1129

            
1130
    package MyDBI;
1131
    
1132
    use base 'DBIx::Custom';
1133
    
1134
    sub connect {
1135
        my $self = shift->SUPER::connect(@_);
1136
        
1137
        $self->base_table->method(
1138
            ... => sub { ... }
1139
        );
1140
        
1141
        $self->table('book')->method(
1142
            insert_multi => sub { ... },
1143
            ... => sub { ... }
1144
        );
1145
        
1146
        $self->table('company')->method(
1147
            ... => sub { ... },
1148
        );
1149
    }
1150

            
1151
このようにして定義しておけば、次のように利用することができます。
1152

            
1153
    my $dbi = MyDBI->connect(...);
1154
    $dbi->table('book')->insert_multi(...);
1155

            
1156
=head2 8. パフォーマンスの改善
updated document
Yuki Kimoto authored on 2011-01-20
1157

            
update pod
Yuki Kimoto authored on 2011-01-26
1158
=head3 クエリの作成
updated document
Yuki Kimoto authored on 2011-01-20
1159

            
1160
もしC<insert()>メソッドを使用してインサートを実行した場合、
1161
必要なパフォーマンスを得られない場合があるかもしれません。
1162
C<insert()>メソッドは、SQL文とステートメントハンドルを
update pod
Yuki Kimoto authored on 2011-01-26
1163
毎回作成するためです。
1164

            
1165
そのような場合は、C<query>オプションを指定することで、
1166
クエリを取得することができます。
1167

            
1168
    my $query = $dbi->insert(table => 'book', param => $param, query => 1);
1169

            
1170
またC<create_query()>メソッドを使って任意のSQLのクエリを作成
1171
することもできます。
updated document
Yuki Kimoto authored on 2011-01-20
1172

            
1173
    my $query = $dbi->create_query(
update pod
Yuki Kimoto authored on 2011-01-26
1174
        "insert into book {insert_param title author};";
updated document
Yuki Kimoto authored on 2011-01-20
1175
    );
1176

            
1177
戻り値はL<DBIx::Custom::Query>オブジェクトです。
1178
このオブジェクトはSQL文とパラメータバインド時の列名を
1179
保持しています。またステートメントハンドルも保持しています。
1180

            
1181
    {
1182
        sql     => 'insert into book (title, author) values (?, ?);',
1183
        columns => ['title', 'author'],
1184
        sth     => $sth
1185
    }
1186

            
update pod
Yuki Kimoto authored on 2011-01-26
1187
クエリオブジェクトを使って繰り返し実行するにはC<execute()>を使用します。
updated document
Yuki Kimoto authored on 2011-01-20
1188
    
update pod
Yuki Kimoto authored on 2011-01-26
1189
    my $params = [
updated document
Yuki Kimoto authored on 2011-01-20
1190
        {title => 'Perl',      author => 'Ken'},
1191
        {title => 'Good days', author => 'Mike'}
1192
    ];
1193
    
update pod
Yuki Kimoto authored on 2011-01-26
1194
    foreach my $param (@$paramss) {
1195
        $dbi->execute($query, table => 'book', param => $input);
updated document
Yuki Kimoto authored on 2011-01-20
1196
    }
1197

            
1198
C<execute>メソッドの第一引数にクエリオブジェトを渡すことができます。
update pod
Yuki Kimoto authored on 2011-01-26
1199
C<insert()>メソッドよりも高速です。
updated document
Yuki Kimoto authored on 2011-01-20
1200

            
update pod
Yuki Kimoto authored on 2011-01-26
1201
注意点がいくつかあります。それはパラメータの数は必ず同じでなくてはならない
1202
ということです。最初に3つのパラメータだけを渡したのに、次の実行では
1203
二つのパラメータを渡すと予期しない結果になります。それは
1204
動的に生成されたSQLに含まれるプレースホルダの数が異なるからです。
1205
またC<execute()>によっては自動的にはフィルタが有効にならないので、
1206
C<table>を指定する必要のあることに注意してください。
1207
本当に必要な場合だけ利用してください。
updated document
Yuki Kimoto authored on 2011-01-20
1208

            
update pod
Yuki Kimoto authored on 2011-01-28
1209
=head2 9. その他の機能
updated document
Yuki Kimoto authored on 2011-01-20
1210

            
update pod
Yuki Kimoto authored on 2011-01-26
1211
=head3 メソッドの登録
updated document
Yuki Kimoto authored on 2011-01-20
1212

            
update pod
Yuki Kimoto authored on 2011-01-26
1213
メソッドを登録するにはC<method()>を使用します。
updated document
Yuki Kimoto authored on 2011-01-20
1214

            
update pod
Yuki Kimoto authored on 2011-01-26
1215
    $dbi->method(
updated document
Yuki Kimoto authored on 2011-01-20
1216
        update_or_insert => sub {
1217
            my $self = shift;
update pod
Yuki Kimoto authored on 2011-01-26
1218
            # something
updated document
Yuki Kimoto authored on 2011-01-20
1219
        },
1220
        find_or_create   => sub {
1221
            my $self = shift;
update pod
Yuki Kimoto authored on 2011-01-26
1222
            # something
updated document
Yuki Kimoto authored on 2011-01-20
1223
        }
1224
    );
1225

            
update pod
Yuki Kimoto authored on 2011-01-26
1226
<method()>で登録したメソッドは
updated document
Yuki Kimoto authored on 2011-01-20
1227
L<DBIx::Custom>オブジェクトから直接呼び出すことができます。
1228

            
1229
    $dbi->update_or_insert;
1230
    $dbi->find_or_create;
1231

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1232
=head3 結果クラスの変更
1233

            
1234
必要ならば結果クラスを変更することができます。
1235

            
1236
    package MyResult;
1237
    use base 'DBIx::Custom::Result';
1238
    
1239
    sub some_method { ... }
updated document
Yuki Kimoto authored on 2011-01-20
1240

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1241
    1;
1242
    
1243
    package main;
1244
    
1245
    use MyResult;
1246
    
1247
    my $dbi = DBIx::Custom->connect(...);
1248
    $dbi->result_class('MyResult');
updated document
Yuki Kimoto authored on 2011-01-20
1249

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1250
=head3 キャッシング
updated document
Yuki Kimoto authored on 2011-01-20
1251

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1252
タグの展開後のSQLはパフォーマンスの理由のためにキャッシュされます。
1253
これはC<chace>で設定でき、デフォルトではキャッシュを行う設定です。
updated document
Yuki Kimoto authored on 2011-01-20
1254

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1255
    $dbi->cache(1);
updated document
Yuki Kimoto authored on 2011-01-20
1256

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1257
キャッシュ方法はC<cache_method>にメソッドを指定することで
1258
変更することができます。
1259
データの保存と取得のためのメソッドを定義します。
updated document
Yuki Kimoto authored on 2011-01-20
1260

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1261
デフォルトでは次のようにメモリ上にキャッシュを行うものになっています。
updated document
Yuki Kimoto authored on 2011-01-20
1262

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1263
    $dbi->cache_method(sub {
1264
        sub {
1265
            my $self = shift;
1266
            
1267
            $self->{_cached} ||= {};
1268
            
1269
            if (@_ > 1) {
1270
                # Set
1271
                $self->{_cached}{$_[0]} = $_[1] 
1272
            }
1273
            else {
1274
                # Get
1275
                return $self->{_cached}{$_[0]}
1276
            }
1277
        }
1278
    });
1279
    
1280
第一はL<DBIx::Custom>オブジェクトです。
1281
第二引数はタグの展開される前のSQLです。
1282
第三引数はタグの展開後のSQLです。
updated document
Yuki Kimoto authored on 2011-01-20
1283

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1284
自分で作成する場合は第三引数が存在した場合はキャッシュを設定し、
1285
存在しなかった場合はキャッシュを取得する実装に
1286
してください。
updated document
Yuki Kimoto authored on 2011-01-20
1287

            
1288
=cut