Newer Older
1372 lines | 43.099kb
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()>で適用されたフィルタを有効にするには、
improved table search in col...
Yuki Kimoto authored on 2011-04-12
810
C<table>オプションを利用します。
update pod
Yuki Kimoto authored on 2011-01-26
811

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

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

            
improved table search in col...
Yuki Kimoto authored on 2011-04-12
816
=head3 タグ一覧
update pod
Yuki Kimoto authored on 2011-02-11
817

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

            
820
    {? NAME}    ->   ?
821

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

            
824
    {= NAME}    ->   NAME = ?
825

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

            
828
    {<> NAME}   ->   NAME <> ?
829

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

            
832
    {< NAME}    ->   NAME < ?
833

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

            
836
    {> NAME}    ->   NAME > ?
837

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

            
840
    {>= NAME}   ->   NAME >= ?
841

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

            
844
    {<= NAME}   ->   NAME <= ?
845

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

            
848
    {like NAME}   ->   NAME like ?
849

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

            
852
    {in NAME COUNT}   ->   NAME in [?, ?, ..]
853

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

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

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

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

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

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

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

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

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

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

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

            
879
    $dbi->register_tag(
update pod
Yuki Kimoto authored on 2011-01-26
880
        '=' => sub {
881
            my $column = shift;
882
            
883
            return ["$column = ?", [$column]];
removed experimental txn_sco...
Yuki Kimoto authored on 2011-01-24
884
        }
885
    );
886

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

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

            
892
C<=>タグの場合は
893

            
894
    {= title}
895

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

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

            
900
    [
901
        展開後の文字列,
902
        [プレースホルダに埋め込みに利用する列名1, 列名2, ...]
903
    ]
904

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

            
907
    'title = ?'
908

            
909
を返す必要があります。
910

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

            
914
    ['title']
915

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

            
919
上記を合わせると
920

            
921
    ['title = ?', ['title']]
922
    
923
を返す必要があるということです。
924

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

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

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

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

            
935
titleの値だけで検索したい場合
936

            
937
    where {= title}
938

            
939
authorの値だけで検索したい場合
940

            
941
    where {= author}
942

            
943
titleとauthorの両方の値で検索したい場合
944

            
945
    where {= title} and {=author}
946

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

            
950
    my $where = $dbi->where;
951

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

            
954
    $where->clause(
955
        ['and', '{= title'}, '{= author}']
956
    );
957

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

            
960
    ['or' あるいは 'and', タグ1, タグ2, タグ3]
961

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

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

            
968
    ['and', 
969
      '{= title}', 
970
      ['or', '{= author}', '{like date}']
971
    ]
972

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

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

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

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

            
984
    my $where_clause = $where->to_string;
985

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

            
988
    where {= title}
989

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

            
994
    my $where_clause = "$where";
995

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

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

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

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
1003
たとえば、パラメータとして開始日付と終了日付を受け取ったことを
1004
考えてみてください。
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
    my $param = {start_date => '2010-11-15', end_date => '2011-11-21'};
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1007

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

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
1010
    my $p = {date => ['2010-11-15', '2011-11-21']};
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
同名の列を含むタグに順番に埋め込むことができます。
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1013

            
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
1014
    $where->clause(
1015
        ['and', '{> date}', '{< date}']
1016
    );
1017
    $where->param($p);
1018

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

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

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

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

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

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

            
1032
    my $p = {date => []};
1033

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

            
1036
    my @date;
1037
    push @date, exists $param->{start_date} ? $param->{start_date}
1038
                                            : $dbi->not_exists;
1039
    push @date, $param->{end_date} if exists $param->{end_date};
1040
    my $p = {date => \@date};
1041

            
1042
=head3 C<select()>との連携
1043

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

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

            
1055
=head3 C<execute()>との連携
1056

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

            
1059

            
1060
    my $where = $dbi->where;
1061
    $where->clause(...);
1062
    $where->param($param);
1063

            
update pod
Yuki Kimoto authored on 2011-02-11
1064
    my $sql = <<"EOS";
make delete() using where ob...
Yuki Kimoto authored on 2011-01-26
1065
    select * from book;
1066
    $where
1067
    EOS
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
1068

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

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

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

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

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

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1081
    package MyModel;
1082
    
1083
    use base 'DBIx::Custom::Model';
update pod
Yuki Kimoto authored on 2011-01-28
1084

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

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

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1089
    package MyModel::book;
1090
    
1091
    use base 'MyModel';
1092
    
1093
    sub insert { ... }
1094
    sub list { ... }
update pod
Yuki Kimoto authored on 2011-01-28
1095

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

            
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1098
    package MyModel::company;
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1099
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1100
    use base 'MyModel';
1101
    
1102
    sub insert { ... }
1103
    sub list { ... }
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1104

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

            
1107
    MyModel.pm
1108
    MyModel / book.pm
1109
            / company.pm
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1110

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

            
1113
    $dbi->include_model('MyModel');
1114

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

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

            
1119
    my $result = $dbi->model('book')->list;
1120

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

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

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

            
1133
    $dbi->model('book')->delete_at(where => 123);
1134

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

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

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

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

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

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

            
update pod
Yuki Kimoto authored on 2011-02-11
1147
    # DBIx::Custom method
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1148
    $model->execute($sql);
update pod
Yuki Kimoto authored on 2011-02-11
1149
    
1150
    # DBI method
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
1151
    $model->begin_work;
1152
    $model->commit;
update pod
Yuki Kimoto authored on 2011-01-28
1153

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

            
1156
    my @models = keys %{$self->models};
1157

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

            
1160
   $model->primary_key(['id', 'number_id']);
1161

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

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

            
1167
    $model->filter({
1168
        title  => {out => ..., in => ..., end => ...},
1169
        author => {out => ..., in => ..., end => ...}
1170
    });
1171

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

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

            
1176
    $model->columns(['id', 'number_id']);
1177

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

            
1181
    $dbi->setup_model;
1182

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

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

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

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

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

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

            
1195
    クラス名     モデル名              テーブル名
1196
    book         (クラス名) -> book    (モデル名) -> book
1197

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

            
1200
    package MyModel::book;
1201
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1202
    use base 'MyModel';
1203
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1204
    __PACAKGE__->attr(name => 'book_model');
1205

            
1206
    クラス名     モデル名      テーブル名
1207
    book         book_model    (モデル名) -> book_model
1208

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

            
1211
    $dbi->model('book_model');
1212

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

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

            
1217
    use base 'MyModel';
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1218
    
1219
    __PACAKGE__->attr(table => 'book_table');
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1220
    
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1221
    クラス名     モデル名              テーブル名
1222
    book         (クラス名) -> book    book_table
1223

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

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

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

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

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

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

            
1238
    book.id as id, book.name as name
1239

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

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

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

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

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

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

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

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

            
1281
    __PACKAGE__->attr('primary_key' => sub { ['id'] };
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
1282
    
1283
    sub insert { ... }
1284
    sub list { ... }
update pod
Yuki Kimoto authored on 2011-01-28
1285

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

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

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

            
update pod
Yuki Kimoto authored on 2011-02-11
1293
    my $params = [
1294
        {title => 'Perl', author => 'Ken'},
1295
        {title => 'Good day', author => 'Tom'}
1296
    ]
1297
    my $query = $dbi->insert(table => 'book', param => $params->[0], query => 1);
update pod
Yuki Kimoto authored on 2011-01-26
1298

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

            
update pod
Yuki Kimoto authored on 2011-02-11
1302
    foreach my $param (@$params) {
1303
        $dbi->execute($query, $param);
1304
    }
1305

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

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

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

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

            
1322

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

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

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

            
update pod
Yuki Kimoto authored on 2011-01-26
1330
    $dbi->method(
updated document
Yuki Kimoto authored on 2011-01-20
1331
        update_or_insert => sub {
1332
            my $self = shift;
update pod
Yuki Kimoto authored on 2011-01-26
1333
            # something
updated document
Yuki Kimoto authored on 2011-01-20
1334
        },
1335
        find_or_create   => sub {
1336
            my $self = shift;
update pod
Yuki Kimoto authored on 2011-01-26
1337
            # something
updated document
Yuki Kimoto authored on 2011-01-20
1338
        }
1339
    );
1340

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

            
1344
    $dbi->update_or_insert;
1345
    $dbi->find_or_create;
1346

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

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

            
1352
    package MyResult;
1353
    use base 'DBIx::Custom::Result';
1354
    
1355
    sub some_method { ... }
updated document
Yuki Kimoto authored on 2011-01-20
1356

            
removed experimental expand
Yuki Kimoto authored on 2011-01-26
1357
    1;
1358
    
1359
    package main;
1360
    
1361
    use MyResult;
1362
    
1363
    my $dbi = DBIx::Custom->connect(...);
1364
    $dbi->result_class('MyResult');
updated document
Yuki Kimoto authored on 2011-01-20
1365

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

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

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

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