Newer Older
1377 lines | 43.43kb
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(
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
320
        table    => 'book',
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-02-11
351
C<column>とC<table>を使用する代わりに、C<selection>を使用することも
352
できます。列名とテーブル名をまとめて指定する場合に利用します。
353
    
354
    my $selection = <<"EOS";
355
    title, author, company_name
356
    from book inner join company on book.company_id = company.id
357
    EOS
358

            
359
    $dbi->select(selection => $selection);
360

            
361
C<selection>においてはwhere句を利用できないということに注意してください。
362
"inner join"などの句を利用してください。
363

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

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

            
368
    $dbi->execute("select * from book;");
369

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

            
372
    $dbi->execute(
373
        "select * from book {= title} and {= author};"
374
        param => {title => 'Perl', author => 'Ken'}
375
    );
376

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

            
379
    select * from book title = ? and author = ?;
380

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

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

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

            
387
    $dbi->execute('select * from book');
388

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

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

            
393
    $dbi->insert_at(
394
        table => 'book', primary_key => ['id'],
395
        where => ['123'], param => {name => 'Ken'}
396
    );
397

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

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

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

            
406
    $dbi->update_at(
407
        table => 'book', primary_key => ['id'],
408
        where => ['123'], param => {name => 'Ken'}
409
    );
410

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
updated document
Yuki Kimoto authored on 2011-01-20
454
    while (my $row = $result->fetch) {
updated document
Yuki Kimoto authored on 2011-01-23
455
        my $title  = $row->[0];
456
        my $author = $row->[1];
updated document
Yuki Kimoto authored on 2011-01-20
457
    }
458

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

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

            
464
    my $row = $result->fetch_first;
465

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

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

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

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

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

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

            
486
    [
487
        ['Perl', 'Ken'],
488
        ['Ruby', 'Mark']
489
    ]
490

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

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

            
496
    my $rows = $result->fetch_all;
497

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

            
500
    [
501
        ['Perl', 'Ken'],
502
        ['Ruby', 'Mark']
503
    ]
504

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

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

            
509
    while (my $row = $result->fetch_hash) {
510
        my $title  = $row->{title};
511
        my $author = $row->{author};
512
    }
513

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

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

            
519
    my $row = $result->fetch_hash_first;
520

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

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

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

            
530
    while (my $rows = $result->fetch_hash_multi(5)) {
updated document
Yuki Kimoto authored on 2011-01-23
531
        my $title0   = $rows->[0]{title};
532
        my $author0  = $rows->[0]{author};
533
        my $title1  = $rows->[1]{title};
534
        my $author1 = $rows->[1]{author};
updated document
Yuki Kimoto authored on 2011-01-20
535
    }
536

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

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

            
541
    [
542
        {title => 'Perl', author => 'Ken'},
543
        {title => 'Ruby', author => 'Mark'}
544
    ]
545

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

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

            
552
    my $rows = $result->fetch_hash_all;
553

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

            
556
    [
557
        {title => 'Perl', author => 'Ken'},
558
        {title => 'Ruby', author => 'Mark'}
559
    ]
560

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

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

            
566
    my $sth = $result->sth;
567

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

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

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

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

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

            
582
    $dbi->register_filter(
583
        # Time::Piece object to DATE format
584
        tp_to_date => sub {
585
            my $date = shift;
586

            
587
            return '0000-00-00' unless $tp;
588
            return $tp->strftime('%Y-%m-%d');
589
        },
590
        
591
        # DATE to Time::Piece object
592
        date_to_tp => sub {
593
            my $date = shift;
594

            
595
            return if $date eq '0000-00-00';
596
            return Time::Piece->strptime($date, '%Y-%m-%d');
597
        },
598
    );
599

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

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

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

            
606
    $dbi->apply_filter('book',
607
        issue_date => {out => 'tp_to_date', in => 'date_to_tp'},
608
        first_issue_date => {out => 'tp_to_date', in => 'date_to_tp'}
609
    );
610

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

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

            
619
    issue_date => {out => sub { ... }, in => sub { ... }}
620

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

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

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

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

            
633
    my $row = $resutl->fetch_hash_first;
634
    my $tp = $row->{issue_date};
635

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

            
638
    $dbi->select(
639
        table => 'book',
640
        where => {'book.title' => 'Perl', 'book.author' => 'Ken'}
641
    );
642

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

            
646
    my $result = $dbi->execute(
647
       "select issue_date as book__issue_date from book");
648

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

            
651
    $dbi->apply_filter('book',
652
        issue_date => {out => 'tp_to_date', in => 'date_to_tp',
653
                       end => 'tp_to_displaydate'},
654
    );
655

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

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

            
update pod
Yuki Kimoto authored on 2011-02-07
661
データを送信する場合に個別のフィルタを適用するには、C<filter>オプションを使用します。
662
このオプションはC<insert()>、C<update()>、
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
663
C<update_all()>、C<delete()>、C<delete_all()>、C<select()>、C<execute()>
664
で使用することができます。
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
    $dbi->insert(
667
        table => 'book',
668
        param => {issue_date => $tp, first_issue_date => $tp},
669
        filter => {issue_date => 'tp_to_date', first_issue_date => 'tp_to_date'}
670
    );
671

            
672
C<execute()>の例を示します。
673

            
674
my $sql = <<"EOS";
675
select YEAR(issue_date) as issue_year
676
from book
677
where YEAR(issue_date) = {? issue_year}
678
EOS
679
   
680
    my $result = $dbi->execute(
681
        $sql,
682
        param => {issue_year => '2010'},
683
        filter => {issue_year => 'tp_to_year'}
684
    );
685

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

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

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

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

            
697
    $result->end_filter(issue_date => sub {
698
        my $tp = shift;
699
        
700
        return '' unless $tp;
701
        return $tp->strftime('%Y/%m/%d %h:%m:%s (%a)');
702
    });
703

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

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

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

            
711
    $dbi->each_column(
712
        sub {
713
            my ($self, $table, $column, $info) = @_;
714
            
715
            my $type = $info->{TYPE_NAME};
716
            
717
            my $filter = $type eq 'DATE'     ? {out => 'tp_to_date', in => 'date_to_tp'}
718
                       : $type eq 'DATETIME' ? {out => 'tp_to_datetime', in => 'datetime_to_tp'}
719
                                             : undef;
720
            
721
            $self->apply_filter($table, $column, $filter)
722
              if $filter;
723
        }
724
    );
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
725

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
768
    $dbi->execute($sql, param => {title => 'Perl', author => '%Ken%'}
769
                  filter => {title => 'to_something');
770

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

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

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

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

            
782
    {table NAME} -> NAME
783

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

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

            
790
    {? NAME}    ->   ?
791

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

            
794
    {= NAME}    ->   NAME = ?
795

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

            
798
    {<> NAME}   ->   NAME <> ?
799

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

            
802
    {< NAME}    ->   NAME < ?
803

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

            
806
    {> NAME}    ->   NAME > ?
807

            
update pod
Yuki Kimoto authored on 2011-01-31
808
=head4 C<E<gt>=>
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>=>
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<like>
update pod
Yuki Kimoto authored on 2011-01-26
817

            
818
    {like NAME}   ->   NAME like ?
819

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

            
822
    {in NAME COUNT}   ->   NAME in [?, ?, ..]
823

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

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

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

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

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

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

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

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

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

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

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

            
849
    $dbi->register_tag(
update pod
Yuki Kimoto authored on 2011-01-26
850
        '=' => sub {
851
            my $column = shift;
852
            
853
            return ["$column = ?", [$column]];
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
854
        }
855
    );
856

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

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

            
862
C<=>タグの場合は
863

            
864
    {= title}
865

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

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

            
870
    [
871
        展開後の文字列,
872
        [プレースホルダに埋め込みに利用する列名1, 列名2, ...]
873
    ]
874

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

            
877
    'title = ?'
878

            
879
を返す必要があります。
880

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

            
884
    ['title']
885

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

            
889
上記を合わせると
890

            
891
    ['title = ?', ['title']]
892
    
893
を返す必要があるということです。
894

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

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

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

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

            
905
titleの値だけで検索したい場合
906

            
907
    where {= title}
908

            
909
authorの値だけで検索したい場合
910

            
911
    where {= author}
912

            
913
titleとauthorの両方の値で検索したい場合
914

            
915
    where {= title} and {=author}
916

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

            
920
    my $where = $dbi->where;
921

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

            
924
    $where->clause(
925
        ['and', '{= title'}, '{= author}']
926
    );
927

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

            
930
    ['or' あるいは 'and', タグ1, タグ2, タグ3]
931

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

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

            
938
    ['and', 
939
      '{= title}', 
940
      ['or', '{= author}', '{like date}']
941
    ]
942

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

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

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

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

            
954
    my $where_clause = $where->to_string;
955

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

            
958
    where {= title}
959

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

            
964
    my $where_clause = "$where";
965

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

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

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

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

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

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

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

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

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

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

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

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

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

            
998
    my $p = {date => ['2010-11-15']};
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
どちらも存在しない場合は次のようなデータを作成します。
1001

            
1002
    my $p = {date => []};
1003

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

            
1006
    my @date;
1007
    push @date, exists $param->{start_date} ? $param->{start_date}
1008
                                            : $dbi->not_exists;
1009
    push @date, $param->{end_date} if exists $param->{end_date};
1010
    my $p = {date => \@date};
1011

            
1012
=head3 C<select()>との連携
1013

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

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

            
1025
=head3 C<execute()>との連携
1026

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

            
1029

            
1030
    my $where = $dbi->where;
1031
    $where->clause(...);
1032
    $where->param($param);
1033

            
update pod
Yuki Kimoto authored on 2011-02-11
1034
    my $sql = <<"EOS";
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
1035
    select * from book;
1036
    $where
1037
    EOS
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1038

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

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

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

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

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

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1051
    package MyModel;
1052
    
1053
    use base 'DBIx::Custom::Model';
update pod
Yuki Kimoto authored on 2011-01-28
1054

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

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

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1059
    package MyModel::book;
1060
    
1061
    use base 'MyModel';
1062
    
1063
    sub insert { ... }
1064
    sub list { ... }
update pod
Yuki Kimoto authored on 2011-01-28
1065

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

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1068
    package MyModel::company;
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1069
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1070
    use base 'MyModel';
1071
    
1072
    sub insert { ... }
1073
    sub list { ... }
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1074

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

            
1077
    MyModel.pm
1078
    MyModel / book.pm
1079
            / company.pm
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1080

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

            
1083
    $dbi->include_model('MyModel');
1084

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

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

            
1089
    my $result = $dbi->model('book')->list;
1090

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

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

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

            
1103
    $dbi->model('book')->delete_at(where => 123);
1104

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

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

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

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

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

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

            
update pod
Yuki Kimoto authored on 2011-02-11
1117
    # DBIx::Custom method
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1118
    $model->execute($sql);
update pod
Yuki Kimoto authored on 2011-02-11
1119
    
1120
    # DBI method
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1121
    $model->begin_work;
1122
    $model->commit;
update pod
Yuki Kimoto authored on 2011-01-28
1123

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

            
1126
    my @models = keys %{$self->models};
1127

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

            
1130
   $model->primary_key(['id', 'number_id']);
1131

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

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

            
1137
    $model->filter({
1138
        title  => {out => ..., in => ..., end => ...},
1139
        author => {out => ..., in => ..., end => ...}
1140
    });
1141

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

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

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

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

            
1151
    $dbi->setup_model;
1152

            
cleanup
Yuki Kimoto authored on 2011-02-22
1153
モデルにはリレーションを設定することもできます。
1154

            
1155
    $model->relation({'book.company_id' => 'company.id'});
1156

            
1157
ここで設定したリレーションはC<select()>, C<select_at()>で利用されます。
1158

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

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

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

            
1165
    クラス名     モデル名              テーブル名
1166
    book         (クラス名) -> book    (モデル名) -> book
1167

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

            
1170
    package MyModel::book;
1171
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1172
    use base 'MyModel';
1173
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1174
    __PACAKGE__->attr(name => 'book_model');
1175

            
1176
    クラス名     モデル名      テーブル名
1177
    book         book_model    (モデル名) -> book_model
1178

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

            
1181
    $dbi->model('book_model');
1182

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

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

            
1187
    use base 'MyModel';
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1188
    
1189
    __PACAKGE__->attr(table => 'book_table');
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1190
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1191
    クラス名     モデル名              テーブル名
1192
    book         (クラス名) -> book    book_table
1193

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

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

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

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

            
1203
    my $column_clause = $model->column_clause;
1204

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

            
1208
    book.id as id, book.name as name
1209

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

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

            
1214
    my $column_clause = $model->column_clause(remove => ['id']);
1215

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

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

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

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

            
1224
    package MyDBI;
1225
    
1226
    use base 'DBIx::Custom';
1227
    
1228
    sub connect {
1229
        my $self = shift->SUPER::connect(@_);
1230
        
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1231
        $self->include_model(
1232
            MyModel => [
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1233
                'book',
1234
                'company'
1235
            ]
update pod
Yuki Kimoto authored on 2011-01-28
1236
        );
1237
    }
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1238
    
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1239
    package MyModel::book;
1240
    use base 'DBIx::Custom::Model';
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1241
    
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
1242
    __PACKAGE__->attr('primary_key' => sub { ['id'] };
1243
    
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1244
    sub insert { ... }
1245
    sub list { ... }
1246
    
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1247
    package MyModel::company;
1248
    use base 'DBIx::Custom::Model';
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
1249

            
1250
    __PACKAGE__->attr('primary_key' => sub { ['id'] };
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1251
    
1252
    sub insert { ... }
1253
    sub list { ... }
update pod
Yuki Kimoto authored on 2011-01-28
1254

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

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

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

            
update pod
Yuki Kimoto authored on 2011-02-11
1262
    my $params = [
1263
        {title => 'Perl', author => 'Ken'},
1264
        {title => 'Good day', author => 'Tom'}
1265
    ]
1266
    my $query = $dbi->insert(table => 'book', param => $params->[0], query => 1);
update pod
Yuki Kimoto authored on 2011-01-26
1267

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

            
update pod
Yuki Kimoto authored on 2011-02-11
1271
    foreach my $param (@$params) {
1272
        $dbi->execute($query, $param);
1273
    }
1274

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

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

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

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

            
1291

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

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

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

            
update pod
Yuki Kimoto authored on 2011-01-26
1299
    $dbi->method(
updated document
Yuki Kimoto authored on 2011-01-20
1300
        update_or_insert => sub {
1301
            my $self = shift;
update pod
Yuki Kimoto authored on 2011-01-26
1302
            # something
updated document
Yuki Kimoto authored on 2011-01-20
1303
        },
1304
        find_or_create   => sub {
1305
            my $self = shift;
update pod
Yuki Kimoto authored on 2011-01-26
1306
            # something
updated document
Yuki Kimoto authored on 2011-01-20
1307
        }
1308
    );
1309

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

            
1313
    $dbi->update_or_insert;
1314
    $dbi->find_or_create;
1315

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

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

            
1321
    package MyResult;
1322
    use base 'DBIx::Custom::Result';
1323
    
1324
    sub some_method { ... }
updated document
Yuki Kimoto authored on 2011-01-20
1325

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1326
    1;
1327
    
1328
    package main;
1329
    
1330
    use MyResult;
1331
    
1332
    my $dbi = DBIx::Custom->connect(...);
1333
    $dbi->result_class('MyResult');
updated document
Yuki Kimoto authored on 2011-01-20
1334

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

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

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

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

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1346
    $dbi->cache_method(sub {
1347
        sub {
1348
            my $self = shift;
1349
            
1350
            $self->{_cached} ||= {};
1351
            
1352
            if (@_ > 1) {
update pod
Yuki Kimoto authored on 2011-02-11
1353
                # キャッシュの保存
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1354
                $self->{_cached}{$_[0]} = $_[1] 
1355
            }
1356
            else {
update pod
Yuki Kimoto authored on 2011-02-11
1357
                # キャッシュの取得
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1358
                return $self->{_cached}{$_[0]}
1359
            }
1360
        }
1361
    });
1362
    
1363
第一はL<DBIx::Custom>オブジェクトです。
update pod
Yuki Kimoto authored on 2011-02-11
1364
第二引数はタグが解析される前のSQLです。
1365
第三引数はタグの解析後のSQLの情報です。これはハッシュのリファレンスです。
updated document
Yuki Kimoto authored on 2011-01-20
1366

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

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

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

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

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