Newer Older
1211 lines | 38.871kb
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

            
update pod
Yuki Kimoto authored on 2011-02-07
505
L<DBIx::Custom>は値のフィルタリング機能を提供します。
506

            
507
たとえば、データをデータベースに登録するときは
508
L<Time::Piece>オブジェクトからデータベースの日付のフォーマットに、
509
データベースからデータを取得するときは、
510
データベースの日付のフォーマットからL<Time::Piece>オブジェクト
511
に変換を行いたいと思うことでしょう。
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
512

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

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

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

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

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

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

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

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

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

            
update pod
Yuki Kimoto authored on 2011-02-07
546
第一引数はテーブル名です。第1引数より後の引数は、列名とフィルタルールのペアを記述します。
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
547
フィルタルールのoutには、データベースにデータを送信するときに適用するフィルタを、
548
フィルタルールのinには、データベースからデータを取得するときに適用するフィルタを
update pod
Yuki Kimoto authored on 2011-02-07
549
記述します。
550

            
551
フィルタとしてコードリファレンスを
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
552
指定することもできます。
553

            
554
    issue_date => {out => sub { ... }, in => sub { ... }}
555

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

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

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

            
update pod
Yuki Kimoto authored on 2011-02-07
565
データをフェッチするときには、データベースの日付のフォーマットは
566
L<Time::Piece>オブジェクトに変換されます。
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
567

            
568
    my $row = $resutl->fetch_hash_first;
569
    my $tp = $row->{issue_date};
570

            
update pod
Yuki Kimoto authored on 2011-02-07
571
テーブル名を含む列名を使用することもできます。
removed experimental expand
Yuki Kimoto authored on 2011-01-26
572

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

            
update pod
Yuki Kimoto authored on 2011-02-07
578
=head3 個別のフィルタ C<filter>
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
579

            
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
580
個別にフィルタを適用することもできます。
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
581
個別のフィルタはC<apply_filter()>で適用したフィルタを上書きます。
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
582

            
update pod
Yuki Kimoto authored on 2011-02-07
583
データを送信する場合に個別のフィルタを適用するには、C<filter>オプションを使用します。
584
このオプションはC<insert()>、C<update()>、
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
585
C<update_all()>、C<delete()>、C<delete_all()>、C<select()>、C<execute()>
586
で使用することができます。
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
587

            
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
588
    $dbi->insert(
589
        table => 'book',
590
        param => {issue_date => $tp, first_issue_date => $tp},
591
        filter => {issue_date => 'tp_to_date', first_issue_date => 'tp_to_date'}
592
    );
593

            
594
C<execute()>の例を示します。
595

            
596
my $sql = <<"EOS";
597
select YEAR(issue_date) as issue_year
598
from book
599
where YEAR(issue_date) = {? issue_year}
600
EOS
601
   
602
    my $result = $dbi->execute(
603
        $sql,
604
        param => {issue_year => '2010'},
605
        filter => {issue_year => 'tp_to_year'}
606
    );
607

            
update pod
Yuki Kimoto authored on 2011-02-07
608
行をフェッチするときにも個別のフィルタを適用することができます。
609
C<DBIx::Custom::Result>のC<filter()>を使用します。
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
610

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

            
update pod
Yuki Kimoto authored on 2011-02-07
613
=head3 最後のフィルタリング : C<end_filter()>
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
614

            
update pod
Yuki Kimoto authored on 2011-02-07
615
最後にもうひとつフィルタを追加することができます。
616
最終的な出力を作成する場合に便利です。
617
最後のフィルタを登録するにはC<end_filter()>を使用します。
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
618

            
619
    $result->end_filter(issue_date => sub {
620
        my $tp = shift;
621
        
622
        return '' unless $tp;
623
        return $tp->strftime('%Y/%m/%d %h:%m:%s (%a)');
624
    });
625

            
update pod
Yuki Kimoto authored on 2011-02-07
626
この例ではL<Time::Piece>オブジェクトを読みやすい書式に変換しています。
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
627

            
update pod
Yuki Kimoto authored on 2011-02-07
628
=head3 フィルタの適用の自動化 C<each_column()>
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
629

            
update pod
Yuki Kimoto authored on 2011-02-07
630
日付型の列は自動的にフィルタを適用できると便利です。
631
列のすべての情報を処理するためのC<each_column()>を利用することができます。
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
632

            
633
    $dbi->each_column(
634
        sub {
635
            my ($self, $table, $column, $info) = @_;
636
            
637
            my $type = $info->{TYPE_NAME};
638
            
639
            my $filter = $type eq 'DATE'     ? {out => 'tp_to_date', in => 'date_to_tp'}
640
                       : $type eq 'DATETIME' ? {out => 'tp_to_datetime', in => 'datetime_to_tp'}
641
                                             : undef;
642
            
643
            $self->apply_filter($table, $column, $filter)
644
              if $filter;
645
        }
646
    );
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
647

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

            
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
652
=head2 5. タグ
updated document
Yuki Kimoto authored on 2011-01-20
653

            
update pod
Yuki Kimoto authored on 2011-02-07
654
=head3 タグの基本
updated document
Yuki Kimoto authored on 2011-01-20
655

            
update pod
Yuki Kimoto authored on 2011-02-07
656
SQLの中にタグを埋め込むことができます。
updated document
Yuki Kimoto authored on 2011-01-20
657

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

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

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

            
update pod
Yuki Kimoto authored on 2011-02-07
668
C<{>とC<}>は予約語になっています。
669
もし利用したい場合は\でエスケープを行う必要があります。
updated document
Yuki Kimoto authored on 2011-01-20
670

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

            
673
C<\>自体がPerlのエスケープ文字ですので、
update pod
Yuki Kimoto authored on 2011-02-07
674
C<\>は二つ必要になります。
update pod
Yuki Kimoto authored on 2011-01-26
675

            
update pod
Yuki Kimoto authored on 2011-02-07
676
タグはSQLが実行される前に展開されます。
update pod
Yuki Kimoto authored on 2011-01-26
677

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

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

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

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

            
update pod
Yuki Kimoto authored on 2011-02-07
688
C<execute()>においてもC<filter>を指定することができます。
update pod
Yuki Kimoto authored on 2011-01-26
689

            
690
    $dbi->execute($sql, param => {title => 'Perl', author => '%Ken%'}
691
                  filter => {title => 'to_something');
692

            
update pod
Yuki Kimoto authored on 2011-02-07
693
C<execute>ではC<apply_filter()>で適用されたフィルタ
694
は有効ではないということに注意してください。
update pod
Yuki Kimoto authored on 2011-01-26
695
C<apply_filter()>で適用されたフィルタを有効にするには、
696
C<table>を指定する必要があります。
697

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

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

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

            
705
    {? NAME}    ->   ?
706

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

            
709
    {= NAME}    ->   NAME = ?
710

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

            
713
    {<> NAME}   ->   NAME <> ?
714

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

            
717
    {< NAME}    ->   NAME < ?
718

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

            
721
    {> NAME}    ->   NAME > ?
722

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

            
725
    {>= NAME}   ->   NAME >= ?
726

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

            
729
    {<= NAME}   ->   NAME <= ?
730

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

            
733
    {like NAME}   ->   NAME like ?
734

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

            
737
    {in NAME COUNT}   ->   NAME in [?, ?, ..]
738

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

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

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

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

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

            
update pod
Yuki Kimoto authored on 2011-02-07
749
同名の列を含むタグがある場合でも大丈夫です。
750
二つの日付で比較しなければならない場合を
update pod
Yuki Kimoto authored on 2011-01-26
751
考えて見ましょう。
updated document
Yuki Kimoto authored on 2011-01-20
752

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

            
update pod
Yuki Kimoto authored on 2011-02-07
755
このような場合はパラメータの値を配列のリファレンスで指定します。
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
756

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

            
update pod
Yuki Kimoto authored on 2011-02-07
759
=head3 タグの登録 C<register_tag()>
update pod
Yuki Kimoto authored on 2011-01-26
760

            
update pod
Yuki Kimoto authored on 2011-02-07
761
独自のタグを登録することができます。
update pod
Yuki Kimoto authored on 2011-01-26
762
タグを追加するにはC<register_tag()>を使用します。
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
763

            
764
    $dbi->register_tag(
update pod
Yuki Kimoto authored on 2011-01-26
765
        '=' => sub {
766
            my $column = shift;
767
            
768
            return ["$column = ?", [$column]];
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
769
        }
770
    );
771

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

            
775
    {タグ名 引数1 引数2}
776

            
777
C<=>タグの場合は
778

            
779
    {= title}
780

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

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

            
785
    [
786
        展開後の文字列,
787
        [プレースホルダに埋め込みに利用する列名1, 列名2, ...]
788
    ]
789

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

            
792
    'title = ?'
793

            
794
を返す必要があります。
795

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

            
799
    ['title']
800

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

            
805
上記を合わせると
806

            
807
    ['title = ?', ['title']]
808
    
809
を返す必要があるということです。
810

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

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

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

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

            
822
titleの値だけで検索したい場合
823

            
824
    where {= title}
825

            
826
authorの値だけで検索したい場合
827

            
828
    where {= author}
829

            
830
titleとauthorの両方の値で検索したい場合
831

            
832
    where {= title} and {=author}
833

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

            
837
    my $where = $dbi->where;
838

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

            
841
    $where->clause(
842
        ['and', '{= title'}, '{= author}']
843
    );
844

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

            
847
    ['or' あるいは 'and', タグ1, タグ2, タグ3]
848

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

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

            
855
    ['and', 
856
      '{= title}', 
857
      ['or', '{= author}', '{like date}']
858
    ]
859

            
860
このようにC<clause>を設定した後にC<param>にパラメータを指定します。
861
    
862
    my $param => {title => 'Perl'};
863
    $where->param($param);
864

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

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

            
870
    my $where_clause = $where->to_string;
871

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

            
874
    where {= title}
875

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

            
880
    my $where_clause = "$where";
881

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

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

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

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

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

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

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

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

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

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
903
    $where->clause(
904
        ['and', '{> date}', '{< date}']
905
    );
906
    $where->param($p);
907

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

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

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

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

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

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

            
921
    my $p = {date => []};
922

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

            
925
    my @date;
926
    push @date, exists $param->{start_date} ? $param->{start_date}
927
                                            : $dbi->not_exists;
928
    push @date, $param->{end_date} if exists $param->{end_date};
929
    my $p = {date => \@date};
930

            
931
=head3 C<select()>との連携
932

            
update pod
Yuki Kimoto authored on 2011-01-26
933
L<DBIx::Custom::Where>オブジェクトは
934
C<select()>のC<where>に直接渡すことが
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
935
できます。
936
    
937
    my $where = $dbi->where;
938
    $where->clause(...);
939
    $where->param($param);
940
    my $result = $dbi->select(table => 'book', where => $where);
941

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

            
944
=head3 C<execute()>との連携
945

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

            
948

            
949
    my $where = $dbi->where;
950
    $where->clause(...);
951
    $where->param($param);
952

            
953
    my $sql = <<"EOS"
954
    select * from book;
955
    $where
956
    EOS
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
957

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

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

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

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

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

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

            
974
    my $table = $dbi->table('book');
975

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

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

            
985
    $table->insert(param => $param);
986

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

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

            
991
    $table->method(
992
        register => sub {
993
            my $self = shift;
994
            my $table_name = $self->name;
995
            # something
996
        },
997
        list => sub {
998
            my $self = shift;
999
            my $table_name = $self->name;
1000
            # something
1001
        }
1002
    );
1003

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

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

            
1009
    $table->register(...);
1010
    $table->list(...);
1011

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

            
1014
    $table->method(
1015
        insert => sub {
1016
            my $self = shift;
1017
            
1018
            $self->base_insert(...);
1019
            
1020
            # something
1021
        }
1022
    );
1023

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

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

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

            
1032
    $dbi->base_table->method(
1033
        count => sub {
1034
            my $self = shift;
1035
            return $self->select(column => ['count(*)']);
1036
        }
1037
    );
1038

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

            
1041
    # DBIx::Custom method
1042
    $table->execute($sql);
1043
    
1044
    # DBI method
1045
    $table->begin_work;
1046
    $table->commit;
1047

            
1048
=head2 一般的なモデルの構成
1049

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

            
1053
    package MyDBI;
1054
    
1055
    use base 'DBIx::Custom';
1056
    
1057
    sub connect {
1058
        my $self = shift->SUPER::connect(@_);
1059
        
1060
        $self->base_table->method(
1061
            ... => sub { ... }
1062
        );
1063
        
1064
        $self->table('book')->method(
1065
            insert_multi => sub { ... },
1066
            ... => sub { ... }
1067
        );
1068
        
1069
        $self->table('company')->method(
1070
            ... => sub { ... },
1071
        );
1072
    }
1073

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

            
1076
    my $dbi = MyDBI->connect(...);
1077
    $dbi->table('book')->insert_multi(...);
1078

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

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

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

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

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

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

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

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

            
1104
    {
1105
        sql     => 'insert into book (title, author) values (?, ?);',
1106
        columns => ['title', 'author'],
1107
        sth     => $sth
1108
    }
1109

            
update pod
Yuki Kimoto authored on 2011-01-26
1110
クエリオブジェクトを使って繰り返し実行するにはC<execute()>を使用します。
updated document
Yuki Kimoto authored on 2011-01-20
1111
    
update pod
Yuki Kimoto authored on 2011-01-26
1112
    my $params = [
updated document
Yuki Kimoto authored on 2011-01-20
1113
        {title => 'Perl',      author => 'Ken'},
1114
        {title => 'Good days', author => 'Mike'}
1115
    ];
1116
    
update pod
Yuki Kimoto authored on 2011-01-26
1117
    foreach my $param (@$paramss) {
1118
        $dbi->execute($query, table => 'book', param => $input);
updated document
Yuki Kimoto authored on 2011-01-20
1119
    }
1120

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

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

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

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

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

            
update pod
Yuki Kimoto authored on 2011-01-26
1138
    $dbi->method(
updated document
Yuki Kimoto authored on 2011-01-20
1139
        update_or_insert => sub {
1140
            my $self = shift;
update pod
Yuki Kimoto authored on 2011-01-26
1141
            # something
updated document
Yuki Kimoto authored on 2011-01-20
1142
        },
1143
        find_or_create   => sub {
1144
            my $self = shift;
update pod
Yuki Kimoto authored on 2011-01-26
1145
            # something
updated document
Yuki Kimoto authored on 2011-01-20
1146
        }
1147
    );
1148

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

            
1152
    $dbi->update_or_insert;
1153
    $dbi->find_or_create;
1154

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

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

            
1159
    package MyResult;
1160
    use base 'DBIx::Custom::Result';
1161
    
1162
    sub some_method { ... }
updated document
Yuki Kimoto authored on 2011-01-20
1163

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1164
    1;
1165
    
1166
    package main;
1167
    
1168
    use MyResult;
1169
    
1170
    my $dbi = DBIx::Custom->connect(...);
1171
    $dbi->result_class('MyResult');
updated document
Yuki Kimoto authored on 2011-01-20
1172

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

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

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

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

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

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1186
    $dbi->cache_method(sub {
1187
        sub {
1188
            my $self = shift;
1189
            
1190
            $self->{_cached} ||= {};
1191
            
1192
            if (@_ > 1) {
1193
                # Set
1194
                $self->{_cached}{$_[0]} = $_[1] 
1195
            }
1196
            else {
1197
                # Get
1198
                return $self->{_cached}{$_[0]}
1199
            }
1200
        }
1201
    });
1202
    
1203
第一はL<DBIx::Custom>オブジェクトです。
1204
第二引数はタグの展開される前のSQLです。
1205
第三引数はタグの展開後のSQLです。
updated document
Yuki Kimoto authored on 2011-01-20
1206

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

            
1211
=cut