Newer Older
1202 lines | 38.264kb
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 pod
Yuki Kimoto authored on 2011-06-07
27
L<DBIx::Custom>では、パラメーターと呼ばれるものを
updated document
Yuki Kimoto authored on 2011-01-20
28
SQLの中に埋め込むことができます。
29

            
updated pod
Yuki Kimoto authored on 2011-06-07
30
    select * from book where title = :title and author = :author;
updated document
Yuki Kimoto authored on 2011-01-20
31

            
updated pod
Yuki Kimoto authored on 2011-06-07
32
:titleや:authorがパラメーターです。このSQLは実際に実行されるときには
updated document
Yuki Kimoto authored on 2011-01-20
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(
updated pod
Yuki Kimoto authored on 2011-06-07
116
        ['and', 'title = :title', 'author = :author']
updated document
Yuki Kimoto authored on 2011-01-20
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(
data_source is DEPRECATED! I...
Yuki Kimoto authored on 2011-06-06
173
        dsn => "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

            
data_source is DEPRECATED! I...
Yuki Kimoto authored on 2011-06-06
179
C<dsn>はデータベースシステムに応じたものである必要があります。
update pod
Yuki Kimoto authored on 2011-01-30
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(
cleanup
Yuki Kimoto authored on 2011-03-10
320
        table  => 'book',
321
        column => ['company.name as company__name']
322
        where  => {'book.name' => 'Perl'},
323
        join   => ['left outer join company on book.company_id = company.id]
added experimental expand me...
yuki-kimoto authored on 2010-10-20
324
    );
325

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

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

            
cleanup
Yuki Kimoto authored on 2011-03-21
330
    select company.name as company__name
331
    from book
cleanup
Yuki Kimoto authored on 2011-03-10
332
      left outer join company on book.company_id = company.id
cleanup
Yuki Kimoto authored on 2011-03-21
333
    where book.name = ?;
cleanup
Yuki Kimoto authored on 2011-03-10
334

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

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

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

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

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

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

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

            
cleanup
Yuki Kimoto authored on 2011-03-21
360
C<mycolumn()>やC<column()>を使用すると簡単に列名を指定できます。
361

            
362
    my $result = $dbi->select(
363
        table  => 'book',
364
        column => [
365
            $dbi->mycolumn('book' => ['name']),
366
            $dbi->column('company' => ['id', 'name'])
367
        ],
368
        join   => ['left outer join company on book.company_id = company.id]
369
    );
370

            
371
次のSQLが実行されます。
372

            
373
    select book.name as name,
374
      company.id as comapny__id,
375
      company.name as company__name
376
    from book
377
      left outer join company on book.company_id = company.id
378

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

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

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

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

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

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

            
392
    $dbi->execute("select * from book;");
393

            
updated pod
Yuki Kimoto authored on 2011-06-07
394
パラメーターを処理してSQLを実行します。
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
395

            
396
    $dbi->execute(
updated pod
Yuki Kimoto authored on 2011-06-07
397
        "select * from book title = :title and author = :author;"
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
398
        param => {title => 'Perl', author => 'Ken'}
399
    );
400

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

            
403
    select * from book title = ? and author = ?;
404

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

            
updated pod
Yuki Kimoto authored on 2011-06-07
407
パラメーターについてはL<5. パラメーター/"5. パラメーター">を見てください。
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
408

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

            
411
    $dbi->execute('select * from book');
412

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

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

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

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

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

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

            
updated document
Yuki Kimoto authored on 2011-01-20
426
    while (my $row = $result->fetch) {
updated document
Yuki Kimoto authored on 2011-01-23
427
        my $title  = $row->[0];
428
        my $author = $row->[1];
updated document
Yuki Kimoto authored on 2011-01-20
429
    }
430

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

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

            
436
    my $row = $result->fetch_first;
437

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

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

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

            
updated document
Yuki Kimoto authored on 2011-01-23
446
    while (my $rows = $result->fetch_multi(2)) {
447
        my $title0   = $rows->[0][0];
448
        my $author0  = $rows->[0][1];
449
        
450
        my $title1   = $rows->[1][0];
451
        my $author1  = $rows->[1][1];
updated document
Yuki Kimoto authored on 2011-01-20
452
    }
453

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

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

            
458
    [
459
        ['Perl', 'Ken'],
460
        ['Ruby', 'Mark']
461
    ]
462

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

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

            
468
    my $rows = $result->fetch_all;
469

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

            
472
    [
473
        ['Perl', 'Ken'],
474
        ['Ruby', 'Mark']
475
    ]
476

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

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

            
481
    while (my $row = $result->fetch_hash) {
482
        my $title  = $row->{title};
483
        my $author = $row->{author};
484
    }
485

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

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

            
491
    my $row = $result->fetch_hash_first;
492

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

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

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

            
502
    while (my $rows = $result->fetch_hash_multi(5)) {
updated document
Yuki Kimoto authored on 2011-01-23
503
        my $title0   = $rows->[0]{title};
504
        my $author0  = $rows->[0]{author};
505
        my $title1  = $rows->[1]{title};
506
        my $author1 = $rows->[1]{author};
updated document
Yuki Kimoto authored on 2011-01-20
507
    }
508

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

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

            
513
    [
514
        {title => 'Perl', author => 'Ken'},
515
        {title => 'Ruby', author => 'Mark'}
516
    ]
517

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

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

            
524
    my $rows = $result->fetch_hash_all;
525

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

            
528
    [
529
        {title => 'Perl', author => 'Ken'},
530
        {title => 'Ruby', author => 'Mark'}
531
    ]
532

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

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

            
538
    my $sth = $result->sth;
539

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

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

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

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

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

            
554
    $dbi->register_filter(
555
        # Time::Piece object to DATE format
556
        tp_to_date => sub {
557
            my $date = shift;
558

            
559
            return '0000-00-00' unless $tp;
560
            return $tp->strftime('%Y-%m-%d');
561
        },
562
        
563
        # DATE to Time::Piece object
564
        date_to_tp => sub {
565
            my $date = shift;
566

            
567
            return if $date eq '0000-00-00';
568
            return Time::Piece->strptime($date, '%Y-%m-%d');
569
        },
570
    );
571

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

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

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

            
578
    $dbi->apply_filter('book',
579
        issue_date => {out => 'tp_to_date', in => 'date_to_tp'},
580
        first_issue_date => {out => 'tp_to_date', in => 'date_to_tp'}
581
    );
582

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

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

            
591
    issue_date => {out => sub { ... }, in => sub { ... }}
592

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

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

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

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

            
605
    my $row = $resutl->fetch_hash_first;
606
    my $tp = $row->{issue_date};
607

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

            
610
    $dbi->select(
611
        table => 'book',
612
        where => {'book.title' => 'Perl', 'book.author' => 'Ken'}
613
    );
614

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

            
618
    my $result = $dbi->execute(
619
       "select issue_date as book__issue_date from book");
620

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

            
623
    $dbi->apply_filter('book',
624
        issue_date => {out => 'tp_to_date', in => 'date_to_tp',
625
                       end => 'tp_to_displaydate'},
626
    );
627

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

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

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

            
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
638
    $dbi->insert(
639
        table => 'book',
640
        param => {issue_date => $tp, first_issue_date => $tp},
641
        filter => {issue_date => 'tp_to_date', first_issue_date => 'tp_to_date'}
642
    );
643

            
644
C<execute()>の例を示します。
645

            
646
my $sql = <<"EOS";
647
select YEAR(issue_date) as issue_year
648
from book
649
where YEAR(issue_date) = {? issue_year}
650
EOS
651
   
652
    my $result = $dbi->execute(
653
        $sql,
654
        param => {issue_year => '2010'},
655
        filter => {issue_year => 'tp_to_year'}
656
    );
657

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

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

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

            
665
    $result->remove_filter
666

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

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

            
673
    $result->end_filter(issue_date => sub {
674
        my $tp = shift;
675
        
676
        return '' unless $tp;
677
        return $tp->strftime('%Y/%m/%d %h:%m:%s (%a)');
678
    });
679

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

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

            
684
$result->remove_end_filter;
685

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

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

            
691
    $dbi->each_column(
692
        sub {
693
            my ($self, $table, $column, $info) = @_;
694
            
695
            my $type = $info->{TYPE_NAME};
696
            
697
            my $filter = $type eq 'DATE'     ? {out => 'tp_to_date', in => 'date_to_tp'}
698
                       : $type eq 'DATETIME' ? {out => 'tp_to_datetime', in => 'datetime_to_tp'}
699
                                             : undef;
700
            
701
            $self->apply_filter($table, $column, $filter)
702
              if $filter;
703
        }
704
    );
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
705

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

            
updated pod
Yuki Kimoto authored on 2011-06-07
710
=head2 5. パラメーター
updated document
Yuki Kimoto authored on 2011-01-20
711

            
updated pod
Yuki Kimoto authored on 2011-06-07
712
=head3 パラメーターの基本
updated document
Yuki Kimoto authored on 2011-01-20
713

            
updated pod
Yuki Kimoto authored on 2011-06-07
714
SQLの中にパラメーターを埋め込むことができます。
updated document
Yuki Kimoto authored on 2011-01-20
715

            
updated pod
Yuki Kimoto authored on 2011-06-07
716
    select * from book where title = :title and author like :author;
updated document
Yuki Kimoto authored on 2011-01-20
717

            
updated pod
Yuki Kimoto authored on 2011-06-07
718
:titleと:authorの部分がパラメーターです。
update pod
Yuki Kimoto authored on 2011-01-26
719
    
updated pod
Yuki Kimoto authored on 2011-06-07
720
パラメーターはSQLが実行される前に展開されます。
update pod
Yuki Kimoto authored on 2011-01-26
721

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

            
updated pod
Yuki Kimoto authored on 2011-06-07
724
パラメーターを含むSQLを実行するにはC<execute()>を使用します。
updated document
Yuki Kimoto authored on 2011-01-20
725

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

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

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

            
734
    $dbi->execute($sql, param => {title => 'Perl', author => '%Ken%'}
735
                  filter => {title => 'to_something');
736

            
update pod
Yuki Kimoto authored on 2011-02-07
737
C<execute>ではC<apply_filter()>で適用されたフィルタ
738
は有効ではないということに注意してください。
update pod
Yuki Kimoto authored on 2011-01-26
739
C<apply_filter()>で適用されたフィルタを有効にするには、
improved table search in col...
Yuki Kimoto authored on 2011-04-12
740
C<table>オプションを利用します。
update pod
Yuki Kimoto authored on 2011-01-26
741

            
improved table search in col...
Yuki Kimoto authored on 2011-04-12
742
    $dbi->execute($sql, table => ['author', 'book']);
update pod
Yuki Kimoto authored on 2011-01-26
743

            
improved table search in col...
Yuki Kimoto authored on 2011-04-12
744
後ろで適用したフィルタのほうが優先順位が高くなります。
update pod
Yuki Kimoto authored on 2011-02-11
745

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

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

            
updated pod
Yuki Kimoto authored on 2011-06-07
752
    my $sql = "select * from table where date > :date and date < :date;";
updated document
Yuki Kimoto authored on 2011-01-20
753

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

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

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

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

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

            
765
titleの値だけで検索したい場合
766

            
updated pod
Yuki Kimoto authored on 2011-06-07
767
    where title = :title
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
768

            
769
authorの値だけで検索したい場合
770

            
updated pod
Yuki Kimoto authored on 2011-06-07
771
    where author = :author
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
772

            
773
titleとauthorの両方の値で検索したい場合
774

            
updated pod
Yuki Kimoto authored on 2011-06-07
775
    where title = :title and author = :author
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
776

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

            
780
    my $where = $dbi->where;
781

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

            
784
    $where->clause(
updated pod
Yuki Kimoto authored on 2011-06-07
785
        ['and', 'title = :title', 'author = :author']
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
786
    );
787

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

            
updated pod
Yuki Kimoto authored on 2011-06-07
790
    ['or' あるいは 'and', パラメーター1, パラメーター2, パラメーター3]
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
791

            
792
第一引数にはorあるいはandを指定します。第二引数以降には
updated pod
Yuki Kimoto authored on 2011-06-07
793
検索条件をパラメーターを使って記述します。
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
794

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

            
798
    ['and', 
updated pod
Yuki Kimoto authored on 2011-06-07
799
      'title = :title', 
800
      ['or', 'author = :author', 'date like :date']
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
801
    ]
802

            
updated pod
Yuki Kimoto authored on 2011-06-07
803
これは "title = :title and ( author = :author or date like :date )" 意味しています。
update pod
Yuki Kimoto authored on 2011-02-11
804

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

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

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

            
814
    my $where_clause = $where->to_string;
815

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

            
updated pod
Yuki Kimoto authored on 2011-06-07
818
    where title = :title
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
819

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

            
824
    my $where_clause = "$where";
825

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

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

            
updated pod
Yuki Kimoto authored on 2011-06-07
830
パラメーターの中に同一の名前を持つものが存在した場合でも動的に
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
831
where句を作成することができます。
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
832

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

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

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

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

            
updated pod
Yuki Kimoto authored on 2011-06-07
842
同名の列を含むパラメーターに順番に埋め込むことができます。
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
843

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
844
    $where->clause(
updated pod
Yuki Kimoto authored on 2011-06-07
845
        ['and', 'date > :date', 'date < :date']
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
846
    );
847
    $where->param($p);
848

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

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

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

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

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

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

            
862
    my $p = {date => []};
863

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

            
866
    my @date;
867
    push @date, exists $param->{start_date} ? $param->{start_date}
868
                                            : $dbi->not_exists;
869
    push @date, $param->{end_date} if exists $param->{end_date};
870
    my $p = {date => \@date};
871

            
872
=head3 C<select()>との連携
873

            
update pod
Yuki Kimoto authored on 2011-01-26
874
L<DBIx::Custom::Where>オブジェクトは
875
C<select()>のC<where>に直接渡すことが
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
876
できます。
877
    
878
    my $where = $dbi->where;
879
    $where->clause(...);
880
    $where->param($param);
881
    my $result = $dbi->select(table => 'book', where => $where);
882

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

            
885
=head3 C<execute()>との連携
886

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

            
889

            
890
    my $where = $dbi->where;
891
    $where->clause(...);
892
    $where->param($param);
893

            
update pod
Yuki Kimoto authored on 2011-02-11
894
    my $sql = <<"EOS";
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
895
    select * from book;
896
    $where
897
    EOS
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
898

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

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

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

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

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

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
911
    package MyModel;
912
    
913
    use base 'DBIx::Custom::Model';
update pod
Yuki Kimoto authored on 2011-01-28
914

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

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

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
919
    package MyModel::book;
920
    
921
    use base 'MyModel';
922
    
923
    sub insert { ... }
924
    sub list { ... }
update pod
Yuki Kimoto authored on 2011-01-28
925

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

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
928
    package MyModel::company;
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
929
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
930
    use base 'MyModel';
931
    
932
    sub insert { ... }
933
    sub list { ... }
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
934

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

            
937
    MyModel.pm
938
    MyModel / book.pm
939
            / company.pm
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
940

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

            
943
    $dbi->include_model('MyModel');
944

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

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

            
949
    my $result = $dbi->model('book')->list;
950

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

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

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

            
963
    $dbi->model('book')->delete_at(where => 123);
964

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

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

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

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

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

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

            
update pod
Yuki Kimoto authored on 2011-02-11
977
    # DBIx::Custom method
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
978
    $model->execute($sql);
update pod
Yuki Kimoto authored on 2011-02-11
979
    
980
    # DBI method
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
981
    $model->begin_work;
982
    $model->commit;
update pod
Yuki Kimoto authored on 2011-01-28
983

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

            
986
    my @models = keys %{$self->models};
987

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

            
990
   $model->primary_key(['id', 'number_id']);
991

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

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

            
997
    $model->filter({
998
        title  => {out => ..., in => ..., end => ...},
999
        author => {out => ..., in => ..., end => ...}
1000
    });
1001

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

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

            
1006
    $model->columns(['id', 'number_id']);
1007

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

            
1011
    $dbi->setup_model;
1012

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

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

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

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

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

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

            
1025
    クラス名     モデル名              テーブル名
1026
    book         (クラス名) -> book    (モデル名) -> book
1027

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

            
1030
    package MyModel::book;
1031
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1032
    use base 'MyModel';
1033
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1034
    __PACAKGE__->attr(name => 'book_model');
1035

            
1036
    クラス名     モデル名      テーブル名
1037
    book         book_model    (モデル名) -> book_model
1038

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

            
1041
    $dbi->model('book_model');
1042

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

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

            
1047
    use base 'MyModel';
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1048
    
1049
    __PACAKGE__->attr(table => 'book_table');
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1050
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1051
    クラス名     モデル名              テーブル名
1052
    book         (クラス名) -> book    book_table
1053

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

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

            
cleanup
Yuki Kimoto authored on 2011-03-21
1058
=head2 列名の自動生成 : mycolumn(), column()
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-22
1059

            
cleanup
Yuki Kimoto authored on 2011-03-21
1060
列名の節を自動生成するにはC<mycolumn()>を使用します。
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-22
1061
C<table>とC<columns>の値が利用されます。
1062

            
cleanup
Yuki Kimoto authored on 2011-03-21
1063
    my $column_clause = $model->mycolumn;
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-22
1064

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

            
1068
    book.id as id, book.name as name
1069

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

            
cleanup
Yuki Kimoto authored on 2011-03-21
1072
また他のテーブルの列名から列名を自動生成することもできます。
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-22
1073

            
cleanup
Yuki Kimoto authored on 2011-03-21
1074
    my $column_clause = $model->column('company');
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-22
1075

            
cleanup
Yuki Kimoto authored on 2011-03-21
1076
モデルのC<comparny>のC<column>の値が['id', 'name']で
1077
あった場合は次のような列名の節が生成されます。
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-22
1078

            
cleanup
Yuki Kimoto authored on 2011-03-21
1079
    company.id as company__id, company.name as company__name
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-22
1080

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

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

            
1085
    package MyDBI;
1086
    
1087
    use base 'DBIx::Custom';
1088
    
1089
    sub connect {
1090
        my $self = shift->SUPER::connect(@_);
1091
        
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1092
        $self->include_model(
1093
            MyModel => [
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1094
                'book',
1095
                'company'
1096
            ]
update pod
Yuki Kimoto authored on 2011-01-28
1097
        );
1098
    }
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1099
    
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1100
    package MyModel::book;
1101
    use base 'DBIx::Custom::Model';
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1102
    
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
1103
    __PACKAGE__->attr('primary_key' => sub { ['id'] };
1104
    
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1105
    sub insert { ... }
1106
    sub list { ... }
1107
    
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1108
    package MyModel::company;
1109
    use base 'DBIx::Custom::Model';
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
1110

            
1111
    __PACKAGE__->attr('primary_key' => sub { ['id'] };
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1112
    
1113
    sub insert { ... }
1114
    sub list { ... }
update pod
Yuki Kimoto authored on 2011-01-28
1115

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

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

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

            
update pod
Yuki Kimoto authored on 2011-02-11
1123
    my $params = [
1124
        {title => 'Perl', author => 'Ken'},
1125
        {title => 'Good day', author => 'Tom'}
1126
    ]
1127
    my $query = $dbi->insert(table => 'book', param => $params->[0], query => 1);
update pod
Yuki Kimoto authored on 2011-01-26
1128

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

            
update pod
Yuki Kimoto authored on 2011-02-11
1132
    foreach my $param (@$params) {
1133
        $dbi->execute($query, $param);
1134
    }
1135

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

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

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

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

            
1152

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

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

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

            
update pod
Yuki Kimoto authored on 2011-01-26
1160
    $dbi->method(
updated document
Yuki Kimoto authored on 2011-01-20
1161
        update_or_insert => sub {
1162
            my $self = shift;
update pod
Yuki Kimoto authored on 2011-01-26
1163
            # something
updated document
Yuki Kimoto authored on 2011-01-20
1164
        },
1165
        find_or_create   => sub {
1166
            my $self = shift;
update pod
Yuki Kimoto authored on 2011-01-26
1167
            # something
updated document
Yuki Kimoto authored on 2011-01-20
1168
        }
1169
    );
1170

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

            
1174
    $dbi->update_or_insert;
1175
    $dbi->find_or_create;
1176

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

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

            
1182
    package MyResult;
1183
    use base 'DBIx::Custom::Result';
1184
    
1185
    sub some_method { ... }
updated document
Yuki Kimoto authored on 2011-01-20
1186

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1187
    1;
1188
    
1189
    package main;
1190
    
1191
    use MyResult;
1192
    
1193
    my $dbi = DBIx::Custom->connect(...);
1194
    $dbi->result_class('MyResult');
updated document
Yuki Kimoto authored on 2011-01-20
1195

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

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

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

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