Newer Older
1393 lines | 43.968kb
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

            
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
9
(このガイドは将来的なもので実験的な機能についても記述されています。
10
L<DBIx::Custom>のPODにEXPERIMENTALとマークされている
11
ものは実験的な機能です。)
selection can contain where ...
Yuki Kimoto authored on 2011-03-06
12

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

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

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

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

            
34
    select * from book where {= title} and {=author};
35

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

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

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

            
updated document
Yuki Kimoto authored on 2011-01-20
45
=over 4
updated document
Yuki Kimoto authored on 2011-01-20
46

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

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

            
updated document
Yuki Kimoto authored on 2011-01-20
52
    $sth->execute(@bind);
53

            
54
L<DBIx::Custom>を利用するのであればハッシュリファレンスで指定すること
55
できます。
56
    
57
    my $param = {title => 'Perl', author => 'Ken'};
58
    $dbi->execute($sql, $param);
59

            
update pod
Yuki Kimoto authored on 2011-01-28
60
=item 2. 値のフィルタリング
updated document
Yuki Kimoto authored on 2011-01-20
61

            
update pod
Yuki Kimoto authored on 2011-01-28
62
L<DBIx::Custom>はフィルタリングの機能を提供します。
updated document
Yuki Kimoto authored on 2011-01-20
63
たとえば、日付の列は、Perlで扱うときにはC<Time::Piece>などの日付オブジェクト
64
で扱い、データベースに格納するときはデータベースの日付型に変換したい
65
と思うのではないでしょうか。またデータベースから取り出すときは
66
データベースの日付型から日付オブジェクトに変換したと思うのでは
67
ないでしょうか。
68

            
69
このようなときはフィルタ機能を使うことができます。
70

            
71
まずフィルタを登録します。
72

            
73
    $dbi->register_filter(
74
        tp_to_date => sub {
75
            ...
76
        },
77
        date_to_tp => sub {
78
            ...
79
        }
80
    );
81

            
82
次にテーブルの各列にこのフィルタを適用します。
83

            
84
    $dbi->apply_filter('book',
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
85
        'issue_date' => {out => 'tp_to_date', in => 'date_to_tp'}
updated document
Yuki Kimoto authored on 2011-01-20
86
    );
87

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

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

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

            
94
=item 3. 選択的な検索条件
95

            
update pod
Yuki Kimoto authored on 2011-01-28
96
L<DBI>では選択的に検索条件を作成することは難しいです。
updated document
Yuki Kimoto authored on 2011-01-20
97

            
98
たとえば、検索条件にtitleとauthorが指定された場合は次のSQLを
99

            
100
    select * from book where title = ? and author = ?;
101

            
102
titleだけの場合は次のSQLを
103

            
104
    select * from book where title = ?;
105
    
update pod
Yuki Kimoto authored on 2011-01-31
106
authorだけの場合は次のSQLを実行した場合を考えましょう。
updated document
Yuki Kimoto authored on 2011-01-20
107

            
108
    select * from book where author = ?;
109

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

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

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

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

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

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

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

            
139
    my $param = {title => 'Perl', author => 'Ken'};
140
    $dbi->insert(table => 'book', param => $param);
141

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

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

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

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

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

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

            
updated document
Yuki Kimoto authored on 2011-01-20
162
=back
163

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

            
167
=head2 1. データベースへの接続
168

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

            
171
    use DBIx::Custom;
172

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

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

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

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

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

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

            
193
    "dbi:SQLite:dbname=$database"
194
    "dbi:SQLite:dbname=:memory:"
195

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

            
198
    "dbi:Pg:dbname=$dbname"
199

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

            
202
    "dbi:Oracle:$dbname"
203
    "dbi:Oracle:host=$host;sid=$sid"
204

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

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

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

            
211
   "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
212

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

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

            
218
    my $dbh = $dbi->dbh;
219

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
323
    my $result = $dbi->select(
cleanup
Yuki Kimoto authored on 2011-03-10
324
        table  => 'book',
325
        column => ['company.name as company__name']
326
        where  => {'book.name' => 'Perl'},
327
        join   => ['left outer join company on book.company_id = company.id]
added experimental expand me...
yuki-kimoto authored on 2010-10-20
328
    );
329

            
cleanup
Yuki Kimoto authored on 2011-03-10
330
C<join>でテーブルの結合を行うことができます。
update pod
Yuki Kimoto authored on 2011-01-31
331

            
332
次のSQLが実行されます。
333

            
cleanup
Yuki Kimoto authored on 2011-03-10
334
    select company.name as company__name from book
335
      left outer join company on book.company_id = company.id
336
      where book.name = ?;
337

            
338
bookテーブルのcompany_id列とcompanyテーブルのidが左外部結合されます。
339
次のSQLが実行されます。
340

            
341
C<join>されるのは、C<where>やC<column>にテーブル名が含まれている
342
場合だけであることに注意してください。
343
次のように指定した場合は結合の必要はないと判断されjoinはされません。
344

            
345
    my $result = $dbi->select(
346
        table  => 'book',
347
        where  => {'name' => 'Perl'},
348
        join   => ['left outer join company on book.company_id = company.id]
349
    );
350

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

            
cleanup
Yuki Kimoto authored on 2011-03-10
353
    select * from book where book.name = ?;
added experimental expand me...
yuki-kimoto authored on 2010-10-20
354

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

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

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

            
365
次のSQLが実行されます。
updated document
Yuki Kimoto authored on 2011-01-20
366

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

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

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

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

            
376
    $dbi->execute("select * from book;");
377

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

            
380
    $dbi->execute(
381
        "select * from book {= title} and {= author};"
382
        param => {title => 'Perl', author => 'Ken'}
383
    );
384

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

            
387
    select * from book title = ? and author = ?;
388

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

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

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

            
395
    $dbi->execute('select * from book');
396

            
update pod
Yuki Kimoto authored on 2011-02-28
397
=head3 プライマリーキーを利用した行の挿入 C<insert_at()>
398

            
399
プライマリーを使用して行を更新するにはC<insert_at()>を使用します。
400

            
401
    $dbi->insert_at(
402
        table => 'book', primary_key => ['id'],
403
        where => ['123'], param => {name => 'Ken'}
404
    );
405

            
406
この例ではidの列が123の行に挿入されます。C<where>には、配列の
407
リファレンスを渡す必要があることに注意してください。
408
なおC<param>にプライマリーキーが含まれていた場合は、そのキーが削除されます。
409

            
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
410
=head3 プライマリーキーを利用した行の更新 C<update_at()>
411

            
412
プライマリーを使用して行を更新するにはC<update_at()>を使用します。
413

            
414
    $dbi->update_at(
415
        table => 'book', primary_key => ['id'],
416
        where => ['123'], param => {name => 'Ken'}
417
    );
418

            
419
この例ではidの列が123の行が更新されます。C<where>には、配列の
420
リファレンスを渡す必要があることに注意してください。
update pod
Yuki Kimoto authored on 2011-02-28
421
なおC<param>にプライマリーキーが含まれていた場合は、そのキーが削除されます。
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
422

            
423
=head3 プライマリーキーを利用した行の削除 C<delete_at()>
424

            
425
プライマリーを使用して行を削除するにはC<delete_at()>を使用します。
426

            
427
    $dbi->delete_at(table => 'book', primary_key => ['id'], where => ['123']);
428

            
429
この例ではidの列が123の行が削除されます。C<where>には、配列の
430
リファレンスを渡す必要があることに注意してください。
431

            
432
また下のような記述方法も許されています。
433

            
434
    $dbi->delete_at(table => 'book', primary_key => ['id'], param => {id => '123'});
435

            
436
=head3 プライマリーキーを利用した行の選択 C<select_at()>
437

            
438
プライマリーを使用して行を選択するにはC<select_at()>を使用します。
439

            
440
    $dbi->select_at(table => 'book', primary_key => ['id'], where => ['123']);
441

            
442
この例ではidの列が123の行が選択されます。C<where>には、配列の
443
リファレンスを渡す必要があることに注意してください。
444

            
445
また下のような記述方法も許されています。
446

            
447
    $dbi->select_at(table => 'book', primary_key => ['id'], param => {id => '123'});
448

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

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

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

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

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

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

            
updated document
Yuki Kimoto authored on 2011-01-20
462
    while (my $row = $result->fetch) {
updated document
Yuki Kimoto authored on 2011-01-23
463
        my $title  = $row->[0];
464
        my $author = $row->[1];
updated document
Yuki Kimoto authored on 2011-01-20
465
    }
466

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

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

            
472
    my $row = $result->fetch_first;
473

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

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

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

            
updated document
Yuki Kimoto authored on 2011-01-23
482
    while (my $rows = $result->fetch_multi(2)) {
483
        my $title0   = $rows->[0][0];
484
        my $author0  = $rows->[0][1];
485
        
486
        my $title1   = $rows->[1][0];
487
        my $author1  = $rows->[1][1];
updated document
Yuki Kimoto authored on 2011-01-20
488
    }
489

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

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

            
494
    [
495
        ['Perl', 'Ken'],
496
        ['Ruby', 'Mark']
497
    ]
498

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

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

            
504
    my $rows = $result->fetch_all;
505

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

            
508
    [
509
        ['Perl', 'Ken'],
510
        ['Ruby', 'Mark']
511
    ]
512

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

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

            
517
    while (my $row = $result->fetch_hash) {
518
        my $title  = $row->{title};
519
        my $author = $row->{author};
520
    }
521

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

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

            
527
    my $row = $result->fetch_hash_first;
528

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

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

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

            
538
    while (my $rows = $result->fetch_hash_multi(5)) {
updated document
Yuki Kimoto authored on 2011-01-23
539
        my $title0   = $rows->[0]{title};
540
        my $author0  = $rows->[0]{author};
541
        my $title1  = $rows->[1]{title};
542
        my $author1 = $rows->[1]{author};
updated document
Yuki Kimoto authored on 2011-01-20
543
    }
544

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

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

            
549
    [
550
        {title => 'Perl', author => 'Ken'},
551
        {title => 'Ruby', author => 'Mark'}
552
    ]
553

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

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

            
560
    my $rows = $result->fetch_hash_all;
561

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

            
564
    [
565
        {title => 'Perl', author => 'Ken'},
566
        {title => 'Ruby', author => 'Mark'}
567
    ]
568

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

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

            
574
    my $sth = $result->sth;
575

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

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

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

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

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

            
590
    $dbi->register_filter(
591
        # Time::Piece object to DATE format
592
        tp_to_date => sub {
593
            my $date = shift;
594

            
595
            return '0000-00-00' unless $tp;
596
            return $tp->strftime('%Y-%m-%d');
597
        },
598
        
599
        # DATE to Time::Piece object
600
        date_to_tp => sub {
601
            my $date = shift;
602

            
603
            return if $date eq '0000-00-00';
604
            return Time::Piece->strptime($date, '%Y-%m-%d');
605
        },
606
    );
607

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

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

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

            
614
    $dbi->apply_filter('book',
615
        issue_date => {out => 'tp_to_date', in => 'date_to_tp'},
616
        first_issue_date => {out => 'tp_to_date', in => 'date_to_tp'}
617
    );
618

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

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

            
627
    issue_date => {out => sub { ... }, in => sub { ... }}
628

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

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

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

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

            
641
    my $row = $resutl->fetch_hash_first;
642
    my $tp = $row->{issue_date};
643

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

            
646
    $dbi->select(
647
        table => 'book',
648
        where => {'book.title' => 'Perl', 'book.author' => 'Ken'}
649
    );
650

            
update pod
Yuki Kimoto authored on 2011-02-11
651
フェッチを行う場合に"TABLE__COLUMN"という名前を使用した場合もフィルタは
652
有効になります。
653

            
654
    my $result = $dbi->execute(
655
       "select issue_date as book__issue_date from book");
656

            
657
C<in>フィルタの後に実行されるC<end>フィルタを適用することもできます。
658

            
659
    $dbi->apply_filter('book',
660
        issue_date => {out => 'tp_to_date', in => 'date_to_tp',
661
                       end => 'tp_to_displaydate'},
662
    );
663

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

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

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

            
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
674
    $dbi->insert(
675
        table => 'book',
676
        param => {issue_date => $tp, first_issue_date => $tp},
677
        filter => {issue_date => 'tp_to_date', first_issue_date => 'tp_to_date'}
678
    );
679

            
680
C<execute()>の例を示します。
681

            
682
my $sql = <<"EOS";
683
select YEAR(issue_date) as issue_year
684
from book
685
where YEAR(issue_date) = {? issue_year}
686
EOS
687
   
688
    my $result = $dbi->execute(
689
        $sql,
690
        param => {issue_year => '2010'},
691
        filter => {issue_year => 'tp_to_year'}
692
    );
693

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

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

            
selection can contain where ...
Yuki Kimoto authored on 2011-03-06
699
C<remove_filter()>でフィルタを取り除くこともできます。
700

            
701
    $result->remove_filter
702

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

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

            
709
    $result->end_filter(issue_date => sub {
710
        my $tp = shift;
711
        
712
        return '' unless $tp;
713
        return $tp->strftime('%Y/%m/%d %h:%m:%s (%a)');
714
    });
715

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

            
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-02-28
718
最後のフィルタリングをC<remove_filter()>で取り除くこともできます。
719

            
720
$result->remove_end_filter;
721

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

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

            
727
    $dbi->each_column(
728
        sub {
729
            my ($self, $table, $column, $info) = @_;
730
            
731
            my $type = $info->{TYPE_NAME};
732
            
733
            my $filter = $type eq 'DATE'     ? {out => 'tp_to_date', in => 'date_to_tp'}
734
                       : $type eq 'DATETIME' ? {out => 'tp_to_datetime', in => 'datetime_to_tp'}
735
                                             : undef;
736
            
737
            $self->apply_filter($table, $column, $filter)
738
              if $filter;
739
        }
740
    );
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
741

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
784
    $dbi->execute($sql, param => {title => 'Perl', author => '%Ken%'}
785
                  filter => {title => 'to_something');
786

            
update pod
Yuki Kimoto authored on 2011-02-07
787
C<execute>ではC<apply_filter()>で適用されたフィルタ
788
は有効ではないということに注意してください。
update pod
Yuki Kimoto authored on 2011-01-26
789
C<apply_filter()>で適用されたフィルタを有効にするには、
update pod
Yuki Kimoto authored on 2011-02-11
790
C<table>タグを利用します。
update pod
Yuki Kimoto authored on 2011-01-26
791

            
update pod
Yuki Kimoto authored on 2011-02-11
792
    my $sql = "select * from {table book} where {= author} and {like title};"
update pod
Yuki Kimoto authored on 2011-01-26
793

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

            
update pod
Yuki Kimoto authored on 2011-02-11
796
=head4 C<table>
797

            
798
    {table NAME} -> NAME
799

            
800
これはSQLの中でテーブル名を指定する場合に利用します。
801
テーブル名を指定することによって、C<apply_filter()>
802
によるフィルタリングが有効になります。
803

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

            
806
    {? NAME}    ->   ?
807

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

            
810
    {= NAME}    ->   NAME = ?
811

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

            
814
    {<> NAME}   ->   NAME <> ?
815

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

            
818
    {< NAME}    ->   NAME < ?
819

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

            
822
    {> NAME}    ->   NAME > ?
823

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

            
826
    {>= NAME}   ->   NAME >= ?
827

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

            
830
    {<= NAME}   ->   NAME <= ?
831

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

            
834
    {like NAME}   ->   NAME like ?
835

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

            
838
    {in NAME COUNT}   ->   NAME in [?, ?, ..]
839

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

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

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

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

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

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

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

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

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

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

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

            
865
    $dbi->register_tag(
update pod
Yuki Kimoto authored on 2011-01-26
866
        '=' => sub {
867
            my $column = shift;
868
            
869
            return ["$column = ?", [$column]];
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
870
        }
871
    );
872

            
update pod
Yuki Kimoto authored on 2011-01-26
873
ここではデフォルトのC<=>タグがどのように実装されているかを示しています。
update pod
Yuki Kimoto authored on 2011-02-11
874
タグの形式は次のようになっています。
update pod
Yuki Kimoto authored on 2011-01-26
875

            
update pod
Yuki Kimoto authored on 2011-02-11
876
    {タグ名 引数1 引数2 ...}
update pod
Yuki Kimoto authored on 2011-01-26
877

            
878
C<=>タグの場合は
879

            
880
    {= title}
881

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

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

            
886
    [
887
        展開後の文字列,
888
        [プレースホルダに埋め込みに利用する列名1, 列名2, ...]
889
    ]
890

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

            
893
    'title = ?'
894

            
895
を返す必要があります。
896

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

            
900
    ['title']
901

            
902
を返す必要があります。複数のプレースホルダを含む場合は、この部分が
update pod
Yuki Kimoto authored on 2011-02-11
903
複数になります。
update pod
Yuki Kimoto authored on 2011-01-26
904

            
905
上記を合わせると
906

            
907
    ['title = ?', ['title']]
908
    
909
を返す必要があるということです。
910

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

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

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

            
918
複数の検索条件を指定して、検索を行いたい場合があります。
919
次の3つのケースのwhere句を考えてみましょう。
920

            
921
titleの値だけで検索したい場合
922

            
923
    where {= title}
924

            
925
authorの値だけで検索したい場合
926

            
927
    where {= author}
928

            
929
titleとauthorの両方の値で検索したい場合
930

            
931
    where {= title} and {=author}
932

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

            
936
    my $where = $dbi->where;
937

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

            
940
    $where->clause(
941
        ['and', '{= title'}, '{= author}']
942
    );
943

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

            
946
    ['or' あるいは 'and', タグ1, タグ2, タグ3]
947

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

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

            
954
    ['and', 
955
      '{= title}', 
956
      ['or', '{= author}', '{like date}']
957
    ]
958

            
update pod
Yuki Kimoto authored on 2011-02-11
959
これは "{=title} and ( {=author} or {like date} )" 意味しています。
960

            
961
C<clause>を設定した後にC<param>にパラメータを指定します。
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
962
    
update pod
Yuki Kimoto authored on 2011-02-11
963
    $where->param({title => 'Perl'});
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
964

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

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

            
970
    my $where_clause = $where->to_string;
971

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

            
974
    where {= title}
975

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

            
980
    my $where_clause = "$where";
981

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

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

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

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

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

            
update pod
Yuki Kimoto authored on 2011-02-11
994
この場合はパラメータの値を配列のリファレンスにしてください。
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
995

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

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
998
同名の列を含むタグに順番に埋め込むことができます。
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
999

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
1000
    $where->clause(
1001
        ['and', '{> date}', '{< date}']
1002
    );
1003
    $where->param($p);
1004

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

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

            
update pod
Yuki Kimoto authored on 2011-02-11
1009
C<not_exists()>でDBIx::Custom::NotExistsオブジェクトを
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
1010
取得できます。これは対応する値が存在しないことを示すためのものです。
1011

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

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

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

            
1018
    my $p = {date => []};
1019

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

            
1022
    my @date;
1023
    push @date, exists $param->{start_date} ? $param->{start_date}
1024
                                            : $dbi->not_exists;
1025
    push @date, $param->{end_date} if exists $param->{end_date};
1026
    my $p = {date => \@date};
1027

            
1028
=head3 C<select()>との連携
1029

            
update pod
Yuki Kimoto authored on 2011-01-26
1030
L<DBIx::Custom::Where>オブジェクトは
1031
C<select()>のC<where>に直接渡すことが
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
1032
できます。
1033
    
1034
    my $where = $dbi->where;
1035
    $where->clause(...);
1036
    $where->param($param);
1037
    my $result = $dbi->select(table => 'book', where => $where);
1038

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

            
1041
=head3 C<execute()>との連携
1042

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

            
1045

            
1046
    my $where = $dbi->where;
1047
    $where->clause(...);
1048
    $where->param($param);
1049

            
update pod
Yuki Kimoto authored on 2011-02-11
1050
    my $sql = <<"EOS";
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
1051
    select * from book;
1052
    $where
1053
    EOS
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1054

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

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1057
=head2 7. モデル
update pod
Yuki Kimoto authored on 2011-01-28
1058

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1059
=head3 モデル
update pod
Yuki Kimoto authored on 2011-01-28
1060

            
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1061
ソースコードの見通しをよくするために、
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1062
L<DBIx::Custom::Model>を継承してモデルを作成することができます。
update pod
Yuki Kimoto authored on 2011-01-28
1063

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1064
まず最初にモデルの元になるクラスを<DBIx::Custom::Model>
1065
を継承して作成します。
update pod
Yuki Kimoto authored on 2011-01-28
1066

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1067
    package MyModel;
1068
    
1069
    use base 'DBIx::Custom::Model';
update pod
Yuki Kimoto authored on 2011-01-28
1070

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1071
次に個々のモデルクラスを作成します。
update pod
Yuki Kimoto authored on 2011-01-28
1072

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1073
MyModel::book
update pod
Yuki Kimoto authored on 2011-01-28
1074

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1075
    package MyModel::book;
1076
    
1077
    use base 'MyModel';
1078
    
1079
    sub insert { ... }
1080
    sub list { ... }
update pod
Yuki Kimoto authored on 2011-01-28
1081

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1082
MyModel::company
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1083

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1084
    package MyModel::company;
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1085
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1086
    use base 'MyModel';
1087
    
1088
    sub insert { ... }
1089
    sub list { ... }
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1090

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1091
このように作成したモジュールを次のように配置してください。
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1092

            
1093
    MyModel.pm
1094
    MyModel / book.pm
1095
            / company.pm
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1096

            
1097
このように作成したモデルはC<include_model()>で取り込むことができます。
1098

            
1099
    $dbi->include_model('MyModel');
1100

            
1101
第一引数は、モデルの名前空間になります。
1102

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1103
モデルは次のように利用することができます。
1104

            
1105
    my $result = $dbi->model('book')->list;
1106

            
1107
モデルではテーブル名を指定することなしに
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1108
C<insert()>, C<update()>, C<update_all()>,
1109
C<delete()>, C<delete_all()>, C<select()>などのメソッドを
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1110
利用できます。
update pod
Yuki Kimoto authored on 2011-01-28
1111

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1112
    $dbi->model('book')->insert(param => $param);
update pod
Yuki Kimoto authored on 2011-01-28
1113

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-21
1114
またモデルクラスでC<primary_key>の設定がなされていれば、
1115
プライマリキーを指定することなしに
update pod
Yuki Kimoto authored on 2011-02-28
1116
C<insert_at>, C<update_at()>, C<delete_at()>, C<select_at()>のメソッドを
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-21
1117
利用できます。
1118

            
1119
    $dbi->model('book')->delete_at(where => 123);
1120

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1121
モデルはL<DBIx::Custom::Model>です。
update pod
Yuki Kimoto authored on 2011-01-28
1122

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1123
必要であれば、C<table()>でテーブル名を取得することができます。
update pod
Yuki Kimoto authored on 2011-01-28
1124

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1125
    my $table = $model->table;
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1126

            
1127
L<DBIx::Custom>オブジェクトを取得することもできます。
1128

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1129
    my $dbi = $model->dbi;
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1130

            
1131
L<DBIx::Custom>とL<DBI>のすべてのメソッドを呼び出すこともできます。
update pod
Yuki Kimoto authored on 2011-01-28
1132

            
update pod
Yuki Kimoto authored on 2011-02-11
1133
    # DBIx::Custom method
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1134
    $model->execute($sql);
update pod
Yuki Kimoto authored on 2011-02-11
1135
    
1136
    # DBI method
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1137
    $model->begin_work;
1138
    $model->commit;
update pod
Yuki Kimoto authored on 2011-01-28
1139

            
add models() attribute
Yuki Kimoto authored on 2011-02-21
1140
すべてのモデル名を取得したい場合はC<models()>のキーを取得してください。
1141

            
1142
    my @models = keys %{$self->models};
1143

            
add DBIx::Custom::Model fore...
Yuki Kimoto authored on 2011-02-21
1144
モデルにはプライマリーキーを設定することもできます。
1145

            
1146
   $model->primary_key(['id', 'number_id']);
1147

            
update pod
Yuki Kimoto authored on 2011-02-28
1148
ここで設定したプライマリーキーはC<insert_at>, C<update_at()>, C<delete_at()>,
add DBIx::Custom::Model fore...
Yuki Kimoto authored on 2011-02-21
1149
C<select_at()>で利用されます。
1150

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1151
C<filter>でC<apply_filter()>で適用されるフィルタを定義しておくこともできます。
1152

            
1153
    $model->filter({
1154
        title  => {out => ..., in => ..., end => ...},
1155
        author => {out => ..., in => ..., end => ...}
1156
    });
1157

            
1158
このフィルタはC<include_model()>を呼び出したときに自動的に適用されます。
1159

            
add DBIx::Custom::Model colu...
Yuki Kimoto authored on 2011-02-21
1160
モデルには列名を設定することもできます。
1161

            
1162
    $model->columns(['id', 'number_id']);
1163

            
add experimental setup_model...
Yuki Kimoto authored on 2011-02-21
1164
列名はC<setup_model()>で自動的に設定することができます。
1165
このメソッドはC<include_model()>の後で呼び出してください。
1166

            
1167
    $dbi->setup_model;
1168

            
cleanup
Yuki Kimoto authored on 2011-03-10
1169
モデルにはC<join>を設定することもできます。
cleanup
Yuki Kimoto authored on 2011-02-22
1170

            
cleanup
Yuki Kimoto authored on 2011-03-10
1171
    $model->join(['left outer join company on book.company_id = company.id']);
cleanup
Yuki Kimoto authored on 2011-02-22
1172

            
cleanup
Yuki Kimoto authored on 2011-03-10
1173
ここで設定したC<join>はC<select()>, C<select_at()>で利用されます。
cleanup
Yuki Kimoto authored on 2011-02-22
1174

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1175

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1176
=head2 クラス名、モデル名、テーブル名
1177

            
1178
クラス名とモデル名とテーブル名の関係について書いておきます。
1179
通常はクラス名がモデル名に利用され、テーブル名にはモデル名が利用されます。
1180

            
1181
    クラス名     モデル名              テーブル名
1182
    book         (クラス名) -> book    (モデル名) -> book
1183

            
1184
モデル名を変更することもできます。
1185

            
1186
    package MyModel::book;
1187
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1188
    use base 'MyModel';
1189
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1190
    __PACAKGE__->attr(name => 'book_model');
1191

            
1192
    クラス名     モデル名      テーブル名
1193
    book         book_model    (モデル名) -> book_model
1194

            
1195
モデル名というのは、L<DBIx::Custom>のL<model()>で利用される名前です。
1196

            
1197
    $dbi->model('book_model');
1198

            
1199
テーブル名を変更することもできます。
1200

            
1201
    package MyModel::book;
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1202

            
1203
    use base 'MyModel';
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1204
    
1205
    __PACAKGE__->attr(table => 'book_table');
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1206
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1207
    クラス名     モデル名              テーブル名
1208
    book         (クラス名) -> book    book_table
1209

            
1210
テーブル名というのは、実際にアクセスされるテーブルです。
1211

            
1212
    $dbi->model('book')->insert(...); # book_tableにアクセス
1213

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-22
1214
=head2 列名の自動生成 : column_clause()
1215

            
1216
列名の節を自動生成するにはC<column_clause()>を使用します。
1217
C<table>とC<columns>の値が利用されます。
1218

            
1219
    my $column_clause = $model->column_clause;
1220

            
1221
C<table>の値が'book'、C<column>の値が['id', 'name']で
1222
あった場合は次のような列名の節が生成されます。
1223

            
1224
    book.id as id, book.name as name
1225

            
1226
このように列名の節を生成するのは、列名のあいまいさをなくすためです。
1227

            
1228
不必要な列がある場合はC<remove>オプションで指定することができます。
1229

            
1230
    my $column_clause = $model->column_clause(remove => ['id']);
1231

            
1232
追加したい列がある場合は、C<add>オプションで追加することができます。
1233

            
1234
    my $column_clause = $model->column_clause(add => ['company.id as company__id']);
1235

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1236
=head2 モデルのサンプル
update pod
Yuki Kimoto authored on 2011-02-11
1237

            
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1238
モデルのサンプルです。
update pod
Yuki Kimoto authored on 2011-01-28
1239

            
1240
    package MyDBI;
1241
    
1242
    use base 'DBIx::Custom';
1243
    
1244
    sub connect {
1245
        my $self = shift->SUPER::connect(@_);
1246
        
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1247
        $self->include_model(
1248
            MyModel => [
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1249
                'book',
1250
                'company'
1251
            ]
update pod
Yuki Kimoto authored on 2011-01-28
1252
        );
1253
    }
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1254
    
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1255
    package MyModel::book;
1256
    use base 'DBIx::Custom::Model';
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1257
    
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
1258
    __PACKAGE__->attr('primary_key' => sub { ['id'] };
1259
    
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1260
    sub insert { ... }
1261
    sub list { ... }
1262
    
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1263
    package MyModel::company;
1264
    use base 'DBIx::Custom::Model';
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
1265

            
1266
    __PACKAGE__->attr('primary_key' => sub { ['id'] };
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1267
    
1268
    sub insert { ... }
1269
    sub list { ... }
update pod
Yuki Kimoto authored on 2011-01-28
1270

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

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

            
update pod
Yuki Kimoto authored on 2011-02-11
1275
パフォーマンスが得られない場合はC<query>オプションを使って
1276
クエリを作成してみてください。
update pod
Yuki Kimoto authored on 2011-01-26
1277

            
update pod
Yuki Kimoto authored on 2011-02-11
1278
    my $params = [
1279
        {title => 'Perl', author => 'Ken'},
1280
        {title => 'Good day', author => 'Tom'}
1281
    ]
1282
    my $query = $dbi->insert(table => 'book', param => $params->[0], query => 1);
update pod
Yuki Kimoto authored on 2011-01-26
1283

            
update pod
Yuki Kimoto authored on 2011-02-11
1284
戻り値はL<DBIx::Custom::Query>オブジェクトです。
1285
作成したクエリはC<execute()>で実行することができます。
update pod
Yuki Kimoto authored on 2011-01-26
1286

            
update pod
Yuki Kimoto authored on 2011-02-11
1287
    foreach my $param (@$params) {
1288
        $dbi->execute($query, $param);
1289
    }
1290

            
1291
ステートメントハンドルが再利用されるので、パフォーマンスが
1292
改善されます。
1293
C<query>オプションはC<insert()>, C<update()>, C<update_all()>,
1294
C<delete()>, C<delete_all()>で利用することができます.
1295

            
1296
クエリを作成するメソッドに渡すパラメータと
1297
C<execute()>に渡すパラメータの個数は同じでなければならない
1298
ことに注意してください。
1299

            
1300
C<create_query()>を使って任意のSQLのクエリを作成
update pod
Yuki Kimoto authored on 2011-01-26
1301
することもできます。
updated document
Yuki Kimoto authored on 2011-01-20
1302

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

            
1307

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

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

            
update pod
Yuki Kimoto authored on 2011-02-11
1312
L<DBIx::Custom>オブジェクトにメソッドを追加することができます。
update pod
Yuki Kimoto authored on 2011-02-11
1313
C<method()>を使用します。
updated document
Yuki Kimoto authored on 2011-01-20
1314

            
update pod
Yuki Kimoto authored on 2011-01-26
1315
    $dbi->method(
updated document
Yuki Kimoto authored on 2011-01-20
1316
        update_or_insert => sub {
1317
            my $self = shift;
update pod
Yuki Kimoto authored on 2011-01-26
1318
            # something
updated document
Yuki Kimoto authored on 2011-01-20
1319
        },
1320
        find_or_create   => sub {
1321
            my $self = shift;
update pod
Yuki Kimoto authored on 2011-01-26
1322
            # something
updated document
Yuki Kimoto authored on 2011-01-20
1323
        }
1324
    );
1325

            
update pod
Yuki Kimoto authored on 2011-02-11
1326
これらのメソッドは
1327
L<DBIx::Custom>オブジェクトから呼び出すことができます。
updated document
Yuki Kimoto authored on 2011-01-20
1328

            
1329
    $dbi->update_or_insert;
1330
    $dbi->find_or_create;
1331

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

            
update pod
Yuki Kimoto authored on 2011-02-11
1334
結果クラスを変更することができます。
1335
デフォルトはL<DBIx::Custom::Result>です。
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1336

            
1337
    package MyResult;
1338
    use base 'DBIx::Custom::Result';
1339
    
1340
    sub some_method { ... }
updated document
Yuki Kimoto authored on 2011-01-20
1341

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1342
    1;
1343
    
1344
    package main;
1345
    
1346
    use MyResult;
1347
    
1348
    my $dbi = DBIx::Custom->connect(...);
1349
    $dbi->result_class('MyResult');
updated document
Yuki Kimoto authored on 2011-01-20
1350

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

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

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

            
update pod
Yuki Kimoto authored on 2011-02-11
1358
キャッシュ方法はC<cache_method>で変更することができます。
1359
デフォルトのメソッドは以下のようになっていて、
1360
メモリ上にキャッシュが保存されます。
updated document
Yuki Kimoto authored on 2011-01-20
1361

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1362
    $dbi->cache_method(sub {
1363
        sub {
1364
            my $self = shift;
1365
            
1366
            $self->{_cached} ||= {};
1367
            
1368
            if (@_ > 1) {
update pod
Yuki Kimoto authored on 2011-02-11
1369
                # キャッシュの保存
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1370
                $self->{_cached}{$_[0]} = $_[1] 
1371
            }
1372
            else {
update pod
Yuki Kimoto authored on 2011-02-11
1373
                # キャッシュの取得
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1374
                return $self->{_cached}{$_[0]}
1375
            }
1376
        }
1377
    });
1378
    
1379
第一はL<DBIx::Custom>オブジェクトです。
update pod
Yuki Kimoto authored on 2011-02-11
1380
第二引数はタグが解析される前のSQLです。
1381
第三引数はタグの解析後のSQLの情報です。これはハッシュのリファレンスです。
updated document
Yuki Kimoto authored on 2011-01-20
1382

            
update pod
Yuki Kimoto authored on 2011-02-11
1383
第三引数が存在した場合はキャッシュを設定し、
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1384
存在しなかった場合はキャッシュを取得する実装に
1385
してください。
updated document
Yuki Kimoto authored on 2011-01-20
1386

            
update pod
Yuki Kimoto authored on 2011-02-11
1387
=head1 サンプル
1388

            
1389
以下のWikiでサンプルを見ることができます。
1390

            
1391
L<DBIx::Custom Wiki|https://github.com/yuki-kimoto/DBIx-Custom/wiki>
1392

            
updated document
Yuki Kimoto authored on 2011-01-20
1393
=cut