Newer Older
1378 lines | 43.281kb
added experimental expand me...
yuki-kimoto authored on 2010-10-20
1
=encoding utf8
2

            
updated document
yuki-kimoto authored on 2010-10-22
3
=head1 NAME
added experimental expand me...
yuki-kimoto authored on 2010-10-20
4

            
update pod
Yuki Kimoto authored on 2011-01-28
5
DBIx::Custom::Guide::Ja - DBIx::Customのガイドブック
added experimental expand me...
yuki-kimoto authored on 2010-10-20
6

            
7
=head1 ガイド
8

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
108
    select * from book where author = ?;
109

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
171
    use DBIx::Custom;
172

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
211
   "dbi:ODBC:driver={SQL Server};Server=(local);database=test;Trusted_Connection=yes;AutoTranslate=No;"
added experimental expand me...
yuki-kimoto authored on 2010-10-20
212

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
375
次のSQLが実行されます。
376

            
377
    select book.name as name,
378
      company.id as comapny__id,
379
      company.name as company__name
380
    from book
381
      left outer join company on book.company_id = company.id
382

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

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

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

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

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

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

            
396
    $dbi->execute("select * from book;");
397

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

            
400
    $dbi->execute(
401
        "select * from book {= title} and {= author};"
402
        param => {title => 'Perl', author => 'Ken'}
403
    );
404

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

            
407
    select * from book title = ? and author = ?;
408

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

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

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

            
415
    $dbi->execute('select * from book');
416

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

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

            
421
    $dbi->insert_at(
422
        table => 'book', primary_key => ['id'],
423
        where => ['123'], param => {name => 'Ken'}
424
    );
425

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

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

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

            
434
    $dbi->update_at(
435
        table => 'book', primary_key => ['id'],
436
        where => ['123'], param => {name => 'Ken'}
437
    );
438

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
updated document
Yuki Kimoto authored on 2011-01-20
482
    while (my $row = $result->fetch) {
updated document
Yuki Kimoto authored on 2011-01-23
483
        my $title  = $row->[0];
484
        my $author = $row->[1];
updated document
Yuki Kimoto authored on 2011-01-20
485
    }
486

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

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

            
492
    my $row = $result->fetch_first;
493

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

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

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

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

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

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

            
514
    [
515
        ['Perl', 'Ken'],
516
        ['Ruby', 'Mark']
517
    ]
518

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

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

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

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

            
528
    [
529
        ['Perl', 'Ken'],
530
        ['Ruby', 'Mark']
531
    ]
532

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

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

            
537
    while (my $row = $result->fetch_hash) {
538
        my $title  = $row->{title};
539
        my $author = $row->{author};
540
    }
541

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

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

            
547
    my $row = $result->fetch_hash_first;
548

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

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

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

            
558
    while (my $rows = $result->fetch_hash_multi(5)) {
updated document
Yuki Kimoto authored on 2011-01-23
559
        my $title0   = $rows->[0]{title};
560
        my $author0  = $rows->[0]{author};
561
        my $title1  = $rows->[1]{title};
562
        my $author1 = $rows->[1]{author};
updated document
Yuki Kimoto authored on 2011-01-20
563
    }
564

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

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

            
569
    [
570
        {title => 'Perl', author => 'Ken'},
571
        {title => 'Ruby', author => 'Mark'}
572
    ]
573

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

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

            
580
    my $rows = $result->fetch_hash_all;
581

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

            
584
    [
585
        {title => 'Perl', author => 'Ken'},
586
        {title => 'Ruby', author => 'Mark'}
587
    ]
588

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

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

            
594
    my $sth = $result->sth;
595

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

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

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

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

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

            
610
    $dbi->register_filter(
611
        # Time::Piece object to DATE format
612
        tp_to_date => sub {
613
            my $date = shift;
614

            
615
            return '0000-00-00' unless $tp;
616
            return $tp->strftime('%Y-%m-%d');
617
        },
618
        
619
        # DATE to Time::Piece object
620
        date_to_tp => sub {
621
            my $date = shift;
622

            
623
            return if $date eq '0000-00-00';
624
            return Time::Piece->strptime($date, '%Y-%m-%d');
625
        },
626
    );
627

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

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

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

            
634
    $dbi->apply_filter('book',
635
        issue_date => {out => 'tp_to_date', in => 'date_to_tp'},
636
        first_issue_date => {out => 'tp_to_date', in => 'date_to_tp'}
637
    );
638

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

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

            
647
    issue_date => {out => sub { ... }, in => sub { ... }}
648

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

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

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

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

            
661
    my $row = $resutl->fetch_hash_first;
662
    my $tp = $row->{issue_date};
663

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

            
666
    $dbi->select(
667
        table => 'book',
668
        where => {'book.title' => 'Perl', 'book.author' => 'Ken'}
669
    );
670

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

            
674
    my $result = $dbi->execute(
675
       "select issue_date as book__issue_date from book");
676

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

            
679
    $dbi->apply_filter('book',
680
        issue_date => {out => 'tp_to_date', in => 'date_to_tp',
681
                       end => 'tp_to_displaydate'},
682
    );
683

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

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

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

            
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
694
    $dbi->insert(
695
        table => 'book',
696
        param => {issue_date => $tp, first_issue_date => $tp},
697
        filter => {issue_date => 'tp_to_date', first_issue_date => 'tp_to_date'}
698
    );
699

            
700
C<execute()>の例を示します。
701

            
702
my $sql = <<"EOS";
703
select YEAR(issue_date) as issue_year
704
from book
705
where YEAR(issue_date) = {? issue_year}
706
EOS
707
   
708
    my $result = $dbi->execute(
709
        $sql,
710
        param => {issue_year => '2010'},
711
        filter => {issue_year => 'tp_to_year'}
712
    );
713

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

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

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

            
721
    $result->remove_filter
722

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

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

            
729
    $result->end_filter(issue_date => sub {
730
        my $tp = shift;
731
        
732
        return '' unless $tp;
733
        return $tp->strftime('%Y/%m/%d %h:%m:%s (%a)');
734
    });
735

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

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

            
740
$result->remove_end_filter;
741

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

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

            
747
    $dbi->each_column(
748
        sub {
749
            my ($self, $table, $column, $info) = @_;
750
            
751
            my $type = $info->{TYPE_NAME};
752
            
753
            my $filter = $type eq 'DATE'     ? {out => 'tp_to_date', in => 'date_to_tp'}
754
                       : $type eq 'DATETIME' ? {out => 'tp_to_datetime', in => 'datetime_to_tp'}
755
                                             : undef;
756
            
757
            $self->apply_filter($table, $column, $filter)
758
              if $filter;
759
        }
760
    );
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
761

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
804
    $dbi->execute($sql, param => {title => 'Perl', author => '%Ken%'}
805
                  filter => {title => 'to_something');
806

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

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

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

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

            
818
    {table NAME} -> NAME
819

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

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

            
826
    {? NAME}    ->   ?
827

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

            
830
    {= NAME}    ->   NAME = ?
831

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

            
834
    {<> NAME}   ->   NAME <> ?
835

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

            
838
    {< NAME}    ->   NAME < ?
839

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

            
842
    {> NAME}    ->   NAME > ?
843

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

            
846
    {>= NAME}   ->   NAME >= ?
847

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

            
850
    {<= NAME}   ->   NAME <= ?
851

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

            
854
    {like NAME}   ->   NAME like ?
855

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

            
858
    {in NAME COUNT}   ->   NAME in [?, ?, ..]
859

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

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

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

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

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

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

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

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

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

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

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

            
885
    $dbi->register_tag(
update pod
Yuki Kimoto authored on 2011-01-26
886
        '=' => sub {
887
            my $column = shift;
888
            
889
            return ["$column = ?", [$column]];
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
890
        }
891
    );
892

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

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

            
898
C<=>タグの場合は
899

            
900
    {= title}
901

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

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

            
906
    [
907
        展開後の文字列,
908
        [プレースホルダに埋め込みに利用する列名1, 列名2, ...]
909
    ]
910

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

            
913
    'title = ?'
914

            
915
を返す必要があります。
916

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

            
920
    ['title']
921

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

            
925
上記を合わせると
926

            
927
    ['title = ?', ['title']]
928
    
929
を返す必要があるということです。
930

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

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

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

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

            
941
titleの値だけで検索したい場合
942

            
943
    where {= title}
944

            
945
authorの値だけで検索したい場合
946

            
947
    where {= author}
948

            
949
titleとauthorの両方の値で検索したい場合
950

            
951
    where {= title} and {=author}
952

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

            
956
    my $where = $dbi->where;
957

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

            
960
    $where->clause(
961
        ['and', '{= title'}, '{= author}']
962
    );
963

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

            
966
    ['or' あるいは 'and', タグ1, タグ2, タグ3]
967

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

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

            
974
    ['and', 
975
      '{= title}', 
976
      ['or', '{= author}', '{like date}']
977
    ]
978

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

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

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

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

            
990
    my $where_clause = $where->to_string;
991

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

            
994
    where {= title}
995

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

            
1000
    my $where_clause = "$where";
1001

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

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

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

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

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

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

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

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

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
1020
    $where->clause(
1021
        ['and', '{> date}', '{< date}']
1022
    );
1023
    $where->param($p);
1024

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

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

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

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

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

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

            
1038
    my $p = {date => []};
1039

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

            
1042
    my @date;
1043
    push @date, exists $param->{start_date} ? $param->{start_date}
1044
                                            : $dbi->not_exists;
1045
    push @date, $param->{end_date} if exists $param->{end_date};
1046
    my $p = {date => \@date};
1047

            
1048
=head3 C<select()>との連携
1049

            
update pod
Yuki Kimoto authored on 2011-01-26
1050
L<DBIx::Custom::Where>オブジェクトは
1051
C<select()>のC<where>に直接渡すことが
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
1052
できます。
1053
    
1054
    my $where = $dbi->where;
1055
    $where->clause(...);
1056
    $where->param($param);
1057
    my $result = $dbi->select(table => 'book', where => $where);
1058

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

            
1061
=head3 C<execute()>との連携
1062

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

            
1065

            
1066
    my $where = $dbi->where;
1067
    $where->clause(...);
1068
    $where->param($param);
1069

            
update pod
Yuki Kimoto authored on 2011-02-11
1070
    my $sql = <<"EOS";
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
1071
    select * from book;
1072
    $where
1073
    EOS
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1074

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

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

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

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

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

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1087
    package MyModel;
1088
    
1089
    use base 'DBIx::Custom::Model';
update pod
Yuki Kimoto authored on 2011-01-28
1090

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

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

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1095
    package MyModel::book;
1096
    
1097
    use base 'MyModel';
1098
    
1099
    sub insert { ... }
1100
    sub list { ... }
update pod
Yuki Kimoto authored on 2011-01-28
1101

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

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1104
    package MyModel::company;
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1105
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1106
    use base 'MyModel';
1107
    
1108
    sub insert { ... }
1109
    sub list { ... }
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1110

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

            
1113
    MyModel.pm
1114
    MyModel / book.pm
1115
            / company.pm
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1116

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

            
1119
    $dbi->include_model('MyModel');
1120

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

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

            
1125
    my $result = $dbi->model('book')->list;
1126

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

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

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

            
1139
    $dbi->model('book')->delete_at(where => 123);
1140

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

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

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

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

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

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

            
update pod
Yuki Kimoto authored on 2011-02-11
1153
    # DBIx::Custom method
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1154
    $model->execute($sql);
update pod
Yuki Kimoto authored on 2011-02-11
1155
    
1156
    # DBI method
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1157
    $model->begin_work;
1158
    $model->commit;
update pod
Yuki Kimoto authored on 2011-01-28
1159

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

            
1162
    my @models = keys %{$self->models};
1163

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

            
1166
   $model->primary_key(['id', 'number_id']);
1167

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

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

            
1173
    $model->filter({
1174
        title  => {out => ..., in => ..., end => ...},
1175
        author => {out => ..., in => ..., end => ...}
1176
    });
1177

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

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

            
1182
    $model->columns(['id', 'number_id']);
1183

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

            
1187
    $dbi->setup_model;
1188

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

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

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

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

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

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

            
1201
    クラス名     モデル名              テーブル名
1202
    book         (クラス名) -> book    (モデル名) -> book
1203

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

            
1206
    package MyModel::book;
1207
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1208
    use base 'MyModel';
1209
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1210
    __PACAKGE__->attr(name => 'book_model');
1211

            
1212
    クラス名     モデル名      テーブル名
1213
    book         book_model    (モデル名) -> book_model
1214

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

            
1217
    $dbi->model('book_model');
1218

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

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

            
1223
    use base 'MyModel';
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1224
    
1225
    __PACAKGE__->attr(table => 'book_table');
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1226
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1227
    クラス名     モデル名              テーブル名
1228
    book         (クラス名) -> book    book_table
1229

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

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

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

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

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

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

            
1244
    book.id as id, book.name as name
1245

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

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

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

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

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

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

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

            
1261
    package MyDBI;
1262
    
1263
    use base 'DBIx::Custom';
1264
    
1265
    sub connect {
1266
        my $self = shift->SUPER::connect(@_);
1267
        
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1268
        $self->include_model(
1269
            MyModel => [
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1270
                'book',
1271
                'company'
1272
            ]
update pod
Yuki Kimoto authored on 2011-01-28
1273
        );
1274
    }
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1275
    
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1276
    package MyModel::book;
1277
    use base 'DBIx::Custom::Model';
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1278
    
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
1279
    __PACKAGE__->attr('primary_key' => sub { ['id'] };
1280
    
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1281
    sub insert { ... }
1282
    sub list { ... }
1283
    
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1284
    package MyModel::company;
1285
    use base 'DBIx::Custom::Model';
add experimental update_at()...
Yuki Kimoto authored on 2011-02-21
1286

            
1287
    __PACKAGE__->attr('primary_key' => sub { ['id'] };
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1288
    
1289
    sub insert { ... }
1290
    sub list { ... }
update pod
Yuki Kimoto authored on 2011-01-28
1291

            
1292
=head2 8. パフォーマンスの改善
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
パフォーマンスが得られない場合はC<query>オプションを使って
1297
クエリを作成してみてください。
update pod
Yuki Kimoto authored on 2011-01-26
1298

            
update pod
Yuki Kimoto authored on 2011-02-11
1299
    my $params = [
1300
        {title => 'Perl', author => 'Ken'},
1301
        {title => 'Good day', author => 'Tom'}
1302
    ]
1303
    my $query = $dbi->insert(table => 'book', param => $params->[0], query => 1);
update pod
Yuki Kimoto authored on 2011-01-26
1304

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

            
update pod
Yuki Kimoto authored on 2011-02-11
1308
    foreach my $param (@$params) {
1309
        $dbi->execute($query, $param);
1310
    }
1311

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

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

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

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

            
1328

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

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

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

            
update pod
Yuki Kimoto authored on 2011-01-26
1336
    $dbi->method(
updated document
Yuki Kimoto authored on 2011-01-20
1337
        update_or_insert => sub {
1338
            my $self = shift;
update pod
Yuki Kimoto authored on 2011-01-26
1339
            # something
updated document
Yuki Kimoto authored on 2011-01-20
1340
        },
1341
        find_or_create   => sub {
1342
            my $self = shift;
update pod
Yuki Kimoto authored on 2011-01-26
1343
            # something
updated document
Yuki Kimoto authored on 2011-01-20
1344
        }
1345
    );
1346

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

            
1350
    $dbi->update_or_insert;
1351
    $dbi->find_or_create;
1352

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

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

            
1358
    package MyResult;
1359
    use base 'DBIx::Custom::Result';
1360
    
1361
    sub some_method { ... }
updated document
Yuki Kimoto authored on 2011-01-20
1362

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1363
    1;
1364
    
1365
    package main;
1366
    
1367
    use MyResult;
1368
    
1369
    my $dbi = DBIx::Custom->connect(...);
1370
    $dbi->result_class('MyResult');
updated document
Yuki Kimoto authored on 2011-01-20
1371

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

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

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

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