DBIx-Custom / Changes /
Newer Older
289 lines | 11.207kb
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
1
0.1657
2
    - remaned experimental safty_charcter to safty_name
3
    - safty_charcter is changed, set only one character regex.
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
4
0.1656
5
    - fixed some select() join opition bug
remove experimental DBIx::Cu...
Yuki Kimoto authored on 2011-03-08
6
0.1655
- added experimental DBIx::C...
Yuki Kimoto authored on 2011-03-08
7
    - added experimental DBIx::Custom::Model join attribute
8
    - added experimental select() join option
9
    - deprecated select() relation option
added experimental update_pa...
Yuki Kimoto authored on 2011-03-08
10
    - added experimental update_param and insert_param
remove experimental DBIx::Cu...
Yuki Kimoto authored on 2011-03-08
11
    - remove experimental DBIx::Custom::Model relation
12
0.1654
selection can contain where ...
Yuki Kimoto authored on 2011-03-06
13
    - selection can contain where clause.
- added experimental DBIx::C...
Yuki Kimoto authored on 2011-02-28
14
0.1653
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-02-28
15
    - added experimental DBIx::Custom::Result remove_filter()
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-02-28
16
    - added experimental DBIx::Custom::Result remove_end_filter()
- added experimental DBIx::C...
Yuki Kimoto authored on 2011-02-28
17
    - added experimental DBIx::Custom::Model insert_at()
18
    - added experimental insert_at()
19
    - improved error message
20
0.1652
21
    - all filter can receive array reference and receiving hash reference is DEPRECATED!
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
22
0.1651
23
    - add experimental DBIx::Custom::Model filter attribute.
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
24
0.1650
25
    - add experimental DBIx::Custom::Model name() attribute
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
26
0.1649
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-22
27
    - add experimental DBIx::Custom::Model column_clause() method.
select method column option ...
Yuki Kimoto authored on 2011-02-22
28
    - select method column option can receive string.
cleanup
Yuki Kimoto authored on 2011-02-22
29
    - DBIx::Custom::Model select() and select_at() think about relation attirbute
add models() attribute
Yuki Kimoto authored on 2011-02-21
30
0.1648
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
31
    - add experimental DBIx::Custom::Model relation() attribute
32
    - add experimental update_at(), delete_at(), select_at()
33
    - add experimental setup_model()
34
    - add experimental DBIx::Custom::Model columns attirbute
35
    - add experimental DBIx::Custom::Model foreign_key() attribute 
36
    - add experimental models() attribute
add default_dbi_option()
Yuki Kimoto authored on 2011-02-19
37
0.1647
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
38
    - add default_dbi_option()
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
39
0.1646
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
40
    - add feture. all model class in namespace is included by include_model
41
    - rename experimental include_table to include_model
42
    - rename experimental table to model
43
    - rename experimental DBIx::Custom::Table to DBIx::Custom::Model
44
    - remame experimental DBIx::Custom::Table::name() to DBIx::Custom::Model::table();
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
45
0.1645
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
46
    - removed experimental base_table() for class expandability.
47
    - experimental table() can't set table object any more.
48
    - added experimental include_table().
update pod
Yuki Kimoto authored on 2011-02-11
49
0.1644
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
50
    - update pod
cleanup
Yuki Kimoto authored on 2011-02-09
51
0.1643
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
52
    - add experimental selection option to select()
53
    - add experimental table tag
54
    - fix bug : filter can't overwirite undef value.
55
    - add experimental feature to apply_filter(). you can apply end filter.
56
    - add experimental feature to apply_filter(). TABLE__COLUMN is filterded now.
cleanup
Yuki Kimoto authored on 2011-02-09
57
0.1642
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
58
    - removed experimental DBIx::Custom::Table base() method
59
    - table created by tabled method can call base_$method correponding to base_table's one
select() where can't receive...
Yuki Kimoto authored on 2011-01-27
60
0.1641
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
61
    - select() where can't receive array reference to prevend SQL injection easily(not backward compatible. sorry. use where() instead)
62
    - added experimental safety_column_name attribute
63
    - fix SQL injection security hole about column name
autoload DBI method
Yuki Kimoto authored on 2011-01-26
64
0.1640
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
65
    - autoload DBI method
66
    - removed experimental expand
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
67
0.1639
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
68
    - improved delete() and update() where option. you can use DBIx::Custom::Where object
69
    - added experimental not_exists()
renamed experimental DBIx::C...
Yuki Kimoto authored on 2011-01-25
70
0.1638
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
71
    - table object call dbi object method if not found method.
72
    - added experimental base_table attribute and removed experimental table_class attribute
73
    - renamed helper to method.
74
    - added experimental DBIx::Custom::Result::stash()
75
    - renamed experimental DBIx::Custom::Table helper to method
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
76
0.1637
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
77
    - renamed dbi_options to dbi_option. dbi_options is available, but deprecated.
78
    - renamed DBIx::Custom::TagProcessor to DBIx::Custom::Tag, and function names is cleanuped.
79
    - renamed register_tag_processor to register_tag. register_tag_processor is available, but deprecated.
80
    - renamed tag_processors to tags. tag_prosessors is available, but deprecated.
81
    - improved error message
82
    - build all clause if param is undefined.
83
    - each_column callback receive self as first argument.
84
    - removed experimental txn_scope
many changed
Yuki Kimoto authored on 2011-01-23
85
0.1636
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
86
    - added tests and cleanup
pod fix
Yuki Kimoto authored on 2011-01-21
87
0.1635
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
88
    - renamed iterate_all_columns to each_column
pod fix
Yuki Kimoto authored on 2011-01-21
89
0.1634
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
90
    - became more useful where method
91
    - changed DBIx::Custom::Where greatly
fix tests
Yuki Kimoto authored on 2011-01-18
92
0.1633
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
93
    - fixed test
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
94
0.1632
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
95
    - added experimental where method
96
    - added experimental DBIx::Custom::Where.
97
    - removed DBIx::Custom::Or
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-17
98
0.1631
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
99
    - added experimental DBIx::Custom::Result end_filter method
100
    - experimental extended select method's where option
101
    - fix select method empty where failed bug
102
    - added experimental suger method query option
103
    - added experimental or method
fix tests
Yuki Kimoto authored on 2011-01-13
104
0.1630
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
105
    - fix test bug
cleanup
Yuki Kimoto authored on 2011-01-12
106
0.1629
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
107
    - renamed auto_filter to apply_filter
108
    - changed apply_filter method arguments
109
    - deprecated cache_method
add examples
Yuki Kimoto authored on 2011-01-07
110
0.1628
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
111
    - remove DBIx::Custom::Model
112
    - move table method and table_class attribute to DBIx::Custom
113
    - added examples
114
    - fixed connect method bug
added insert, update, update...
Yuki Kimoto authored on 2011-01-04
115
0.1627
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
116
    - added insert, update, update_all, delete, delete_all, select method to DBIx::Custom::Table
117
    - added experimental txn_scope
simplified DBIx::Custom::Mod...
Yuki Kimoto authored on 2011-01-02
118
0.1626
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
119
    - simplified DBIx::Custom::Model and DBIx::Custom::Table
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-01
120
0.1625
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
121
    - added experimental DBIx::Custom::Model and DBIx::Custom::Table
added experimental iterate_a...
Yuki Kimoto authored on 2010-12-22
122
0.1624
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
123
    - added experimental iterate_all_columns method.
added auto_filter method
kimoto.yuki@gmail.com authored on 2010-12-21
124
0.1623
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
125
    - added experimental auto_filter method
126
    - deprecated default_bind_filter and default_fetch_filter because these are global effect.
127
    - changed defautl_bind_filter and default_fetch_filter attributes to methods.
128
    - changed DBIx::Custom::Result default_filter attribute to method
129
    - changed DBIx::Custom::Result filter attribute to method.
130
    - filter_check is always done for usability
check arguments of connect m...
Yuki Kimoto authored on 2010-12-20
131
0.1622
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
132
    - deprecated DBIx::Custom::SQLite and DBIx::Custom::MySQL
133
    - added dbi_options attribute
134
    - checked attributes passed to connect method
cleanup (removed undocumente...
yuki-kimoto authored on 2010-11-10
135
0.1621
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
136
    - cleanup (removed undocumented features)
updated document
yuki-kimoto authored on 2010-10-21
137
0.1620
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
138
    - updated document
added experimental expand me...
yuki-kimoto authored on 2010-10-20
139
0.1619
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
140
    - updated document
141
    - added experimental expand method
cleanup
yuki-kimoto authored on 2010-10-17
142
0.1618
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
143
    - added helper method
144
    - added begin_work, commit, and rollback method
DBIx::Custom is now stable
yuki-kimoto authored on 2010-09-07
145
0.1617
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
146
    - L<DBIx::Custom> is now stable. APIs keep backword compatible in the feature.
removed experimental registe...
yuki-kimoto authored on 2010-08-24
147
0.1616
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
148
    - removed experimental register_method(), and methods attribute, because it is too magical
fixed DBIx::Custom::QueryBui...
yuki-kimoto authored on 2010-08-15
149
0.1615
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
150
    - fixed DBIx::Custom::QueryBuilder build_query() bug
151
    - required Perl 5.008001 to use @CARP_NOT 
fixed Carp trast relationshi...
yuki-kimoto authored on 2010-08-12
152
0.1614
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
153
    - removed DBIx::Custom::Query start_tag and end tag attributes
154
    - enable escaping '{' and '}' in the source of SQL
155
    - fixed Carp Carp trust relationship
added register_method() meth...
yuki-kimoto authored on 2010-08-10
156
0.1613
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
157
    - added experimental register_method() method
158
    - added experimental methods attribute
add tests
yuki-kimoto authored on 2010-08-10
159
0.1612
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
160
    - added tests
161
    - updated document
162
    - removed DBIx::Custom::SQLite last_insert_rawid() mehtod(not backword compatible)
163
    - removed DBIx::Custom::MySQL last_insert_id() method(not backword compatible)
renamed update tag to update...
yuki-kimoto authored on 2010-08-09
164
0.1611
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
165
    - renamed update tag to update_param
166
    - renamed insert tag to insert_param
167
    - renamed sql_builder to query_builder
added check_filter attribute
yuki-kimoto authored on 2010-08-08
168
0.1610
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
169
    - added filter_check attribute.
updated document
yuki-kimoto authored on 2010-08-08
170
0.1609
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
171
    - updated document.
update document
yuki-kimoto authored on 2010-08-07
172
0.1608
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
173
    - update document
174
    - renamed DBIx::Custom::QueryBuilder::TagProcessors functions(not backword compatible)
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
175
0.1607
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
176
    - where argument of select() method can specify array(string, paramters)
177
    - renamed build_query() to create_query()(not backword compatible)
renamed build_query to creat...
yuki-kimoto authored on 2010-08-06
178
0.1606
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
179
    - fix testing bug
changed arguments of tag pro...
yuki-kimoto authored on 2010-08-05
180
0.1605
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
181
    - remove DBIx::Custom::QueryBuilder::tag_syntax()  (not backword compatible)
182
    - renamed DBIx::Custom::TagProcessor to DBIx::Custom::TagProcessors (not backword compatible)
183
    - changed arguments of tag processor(not backword compatible)
184
    - renamed DBIx::Custom::QueryBuilder::TagProcessors functions(not backword compatible)
removed DESTROY method(not b...
yuki-kimoto authored on 2010-07-18
185
0.1604
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
186
    - changed argument of tag processor(not backword compatible)
187
    - renamed default_query_filter to default_bind_filter(not backword compatible)
188
    - renamed DBIx::Custom::SQLTemplate to DBIx::Custom::SQLBuilder(not backword compatible)
189
    - renamed create_query to build_query(not backword compatible)
190
    - renamed sql_template to sql_builder(not backword compatible)
191
    - removed DESTROY method(not backword compatible)
192
    - removed disconnect method(not backword compatible)
193
    - fixed DBIx::Custom::MySQL connect_memory
removed DBIx::Custom commit ...
yuki-kimoto authored on 2010-07-14
194
0.1603
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
195
    - removed DBIx::Custom commit method (not backword compatible)
196
    - removed DBIx::Custom rollback method (not backword compatible)
197
    - removed DBIx::Custom auto_commit method (not backword compatible)
added cache_method attribute
yuki-kimoto authored on 2010-06-25
198
0.1602
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
199
    - added cache_method attribute
select, insert, update, upda...
yuki-kimoto authored on 2010-06-14
200
0.1601
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
201
    - added cache attribute
202
    - select, insert, update, update_all, delete, delete_all, execute only receive hash argument(not backword compatible)
removed reconnect method
yuki-kimoto authored on 2010-05-28
203
0.1503
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
204
    - removed reconnect method
205
    - removed connected method
206
    - removed reconnect_memroy method
207
    - renamed fetch_single to fetch_first
208
    - renamed fetch_hash_single to fetch_hash_first
209
    - updated document
update document
yuki-kimoto authored on 2010-05-27
210
0.1502
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
211
    - added commit method
212
    - added rollback method
213
    - changed select argument, added relation option
214
    - moved host attribute to DBIx::Custom::MySQL
215
    - moved port attribute to DBIx::Custom::MySQL
216
    - moved database attribute to DBIx::Custom::MySQL and DBIx::Custom::SQLite
update document
yuki-kimoto authored on 2010-05-27
217
0.1501
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
218
    - removed register_format()
219
    - removed formats()
220
    - removed run_transaction()
221
    - removed create_table()
222
    - removed drop_table()
223
    - changed select() arguments
224
    - changed insert() arguments
225
    - changed update() arguments
226
    - changed update_all() arguments
227
    - changed delete() arguments
228
    - changed delete_all() arguments
229
    - changed execute() arguments
some changed
yuki-kimoto authored on 2010-05-02
230
0.1402
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
231
    - remove finish(), error()
232
    - can receive code ref to filter()
233
    - renamed resist to register
renamed fetch_rows to fetch_...
yuki-kimoto authored on 2010-05-01
234
0.1401
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
235
    - renamed fetch_rows to fetch_multi
236
    - renamed fetch_hash_rows to fetch_hash_multi
renamed fetch_rows to fetch_...
yuki-kimoto authored on 2010-05-01
237
0.1301
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
238
    - Changed many(not backword compatible)
many change
yuki-kimoto authored on 2010-02-11
239
0.1201
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
240
    - Changed many(not backword compatible)
update document
yuki-kimoto authored on 2010-01-30
241
0.1101
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
242
    - rename DBIx::Custom::SQLite last_insert_id to last_insert_rowid
update document
yuki-kimoto authored on 2010-01-30
243
0.1001
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
244
    - remove run_transaction().
245
    - add transaction() and DBIx::Custom::Transaction
246
    - rename fetch_first to fetch_single
247
    - rename fetch_hash_first to fetch_hash_single
fix some bug
yuki-kimoto authored on 2010-01-24
248
0.0906
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
249
    - fix some bug
catch up with Object::Simple...
yuki-kimoto authored on 2010-01-22
250
0.0905
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
251
    - catch up with Object::Simple update
cleanup
yuki-kimoto authored on 2010-01-21
252
0.0904
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
253
    - cleanup
catch up with Object::Simple...
yuki-kimoto authored on 2010-01-18
254
0.0903
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
255
    - catch up with Object::Simple update
catch up with Object::Simple...
yuki-kimoto authored on 2010-01-18
256
0.0902
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
257
    - cleanup
version 0.0901
yuki-kimoto authored on 2009-12-17
258
0.0901
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
259
    - DBIx::Basic filter 'encode_utf8' utf8::upgrade process is deleted
version 0.0901
yuki-kimoto authored on 2009-12-17
260
0.0801
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
261
    - add 'create_table', 'drop_table' methods
version 0.0901
yuki-kimoto authored on 2009-12-17
262
0.0701
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
263
    - rename sql_template to sql_tmpl (not backword compatible)
264
    - rename dbi_options to options (not backword compatible)
fix timeformat tests
yuki-kimoto authored on 2009-11-23
265
0.0605
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
266
    - fix encode_utf8 filter
fix timeformat tests
yuki-kimoto authored on 2009-11-23
267
0.0604
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
268
    - fix timeformat tests
fix timeformat tests
yuki-kimoto authored on 2009-11-23
269
0.0603
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
270
    - fix cache system bug
fix timeformat tests
yuki-kimoto authored on 2009-11-23
271
0.0602
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
272
    - update document
bind_filter argument is chan...
yuki-kimoto authored on 2009-11-19
273
0.0601
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
274
    - bind_filter argument is changed to ($value, $key, $dbi, $infos) (not backword compatible)
275
    - fetch_filter argument is changed to ($value, $key, $dbi, $infos) (not backword compatible)
276
    - run_transaction argument is changed to ($dbi)
update document
yuki-kimoto authored on 2009-11-17
277
0.0502
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
278
    - update document
packaging one directory
yuki-kimoto authored on 2009-11-16
279
0.0501
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
280
    - packaging DBIx::Custom::Result DBIx::Custom::Query DBIx::Custom::MySQL DBIx::Custom::SQLite DBIx::Custom::SQL::Template 
packaging one directory
yuki-kimoto authored on 2009-11-16
281
0.0401
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
282
    - catch up with DBIx::Custom::Result version up
packaging one directory
yuki-kimoto authored on 2009-11-16
283
0.0301
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
284
    - exchange filter argument 'key', 'value' (not backword compatible)
packaging one directory
yuki-kimoto authored on 2009-11-16
285
0.0201
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
286
    - rename tranzaction to transaction
287
    - add filter_off
packaging one directory
yuki-kimoto authored on 2009-11-16
288
0.0101
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
289
    - First release