Newer Older
1274 lines | 42.427kb
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を生成することができないので、
update pod
Yuki Kimoto authored on 2011-01-31
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
    
update pod
Yuki Kimoto authored on 2011-01-31
102
authorだけの場合は次のSQLを実行した場合を考えましょう。
updated document
Yuki Kimoto authored on 2011-01-20
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

            
update pod
Yuki Kimoto authored on 2011-01-31
227
下記のメソッドがあります。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
228

            
update pod
Yuki Kimoto authored on 2011-01-31
229
=head3 行の挿入 C<insert()>
added experimental expand me...
yuki-kimoto authored on 2010-10-20
230

            
update pod
Yuki Kimoto authored on 2011-01-31
231
データベースに行を挿入するにはC<insert()>を使用します。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
232

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

            
update pod
Yuki Kimoto authored on 2011-01-31
236
C<table>はテーブル名、C<param>は挿入する行のデータです。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
237

            
update pod
Yuki Kimoto authored on 2011-01-31
238
次のSQLが実行されます。
updated document
Yuki Kimoto authored on 2011-01-23
239

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

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

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

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

            
update pod
Yuki Kimoto authored on 2011-01-31
250
C<table>はテーブル名、C<param>は更新データ、C<where>は
251
条件です。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
252

            
update pod
Yuki Kimoto authored on 2011-01-31
253
次のSQLが実行されます。
updated document
Yuki Kimoto authored on 2011-01-23
254

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

            
update pod
Yuki Kimoto authored on 2011-01-31
257
安全のためC<where>のないupdate()を実効することはできません。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
258
もしすべての行を更新したい場合は
updated document
Yuki Kimoto authored on 2011-01-23
259
C<update_all()>を使用してください。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
260

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

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

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

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

            
update pod
Yuki Kimoto authored on 2011-01-31
271
C<table>はテーブル名、C<where>は条件です。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
272

            
update pod
Yuki Kimoto authored on 2011-01-31
273
次のSQLが実行されます。
updated document
Yuki Kimoto authored on 2011-01-23
274

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

            
update pod
Yuki Kimoto authored on 2011-01-31
277
安全のためC<where>のないC<delete()>を実効することはできません。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
278
もしすべての行を削除したい場合は
updated document
Yuki Kimoto authored on 2011-01-23
279
C<delete_all()>を使用してください。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
280

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

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

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

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

            
update pod
Yuki Kimoto authored on 2011-01-31
289
次のSQLが実行されます。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
290

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

            
update pod
Yuki Kimoto authored on 2011-01-31
293
戻り値はL<DBIx::Custom::Result>
updated document
Yuki Kimoto authored on 2011-01-23
294
オブジェクトです。行をフェッチするにはC<fetch()>を使用します。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
295

            
296
    while (my $row = $result->fetch) {
297
        my $title  = $row->[0];
298
        my $author = $row->[1];
299
    }
300

            
update pod
Yuki Kimoto authored on 2011-01-31
301
L<DBIx::Custom::Result>についてはL<3. 行のフェッチ/"3. 行のフェッチ">を見てください。
updated document
Yuki Kimoto authored on 2011-01-23
302

            
update pod
Yuki Kimoto authored on 2011-01-31
303
サンプルを続けます。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
304

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

            
update pod
Yuki Kimoto authored on 2011-01-31
311
C<column>は列名、C<where>は条件です。
312

            
313
次のSQLが実行されます。
updated document
Yuki Kimoto authored on 2011-01-23
314

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

            
update pod
Yuki Kimoto authored on 2011-01-31
317
次のサンプルです。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
318

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

            
update pod
Yuki Kimoto authored on 2011-01-31
325
C<relation>テーブル間の関係です。これは内部結合です。
326

            
327
次のSQLが実行されます。
328

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

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

            
update pod
Yuki Kimoto authored on 2011-01-31
334
次のサンプルです。
added experimental expand me...
yuki-kimoto authored on 2010-10-20
335

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

            
update pod
Yuki Kimoto authored on 2011-01-31
342
C<append>はSQLの末尾に追加される文字列です。
343

            
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

            
update pod
Yuki Kimoto authored on 2011-01-31
353
SQLを実行するにはC<execute()>を使用します。
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
354

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

            
update pod
Yuki Kimoto authored on 2011-01-31
357
タグを処理してSQLを実行します。
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
358

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

            
update pod
Yuki Kimoto authored on 2011-01-31
364
次のSQLが実行されます。
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
365

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

            
update pod
Yuki Kimoto authored on 2011-01-31
368
プレースホルダにtitleとauthorの値が埋め込まれます。
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
369

            
update pod
Yuki Kimoto authored on 2011-01-31
370
タグについてはL<5. タグ/"5. タグ">を見てください。
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
371

            
update pod
Yuki Kimoto authored on 2011-01-31
372
またC<execute()>のSQLの末尾にはセミコロンを置く必要はありません。
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
373

            
374
    $dbi->execute('select * from book');
375

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

            
updated document
Yuki Kimoto authored on 2011-01-23
378
C<select()>メソッドの戻り値はL<DBIx::Custom::Result>オブジェクトです。
update pod
Yuki Kimoto authored on 2011-02-04
379
行をフェッチするためのさまざまなメソッドがあります。
updated document
Yuki Kimoto authored on 2011-01-20
380

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

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

            
update pod
Yuki Kimoto authored on 2011-02-04
385
    my $row = $result->fetch;
386

            
387
以下のようにすべての行を取得することができます。
388

            
updated document
Yuki Kimoto authored on 2011-01-20
389
    while (my $row = $result->fetch) {
updated document
Yuki Kimoto authored on 2011-01-23
390
        my $title  = $row->[0];
391
        my $author = $row->[1];
updated document
Yuki Kimoto authored on 2011-01-20
392
    }
393

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

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

            
399
    my $row = $result->fetch_first;
400

            
update pod
Yuki Kimoto authored on 2011-02-04
401
ステートメントハンドルのC<finish()>が実行される
402
ので残りの行をフェッチできません。
updated document
Yuki Kimoto authored on 2011-01-20
403

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

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

            
updated document
Yuki Kimoto authored on 2011-01-23
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
Yuki Kimoto authored on 2011-01-20
415
    }
416

            
update pod
Yuki Kimoto authored on 2011-02-04
417
取り出したい行数を引数に指定します。
updated document
Yuki Kimoto authored on 2011-01-23
418

            
update pod
Yuki Kimoto authored on 2011-02-04
419
次のようなデータを取得できます。
updated document
Yuki Kimoto authored on 2011-01-23
420

            
421
    [
422
        ['Perl', 'Ken'],
423
        ['Ruby', 'Mark']
424
    ]
425

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

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

            
431
    my $rows = $result->fetch_all;
432

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

            
435
    [
436
        ['Perl', 'Ken'],
437
        ['Ruby', 'Mark']
438
    ]
439

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

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

            
444
    while (my $row = $result->fetch_hash) {
445
        my $title  = $row->{title};
446
        my $author = $row->{author};
447
    }
448

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

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

            
454
    my $row = $result->fetch_hash_first;
455

            
update pod
Yuki Kimoto authored on 2011-02-04
456
ステートメントハンドルのC<finish()>が実行される
457
ので残りの行をフェッチできません。
updated document
Yuki Kimoto authored on 2011-01-20
458

            
update pod
Yuki Kimoto authored on 2011-02-04
459
=head3 複数行をフェッチ(ハッシュ) C<fetch_hash_multi()>
updated document
Yuki Kimoto authored on 2011-01-20
460

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

            
465
    while (my $rows = $result->fetch_hash_multi(5)) {
updated document
Yuki Kimoto authored on 2011-01-23
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
Yuki Kimoto authored on 2011-01-20
470
    }
471

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

            
update pod
Yuki Kimoto authored on 2011-02-04
474
次のようなデータを取得できます。
updated document
Yuki Kimoto authored on 2011-01-23
475

            
476
    [
477
        {title => 'Perl', author => 'Ken'},
478
        {title => 'Ruby', author => 'Mark'}
479
    ]
480

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

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

            
487
    my $rows = $result->fetch_hash_all;
488

            
update pod
Yuki Kimoto authored on 2011-02-04
489
次のようなデータを取得できます。
updated document
Yuki Kimoto authored on 2011-01-23
490

            
491
    [
492
        {title => 'Perl', author => 'Ken'},
493
        {title => 'Ruby', author => 'Mark'}
494
    ]
495

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

            
update pod
Yuki Kimoto authored on 2011-02-04
498
ステートメントハンドル取得したい場合は
499
<sth()>を使用します。
updated document
Yuki Kimoto authored on 2011-01-20
500

            
501
    my $sth = $result->sth;
502

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

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

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

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

            
516
    $dbi->register_filter(
517
        # Time::Piece object to DATE format
518
        tp_to_date => sub {
519
            my $date = shift;
520

            
521
            return '0000-00-00' unless $tp;
522
            return $tp->strftime('%Y-%m-%d');
523
        },
524
        
525
        # DATE to Time::Piece object
526
        date_to_tp => sub {
527
            my $date = shift;
528

            
529
            return if $date eq '0000-00-00';
530
            return Time::Piece->strptime($date, '%Y-%m-%d');
531
        },
532
    );
533

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

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

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

            
540
    $dbi->apply_filter('book',
541
        issue_date => {out => 'tp_to_date', in => 'date_to_tp'},
542
        first_issue_date => {out => 'tp_to_date', in => 'date_to_tp'}
543
    );
544

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

            
552
    issue_date => {out => sub { ... }, in => sub { ... }}
553

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

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

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

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

            
566
    my $row = $resutl->fetch_hash_first;
567
    my $tp = $row->{issue_date};
568

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

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

            
574
    $dbi->select(
575
        table => 'book',
576
        where => {'book.title' => 'Perl', 'book.author' => 'Ken'}
577
    );
578

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

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

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

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

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

            
596
    $dbi->insert(
597
        table => 'book',
598
        param => {issue_date => $tp, first_issue_date => $tp},
599
        filter => {issue_date => 'tp_to_date', first_issue_date => 'tp_to_date'}
600
    );
601

            
602
C<execute()>の例を示します。
603

            
604
my $sql = <<"EOS";
605
select YEAR(issue_date) as issue_year
606
from book
607
where YEAR(issue_date) = {? issue_year}
608
EOS
609
   
610
    my $result = $dbi->execute(
611
        $sql,
612
        param => {issue_year => '2010'},
613
        filter => {issue_year => 'tp_to_year'}
614
    );
615

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

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

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

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

            
630
    $dbi->apply_filter('book',
631
        'issue_year' => {out => 'tp_to_year', in => 'year_to_tp'}
632
    );
633

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

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

            
641
    $result->end_filter(issue_date => sub {
642
        my $tp = shift;
643
        
644
        return '' unless $tp;
645
        return $tp->strftime('%Y/%m/%d %h:%m:%s (%a)');
646
    });
647

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

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

            
653
    $result->filter(...);
654
    $result->end_filter(...);
655
    my $row = $result->fetch_hash_first;
656

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

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

            
663
    $dbi->each_column(
664
        sub {
665
            my ($self, $table, $column, $info) = @_;
666
            
667
            my $type = $info->{TYPE_NAME};
668
            
669
            my $filter = $type eq 'DATE'     ? {out => 'tp_to_date', in => 'date_to_tp'}
670
                       : $type eq 'DATETIME' ? {out => 'tp_to_datetime', in => 'datetime_to_tp'}
671
                                             : undef;
672
            
673
            $self->apply_filter($table, $column, $filter)
674
              if $filter;
675
        }
676
    );
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
677

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
725
    $dbi->execute($sql, param => {title => 'Perl', author => '%Ken%'}
726
                  filter => {title => 'to_something');
727

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

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

            
update pod
Yuki Kimoto authored on 2011-01-31
736
=head3 タグ一覧
update pod
Yuki Kimoto authored on 2011-01-26
737

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

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

            
update pod
Yuki Kimoto authored on 2011-01-31
743
=head4 C<?>
update pod
Yuki Kimoto authored on 2011-01-26
744

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

            
747
    {? NAME}    ->   ?
748

            
update pod
Yuki Kimoto authored on 2011-01-31
749
=head4 C<=>
update pod
Yuki Kimoto authored on 2011-01-26
750

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

            
753
    {= NAME}    ->   NAME = ?
754

            
update pod
Yuki Kimoto authored on 2011-01-31
755
=head4 C<E<lt>E<gt>>
update pod
Yuki Kimoto authored on 2011-01-26
756

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

            
759
    {<> NAME}   ->   NAME <> ?
760

            
update pod
Yuki Kimoto authored on 2011-01-31
761
=head4 C<E<lt>>
update pod
Yuki Kimoto authored on 2011-01-26
762

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

            
765
    {< NAME}    ->   NAME < ?
766

            
update pod
Yuki Kimoto authored on 2011-01-31
767
=head4 C<E<gt>>
update pod
Yuki Kimoto authored on 2011-01-26
768

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

            
771
    {> NAME}    ->   NAME > ?
772

            
update pod
Yuki Kimoto authored on 2011-01-31
773
=head4 C<E<gt>=>
update pod
Yuki Kimoto authored on 2011-01-26
774

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

            
777
    {>= NAME}   ->   NAME >= ?
778

            
update pod
Yuki Kimoto authored on 2011-01-31
779
=head4 C<E<lt>=>
update pod
Yuki Kimoto authored on 2011-01-26
780

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

            
783
    {<= NAME}   ->   NAME <= ?
784

            
update pod
Yuki Kimoto authored on 2011-01-31
785
=head4 C<like>
update pod
Yuki Kimoto authored on 2011-01-26
786

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

            
789
    {like NAME}   ->   NAME like ?
790

            
update pod
Yuki Kimoto authored on 2011-01-31
791
=head4 C<in>
update pod
Yuki Kimoto authored on 2011-01-26
792

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

            
796
    {in NAME COUNT}   ->   NAME in [?, ?, ..]
797

            
update pod
Yuki Kimoto authored on 2011-01-31
798
=head4 C<insert_param>
update pod
Yuki Kimoto authored on 2011-01-26
799

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

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

            
update pod
Yuki Kimoto authored on 2011-01-31
804
=head4 C<update_param>
update pod
Yuki Kimoto authored on 2011-01-26
805

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

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

            
update pod
Yuki Kimoto authored on 2011-01-31
810
=head3 同名の列の扱い
updated document
Yuki Kimoto authored on 2011-01-20
811

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

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

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

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

            
update pod
Yuki Kimoto authored on 2011-01-31
822
=head3 タグの追加 C<register_tag()>
update pod
Yuki Kimoto authored on 2011-01-26
823

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

            
827
    $dbi->register_tag(
update pod
Yuki Kimoto authored on 2011-01-26
828
        '=' => sub {
829
            my $column = shift;
830
            
831
            return ["$column = ?", [$column]];
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
832
        }
833
    );
834

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

            
838
    {タグ名 引数1 引数2}
839

            
840
C<=>タグの場合は
841

            
842
    {= title}
843

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

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

            
848
    [
849
        展開後の文字列,
850
        [プレースホルダに埋め込みに利用する列名1, 列名2, ...]
851
    ]
852

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

            
855
    'title = ?'
856

            
857
を返す必要があります。
858

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

            
862
    ['title']
863

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

            
868
上記を合わせると
869

            
870
    ['title = ?', ['title']]
871
    
872
を返す必要があるということです。
873

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

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

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

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

            
885
titleの値だけで検索したい場合
886

            
887
    where {= title}
888

            
889
authorの値だけで検索したい場合
890

            
891
    where {= author}
892

            
893
titleとauthorの両方の値で検索したい場合
894

            
895
    where {= title} and {=author}
896

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

            
900
    my $where = $dbi->where;
901

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

            
904
    $where->clause(
905
        ['and', '{= title'}, '{= author}']
906
    );
907

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

            
910
    ['or' あるいは 'and', タグ1, タグ2, タグ3]
911

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

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

            
918
    ['and', 
919
      '{= title}', 
920
      ['or', '{= author}', '{like date}']
921
    ]
922

            
923
このようにC<clause>を設定した後にC<param>にパラメータを指定します。
924
    
925
    my $param => {title => 'Perl'};
926
    $where->param($param);
927

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

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

            
933
    my $where_clause = $where->to_string;
934

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

            
937
    where {= title}
938

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

            
943
    my $where_clause = "$where";
944

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

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

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

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

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

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

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

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
961
    my $p = {date => ['2010-11-15', '2011-11-21']};
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
同名の列を含むタグに順番に埋め込むことができます。
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
    $where->clause(
967
        ['and', '{> date}', '{< date}']
968
    );
969
    $where->param($p);
970

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

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

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

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

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

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

            
984
    my $p = {date => []};
985

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

            
988
    my @date;
989
    push @date, exists $param->{start_date} ? $param->{start_date}
990
                                            : $dbi->not_exists;
991
    push @date, $param->{end_date} if exists $param->{end_date};
992
    my $p = {date => \@date};
993

            
994
=head3 C<select()>との連携
995

            
update pod
Yuki Kimoto authored on 2011-01-26
996
L<DBIx::Custom::Where>オブジェクトは
997
C<select()>のC<where>に直接渡すことが
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
998
できます。
999
    
1000
    my $where = $dbi->where;
1001
    $where->clause(...);
1002
    $where->param($param);
1003
    my $result = $dbi->select(table => 'book', where => $where);
1004

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

            
1007
=head3 C<execute()>との連携
1008

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

            
1011

            
1012
    my $where = $dbi->where;
1013
    $where->clause(...);
1014
    $where->param($param);
1015

            
1016
    my $sql = <<"EOS"
1017
    select * from book;
1018
    $where
1019
    EOS
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1020

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

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

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

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

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

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

            
1037
    my $table = $dbi->table('book');
1038

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

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

            
1048
    $table->insert(param => $param);
1049

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

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

            
1054
    $table->method(
1055
        register => sub {
1056
            my $self = shift;
1057
            my $table_name = $self->name;
1058
            # something
1059
        },
1060
        list => sub {
1061
            my $self = shift;
1062
            my $table_name = $self->name;
1063
            # something
1064
        }
1065
    );
1066

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

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

            
1072
    $table->register(...);
1073
    $table->list(...);
1074

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

            
1077
    $table->method(
1078
        insert => sub {
1079
            my $self = shift;
1080
            
1081
            $self->base_insert(...);
1082
            
1083
            # something
1084
        }
1085
    );
1086

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

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

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

            
1095
    $dbi->base_table->method(
1096
        count => sub {
1097
            my $self = shift;
1098
            return $self->select(column => ['count(*)']);
1099
        }
1100
    );
1101

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

            
1104
    # DBIx::Custom method
1105
    $table->execute($sql);
1106
    
1107
    # DBI method
1108
    $table->begin_work;
1109
    $table->commit;
1110

            
1111
=head2 一般的なモデルの構成
1112

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

            
1116
    package MyDBI;
1117
    
1118
    use base 'DBIx::Custom';
1119
    
1120
    sub connect {
1121
        my $self = shift->SUPER::connect(@_);
1122
        
1123
        $self->base_table->method(
1124
            ... => sub { ... }
1125
        );
1126
        
1127
        $self->table('book')->method(
1128
            insert_multi => sub { ... },
1129
            ... => sub { ... }
1130
        );
1131
        
1132
        $self->table('company')->method(
1133
            ... => sub { ... },
1134
        );
1135
    }
1136

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

            
1139
    my $dbi = MyDBI->connect(...);
1140
    $dbi->table('book')->insert_multi(...);
1141

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

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

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

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

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

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

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

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

            
1167
    {
1168
        sql     => 'insert into book (title, author) values (?, ?);',
1169
        columns => ['title', 'author'],
1170
        sth     => $sth
1171
    }
1172

            
update pod
Yuki Kimoto authored on 2011-01-26
1173
クエリオブジェクトを使って繰り返し実行するにはC<execute()>を使用します。
updated document
Yuki Kimoto authored on 2011-01-20
1174
    
update pod
Yuki Kimoto authored on 2011-01-26
1175
    my $params = [
updated document
Yuki Kimoto authored on 2011-01-20
1176
        {title => 'Perl',      author => 'Ken'},
1177
        {title => 'Good days', author => 'Mike'}
1178
    ];
1179
    
update pod
Yuki Kimoto authored on 2011-01-26
1180
    foreach my $param (@$paramss) {
1181
        $dbi->execute($query, table => 'book', param => $input);
updated document
Yuki Kimoto authored on 2011-01-20
1182
    }
1183

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

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

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

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

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

            
update pod
Yuki Kimoto authored on 2011-01-26
1201
    $dbi->method(
updated document
Yuki Kimoto authored on 2011-01-20
1202
        update_or_insert => sub {
1203
            my $self = shift;
update pod
Yuki Kimoto authored on 2011-01-26
1204
            # something
updated document
Yuki Kimoto authored on 2011-01-20
1205
        },
1206
        find_or_create   => sub {
1207
            my $self = shift;
update pod
Yuki Kimoto authored on 2011-01-26
1208
            # something
updated document
Yuki Kimoto authored on 2011-01-20
1209
        }
1210
    );
1211

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

            
1215
    $dbi->update_or_insert;
1216
    $dbi->find_or_create;
1217

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

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

            
1222
    package MyResult;
1223
    use base 'DBIx::Custom::Result';
1224
    
1225
    sub some_method { ... }
updated document
Yuki Kimoto authored on 2011-01-20
1226

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1227
    1;
1228
    
1229
    package main;
1230
    
1231
    use MyResult;
1232
    
1233
    my $dbi = DBIx::Custom->connect(...);
1234
    $dbi->result_class('MyResult');
updated document
Yuki Kimoto authored on 2011-01-20
1235

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

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

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

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

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

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1249
    $dbi->cache_method(sub {
1250
        sub {
1251
            my $self = shift;
1252
            
1253
            $self->{_cached} ||= {};
1254
            
1255
            if (@_ > 1) {
1256
                # Set
1257
                $self->{_cached}{$_[0]} = $_[1] 
1258
            }
1259
            else {
1260
                # Get
1261
                return $self->{_cached}{$_[0]}
1262
            }
1263
        }
1264
    });
1265
    
1266
第一はL<DBIx::Custom>オブジェクトです。
1267
第二引数はタグの展開される前のSQLです。
1268
第三引数はタグの展開後のSQLです。
updated document
Yuki Kimoto authored on 2011-01-20
1269

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

            
1274
=cut