DBIx-Custom / Changes /
Newer Older
798 lines | 33.013kb
- removed EXPERIMENTAL statu...
Yuki Kimoto authored on 2012-03-19
1
0.25
2
  - added DBIX_CUSTOM_SUPPRESS_DEPRECTION environment varaible
3
    to suppress deprecation warnings
4
  - removed EXPERIMENTAL status from DBIx::Custom::Result::kv method
5
  - removed EXPERIMETNAL status from DBIx::Custom::Result::flat method
6
  - renamed DBIx::Custom::Result::column method to values method
7
    DBIx::Custom::Result::column is deprecated.
support model full-qualified...
Yuki Kimoto authored on 2012-03-01
8
0.24
renamed setup_model database...
Yuki Kimoto authored on 2012-03-02
9
  - support schema-qualified table name
10
  - added EXPERIMENTAL default_schema attribute for postgresql not to conflict
11
    same table name.
- DBIx::Custom::Mapper::map ...
Yuki Kimoto authored on 2012-02-29
12
0.23
13
  - DBIx::Custom::Mapper::map method support
14
    {value => '%<value>%'} syntax
added EXPERIMENTAL DBIx::Cus...
Yuki Kimoto authored on 2012-02-28
15
0.22
16
  - added EXPERIMENTAL DBIx::Custom::Result::kv method
17
  - added EXPERIMENTAL DBIx::Custom::Result::flat method
cleanup
Yuki Kimoto authored on 2012-02-28
18
  - added where => {name => [val1, val2, val3]} support
- added where => {name => [v...
Yuki Kimoto authored on 2012-02-28
19
    this is expaned to "where name in (val1, val2, val3)"
- "created_at" option is ren...
Yuki Kimoto authored on 2012-02-11
20
0.2111
updated Changes
Yuki Kimoto authored on 2012-02-11
21
  - "created_at" option is renamed to "ctime" option.
22
    "created_at" is DEPRECATED!
23
  - "updated_at" option is renamed to "mtime" option.
24
    "updated_at" is DEPRECATED!
added EXPERIMETNAL aysnc_con...
Yuki Kimoto authored on 2012-02-10
25
0.2110
- "created_at" option is ren...
Yuki Kimoto authored on 2012-02-11
26
  - Perl 5.008007 is required.
added EXPERIMETNAL aysnc_con...
Yuki Kimoto authored on 2012-02-10
27
  - added EXPERIMETNAL aysnc_conf attribute
28
0.2109
select method can be called ...
Yuki Kimoto authored on 2012-02-07
29
  - select method can be called even if table name is not specified
added async asccess and stat...
Yuki Kimoto authored on 2012-01-29
30
0.2108
31
  - added async database access support using AnyEvent
fixed change
Yuki Kimoto authored on 2012-01-29
32
    and added "async" option to execute method(EXPERIMENTAL)
33
  - EXPERIMETNAL "statement" option is replcaed "select" option
- removed EXPERIMENTAL statu...
Yuki Kimoto authored on 2012-01-24
34
0.2107
35
  - removed EXPERIMENTAL status from the following methods and functinalities.
36
      DBIx::Custom::Result::value method
37
      DBIx::Custom::Result::column method
38
      DBIx::Custom::insert method "bulk_insert" option
39
      DBIx::Custom::insert method "multiplue insert functinality"
40
      DBIx::Custom::select method "first argument is received as column option"
41
      DBIx::Custom::Model::created_at attribute
42
      DBIx::Custom::Model::updated_at attribute
43
  - added EXPERIMENTAL DBIx::Custom::execute method "prepare_attr" option
44
  - added EXPERIMETNAL DBIx::Custom::execute method "statement" option
- renamed DBIx::Custom::Resu...
Yuki Kimoto authored on 2012-01-20
45
0.2106
cleanup
Yuki Kimoto authored on 2012-01-20
46
  - renamed DBIx::Custom::Result::fetch_hash_first to fethc_hash_one
47
    because first is misleading name. fethc_hash_first is DEPRECATED!
48
  - renamed DBIx::Custom::Result::fetch_first to fetch_one,
49
    because first is misleading name. fetch_first is DEPRECATED!
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2012-01-14
50
0.2105
cleanup
Yuki Kimoto authored on 2012-01-20
51
  - added EXPERIMENTAL DBIx::Custom::Result::value method
52
  - added EXPERIMENTAL DBIx::Custom::Result::column method
improved bulk_insert perform...
Yuki Kimoto authored on 2011-11-29
53
0.2104
cleanup
Yuki Kimoto authored on 2012-01-20
54
  - improved bulk_insert performance
added EXPERIMENTAL bulk_inse...
Yuki Kimoto authored on 2011-11-27
55
0.2103
cleanup
Yuki Kimoto authored on 2012-01-20
56
  - added EXPERIMENTAL insert bulk_insert option.
- fixed bug that DBIx::Custo...
Yuki Kimoto authored on 2011-11-25
57
0.2102
cleanup
Yuki Kimoto authored on 2012-01-20
58
  - fixed bug that DBIx::Custom::Model count method don't receive model's
59
    attribute
60
  - insert method can receive multipule parameters, this is very fast, this is experimental
- fixed update_or_insert bug...
Yuki Kimoto authored on 2011-11-18
61
0.2101
cleanup
Yuki Kimoto authored on 2012-01-20
62
  - fixed small default_bind_filter bug
63
  - micro optimization
64
  - select method can receive odd number argument. In that case first argument
65
    is column option.
66
  - fixed update_or_insert bug that when parameter don't contain any key-value
67
    this method throw exception.
cleanup
Yuki Kimoto authored on 2011-11-16
68
0.2100
cleanup
Yuki Kimoto authored on 2012-01-20
69
  - micro optimization
70
  - DBIx::Custom::Query is DEPRECATED!
- fixed bug DBIx::Custom::Re...
Yuki Kimoto authored on 2011-11-08
71
0.1747
cleanup
Yuki Kimoto authored on 2012-01-20
72
  - fixed bug DBIx::Custom::Result fetch_hash_multi throw warnings
73
    which cannnot fetch any more
74
  - fixed bug DBIx::Custom::Result fetch_hash_multi throw warnings
75
    which cannnot fetch any more
micro optimization
Yuki Kimoto authored on 2011-11-07
76
0.1746
cleanup
Yuki Kimoto authored on 2012-01-20
77
  - micro optimization
- DBIx::Custom::Result filte...
Yuki Kimoto authored on 2011-11-03
78
0.1745
cleanup
Yuki Kimoto authored on 2012-01-20
79
  - DBIx::Custom::Order prepend method receiving array reference
80
    is DEPRECATED!
81
  - DBIx::Custom::QueryBuilder class is DEPRECATED!
82
  - added DBIX_CUSTOM_DISABLE_MODEL_EXECUTE environment variable
83
  - added DBIX_CUSTOM_TAG_PARSE environment variable
84
  - tag_parse attribute is DEPRECATED! 
85
  - show_datatype method return lower case string
86
  - show_typename method return lower case string
87
  - DBIx::Custom::Result filter_on method is DEPRECATED!
88
  - DBIx::Custom::Result filter_off method is DEPRECATED!
- id option work if id count...
Yuki Kimoto authored on 2011-11-03
89
0.1744
cleanup
Yuki Kimoto authored on 2012-01-20
90
  - id option work if id count is lower than primary key count.
91
  - removed EXPERIMETNAL status from update_or_insert method and
92
    DBIx::Custom::Model's update_or_insert method
93
  - removed EXPERIMENTAL status from reuse option
94
  - removed EXPERIMENTAL status from update_at option and created_at option
95
  - removed EXPERIMETNAL status from now attribute
test cleanup
Yuki Kimoto authored on 2011-11-01
96
0.1743
cleanup
Yuki Kimoto authored on 2012-01-20
97
  - DBIx::Custom::Model execute method is DEPRECATED!
98
  - fixed bug that update_all can't receive parameter as first argument
99
  - fixed bug that delete_all can't receive parameter as first argument
100
  - fixed where clause parsing bug when time(like 00:00:00) contain
test cleanup
Yuki Kimoto authored on 2011-11-01
101
0.1742
cleanup
Yuki Kimoto authored on 2012-01-20
102
  - fixed update_or_insert method bug
103
  - micro optimization
micro optimization
Yuki Kimoto authored on 2011-10-31
104
0.1741
cleanup
Yuki Kimoto authored on 2012-01-20
105
  - added EXPERIMENTAL update_or_insert to DBIx::Custom::Model
update_or_insert method's re...
Yuki Kimoto authored on 2011-10-27
106
0.1740
cleanup
Yuki Kimoto authored on 2012-01-20
107
  - EXPERIMENTAL update_or_insert need id and primary_key option
108
    and added option option
109
  - insert method created_at and updated_at option can receive scalar reference
110
  - update method updated_at option can receive scalar reference
111
  - select column option [COLUMN => ALIAS] syntax is DEPRECATED!
112
  - added EXPERIMENTAL q method
113
  - execute method id option is DEPRECATED!
- insert timestamp option is...
Yuki Kimoto authored on 2011-10-25
114
0.1739
cleanup
Yuki Kimoto authored on 2012-01-20
115
  - insert timestamp option is DEPRECATED!
116
    use created_at option with now attribute
117
  - update timestamp option is DEPRECATED!
118
    use updated_at option wieh now attribute
119
  - insert_timestamp method is DEPRECATED!
120
    use now method
121
  - update_timestamp method is DEPRECATED!
122
    use use now method
123
  - added EXPEREIMTNAL now method
124
  - added EXPERIMENTAL insert created_at option
125
  - added EXPERIMETNAL insert updated_at option
126
  - added EXPERIMETNAL update updated_at option
127
  - added new timestamp system using the above methods and options
- insert method id value is ...
Yuki Kimoto authored on 2011-10-25
128
0.1738
cleanup
Yuki Kimoto authored on 2012-01-20
129
  - micro optimization
130
  - removed example that query pass execute method in documentation
131
    this is many bug reason much more than I have expected
132
    and passing query to execute method is DEPRECATED!
133
  - insert method id value is not copied to parameter
134
    if the key exists in parameter
fixed DEBUG messsage bug
Yuki Kimoto authored on 2011-10-24
135
0.1737
cleanup
Yuki Kimoto authored on 2012-01-20
136
  - micro optimization
137
  - fixed DEBUG messsage bug
micro optimization
Yuki Kimoto authored on 2011-10-23
138
0.1736
cleanup
Yuki Kimoto authored on 2012-01-20
139
  - micro optimization
micro optimization
Yuki Kimoto authored on 2011-10-23
140
0.1735
cleanup
Yuki Kimoto authored on 2012-01-20
141
  - added EXPERIMENTAL reuse_query option to execute method
micro optimization
Yuki Kimoto authored on 2011-10-23
142
0.1734
cleanup
Yuki Kimoto authored on 2012-01-20
143
  - moved DBIx::Custom::Guide to wiki
- removed argument checking ...
Yuki Kimoto authored on 2011-10-21
144
0.1733
cleanup
Yuki Kimoto authored on 2012-01-20
145
  - select method join option can receive string.
146
  - removed DEPRECATED status of select param option
147
  - select method where_param option is DEPRECATED!
148
    use where => [STRING, PARAM] syntax instead
149
  - delete method where_param option is DEPRECATED!
150
    use where => [STRING, PARAM] syntax instead
151
  - update method where_param option is DEPRECATED!
152
    use where => [STRING, PARAM] syntax instead
153
  - update method param option is DEPRECATED!
154
  - insert method param option is DEPRECATED!
155
  - removed argument checking logic because in database performance is more
156
    important.
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-10-19
157
0.1732
cleanup
Yuki Kimoto authored on 2012-01-20
158
  - removed EXPERIMETNAL flag from like_value
- removed DEPRECATED status ...
Yuki Kimoto authored on 2011-10-11
159
0.1731
cleanup
Yuki Kimoto authored on 2012-01-20
160
  - removed DEPRECATED status from insert method's id option
161
  - renamed EXPERIMENTAL insert_or_update to update_or_insert
fixed id option bug when col...
Yuki Kimoto authored on 2011-10-10
162
0.1730
cleanup
Yuki Kimoto authored on 2012-01-20
163
  - added EXPERIMENTAL insert_or_update method
164
  - method method of DBIx::Custom::Model is renamed to helper,
165
    method is DEPRECATED!
166
  - method method is renamed to helper, method is DEPRECATED!
167
  - insert method's id option is DEPRECATED!
168
  - fixed id option bug when column name is anbiguous
- dbi_option attribute is re...
Yuki Kimoto authored on 2011-10-05
169
0.1729
cleanup
Yuki Kimoto authored on 2012-01-20
170
  - dbi_option attribute is renamed to option, dbi_option is DEPRECATED!
171
  - default_dbi_option is renamed to default_option, default_dbi_option
172
    is DEPRECATED!
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
173
0.1728
cleanup
Yuki Kimoto authored on 2012-01-20
174
  - added {key => ..., value => ...} syntax to DBIx::Custom::Mapper map method
175
    ,and argument of string and code reference is DEPRECATED!
176
  - update_param is DEPRECATED, use assing_clause instead.
177
  - assing_param is renamed to assing_clause, assing_param is DEPRECATED!
178
  - insert_param is renamed to values_clause, insert_param is DEPRECATED!
- update_param is DEPRECATED...
Yuki Kimoto authored on 2011-10-04
179
0.1727
cleanup
Yuki Kimoto authored on 2012-01-20
180
  - improved join clause parsing
improved join clause parsing
Yuki Kimoto authored on 2011-09-30
181
0.1726
cleanup
Yuki Kimoto authored on 2012-01-20
182
  - improved join clause parsing
improved join clause parsing
Yuki Kimoto authored on 2011-09-27
183
0.1725
cleanup
Yuki Kimoto authored on 2012-01-20
184
  - improved join clause parsing
sqlfilter option is renamed ...
Yuki Kimoto authored on 2011-09-16
185
0.1724
cleanup
Yuki Kimoto authored on 2012-01-20
186
  - added EXPERIMENTAL like_value method to DBIx::Custom
187
  - sqlfilter option is renamed to after_build_sql, sqlfilter is DEPRECATED!
188
  - removed EXPERIMENTAL flag from DBIx::Custom::Mapper
189
  - removed EXPERIMENTAL flag from the following DBIx::Custom methods
190
  insert_timestamp, mapper, update_timestamp
191
  - removed EXPERIMENTAL flag from the following DBIx::Custom method's option
192
  timestamp, 
- added EXPERIMENTAL update_...
Yuki Kimoto authored on 2011-09-12
193
0.1723
cleanup
Yuki Kimoto authored on 2012-01-20
194
  - removed EXPERIMENTAL call_dbi method from DBIx::Custom::Model
195
  - removed EXPERIMENTAL map_param method from DBIx::Custom
196
  - removed EXPERIMENTAL the following methods from DBIx::Custom::Where
197
    if, map
198
  - removed EXPERIMENTAL flag from the following DBIx::Custom::Model methods
199
    count, execute
200
  - removed EXPERIMENTAL flag from the following DBIx::Custom::Result mehotds
201
    filter_on, type_rule, type_rule_off, type_rule_on, type_rule1_off,
202
    type_rule1_on, type_rule2_off, type_rule2_on
203
  - removed EXPERIMENTAL flag from the following DBIx::Custom method's options
204
    sqlfilter, type_rule_off, type_rule1_off, type_rule2_off,
205
    table_alias, wrap
206
  - removed EXPERIMENTAL flag from DBIx::Custom::Order
207
  - removed EXPERIMETNAL flag from the following DBIx::Custom methods
208
    exclude_table, user_column_info,
209
    user_table_info, available_datatype, available_typename,
210
    assign_param, count, get_column_info, get_table_info
211
    order, show_datatype, show_typename methods, show_tables, type_rule,
212
  - added EXPERIMENTAL update_timestamp method to DBIx::Custom
213
  - added EXPERIMENTAL insert_timestamp method to DBIx::Custom
214
  - removed EXPERIMENTAL timestamp attribute from DBIx::Custom
- added EXPERIMENTAL pass at...
Yuki Kimoto authored on 2011-09-02
215
0.1722
cleanup
Yuki Kimoto authored on 2012-01-20
216
  - added EXPERIMENTAL timestamp option to DBIx::Custom insert
217
    and update method.
218
  - added EXPERIMENTAL timestamp attribute to DBIx::Custom
219
  - added {KEY => {OPTION_KEY => OPTION_VALUE} syntax
220
    to EXPERIMENTAL DBIx::Custom::Mapper map method
221
  - added {KEY => sub { VALUE }} syntax
222
    to EXPERIMETNAL DBIx::Custom::Mapper map method
223
  - removed EXPERIMENTAL wrap option from select method
224
  - insert_param, update_param, and assign param can
225
    be wrapeed by DB function by C<wrap> option
226
  - added EXPERIMENTAL pass attribute to DBIx::Custom::Mapper
227
  - removed EXPERIMENTAL ignore attribute from DBIx::Custom::Mapper
added DBIx::Custom::Mapper
Yuki Kimoto authored on 2011-08-26
228
0.1721
cleanup
Yuki Kimoto authored on 2012-01-20
229
  - added EXPERIMENTAL DBIx::Custom::Mapper class
230
  - added EXPERIMENTAL mapper method to DBIx::Custom
- removed placeholder count ...
Yuki Kimoto authored on 2011-08-22
231
0.1720
cleanup
Yuki Kimoto authored on 2012-01-20
232
  - removed placeholder count check
233
  - added EXPERIMENTAL execute method's id and primary key option.
234
  - added EXPERIMENTAL DBIx::Custom::Model execute method
- removed placeholder count ...
Yuki Kimoto authored on 2011-08-22
235
0.1719
cleanup
Yuki Kimoto authored on 2012-01-20
236
  - DBIx::Custom support Microsoft Access through DBD::ODBC
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-08-20
237
0.1718
cleanup
Yuki Kimoto authored on 2012-01-20
238
  - added EXPERIMENTAL DBIx::Custom::Model call_dbi method
239
  - added EXPERIMENTAL count method
240
  - added EXPERIMENTAL DBIx::Custom::Model count method
added EXPERIMENTAL find_tabl...
Yuki Kimoto authored on 2011-08-16
241
0.1717
cleanup
Yuki Kimoto authored on 2012-01-20
242
  - added EXPERIMENTAL get_table_info
243
  - added EXPERIMETNAL user_table_info attribute
244
    and each_table find table info in user_table_info if set.
245
  - added EXPERIMENTAL get_column_info
246
  - added EXPERIMENTAL user_column_info attribute
247
    and each_column find column info in user_column_info if set.
248
  - connector is automatically set to DBDx::Connector object
249
    if connector is set to 1 when connect method is called.
test cleanup
Yuki Kimoto authored on 2011-08-15
250
0.1716
cleanup
Yuki Kimoto authored on 2012-01-20
251
  - fixed bugs when using DBD::Oracle.
252
  - added EXPERIMENTAL show_tables method.
updated pod
Yuki Kimoto authored on 2011-08-14
253
0.1715
cleanup
Yuki Kimoto authored on 2012-01-20
254
  - default quote attribute in ODBC driver is changed to "[]"
255
  - fixed some bug in Microsoft SQL Server
256
  - added EXPERIMENTAL execute method sqlfilter option
cleanup
Yuki Kimoto authored on 2011-08-13
257
0.1714
cleanup
Yuki Kimoto authored on 2012-01-20
258
  - fixed not backword compatible change in 0.1712 query_buider
updated pod
Yuki Kimoto authored on 2011-08-12
259
0.1713
cleanup
Yuki Kimoto authored on 2012-01-20
260
  - fixed memory leak and connection increasing bug when using model.
cleanup test
Yuki Kimoto authored on 2011-08-10
261
0.1712
cleanup
Yuki Kimoto authored on 2012-01-20
262
  - you can set any string as separator
263
  - fixed memory leak and connection increasing bug, and query_buider method return new object.
264
  - added EXPERIMENTAL exclude_table attribute
265
  - added EXPERIMENTAL show_typename method
266
  - added EXPERIMENTAL show_datatype method
added EXPERIMENTAL DBIx::Cus...
Yuki Kimoto authored on 2011-08-09
267
0.1711
cleanup
Yuki Kimoto authored on 2012-01-20
268
  - renamed EXPERIMENTAL available_type_name to available_typename
269
  - renamed EXPERIMENTAL available_data_type to available_datatype
270
  - added EXPERIMENTAL DBIx::Custom::Where if method
271
  - added EXPERIMENTAL DBIx::Custom::Where map method
cleanup
Yuki Kimoto authored on 2011-08-02
272
0.1710
cleanup
Yuki Kimoto authored on 2012-01-20
273
  - use more DBIx::Custom information in sub modules to decrease bugs
274
    (very sorry, this change can't keep backword compatible,
275
     but maybe no effects,
276
     because the attributes is automatically set by DBIx::Custom, not user).
277
  - Fixed fisrt executed where clause failed in some condition.
fixed named placeholder bug ...
Yuki Kimoto authored on 2011-08-01
278
0.1709
cleanup
Yuki Kimoto authored on 2012-01-20
279
  - fixed named placeholder bug and added escape syntax
fixed named placeholder bug ...
Yuki Kimoto authored on 2011-08-01
280
0.1708
cleanup
Yuki Kimoto authored on 2012-01-20
281
  - improved execute method performance
- removed some EXPERIMENTAL ...
Yuki Kimoto authored on 2011-07-30
282
0.1707
cleanup
Yuki Kimoto authored on 2012-01-20
283
  - I call :title named placeholder, stoping calling it parameter
284
  - removed some EXPERIMENTAL status
285
  - fixed performance
cleanup
Yuki Kimoto authored on 2011-07-30
286
0.1706
cleanup
Yuki Kimoto authored on 2012-01-20
287
  - Added execute method's query option document
288
    You can get more performance.
289
  - DBIx::Custom::Query table and filters attribute method and
290
    filter method is DEPRECATED!
291
    because I think query object must have only the information
292
    for statement handle caching.
insert and update method's p...
Yuki Kimoto authored on 2011-07-29
293
0.1705
cleanup
Yuki Kimoto authored on 2012-01-20
294
  - insert and update method's param can set constant value by scalara reference
295
    such as {date => \"NOW()"} This is EXPERIMENTAL.
cleanup
Yuki Kimoto authored on 2011-07-29
296
0.1704
cleanup
Yuki Kimoto authored on 2012-01-20
297
  - added quote method's two character support like []
298
    for Microsoft SQL Server and Access
299
  - added EXPERIMENTAL parameter new syntax :name{operator}
added join new syntax
Yuki Kimoto authored on 2011-07-28
300
0.1703
cleanup
Yuki Kimoto authored on 2012-01-20
301
  - added EXPERIMENTAL join new syntax.
- removed EXPERIMENTAL statu...
Yuki Kimoto authored on 2011-07-26
302
0.1702
cleanup
Yuki Kimoto authored on 2012-01-20
303
  - removed EXPERIMENTAL status of some methods.
304
  - fixed some join bug
added EXPERIMENTAL last_sql ...
Yuki Kimoto authored on 2011-07-11
305
0.1701
cleanup
Yuki Kimoto authored on 2012-01-20
306
  - added DBIx::Cusotm::Order prepend method automatically quoted syntax
307
  - simplified arguments check
308
  - added EXPERIMENTAL each_table method
309
  - select method column option [COLUMN, as => ALIAS] format is DEPRECATED!
310
    changed to [COLUMN => ALIAS]
311
  - added EXPERIMENTAL DBIx::Custom::Result header method
312
  - added EXPERIMENTAL last_sql attribute method
fixed end_filter DEPRECATED ...
Yuki Kimoto authored on 2011-07-01
313
0.1700
cleanup
Yuki Kimoto authored on 2012-01-20
314
  - fixed end_filter DEPRECATED warnings bug
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
315
0.1699
cleanup
Yuki Kimoto authored on 2012-01-20
316
  - added tag_parse attribute.
317
  - added EXPERIMENTAL order method
318
  - added EXPERIMENTAL DBIx::Custom::Order module
319
  - changed backword compatible policy
320
    ------------------------------------------------------------------------
321
    If a functionality is DEPRECATED, you can know it by DEPRECATED warnings
322
    except for attribute method.
323
    You can check all DEPRECATED functionalities by document.
324
    DEPRECATED functionality is removed after five years,
325
    but if at least one person use the functionality and tell me that thing
326
    I extend one year each time you tell me it.
- added EXPERIMENTAL order m...
Yuki Kimoto authored on 2011-06-28
327

            
cleanup
Yuki Kimoto authored on 2012-01-20
328
    EXPERIMENTAL functionality will be changed without warnings.
329
    ------------------------------------------------------------------------
fixed DBIx::Custom::Where to...
Yuki Kimoto authored on 2011-06-27
330
0.1698
cleanup
Yuki Kimoto authored on 2012-01-20
331
  - fixed DBIx::Custom::Where to_string method small bug
332
  - added EXPERIMENTAL execute method table_alias option
added EXPERIMENTAL map_param...
Yuki Kimoto authored on 2011-06-24
333
0.1697
cleanup
Yuki Kimoto authored on 2012-01-20
334
  - added EXPERIMENTAL map_param method
fixed small insert, update, ...
Yuki Kimoto authored on 2011-06-21
335
0.1696
cleanup
Yuki Kimoto authored on 2012-01-20
336
  - added new argument format update, delete, select method where option
337
  - create_query is DEPRECATED! use query option of each method instead.
338
  - added EXPERIMENTAL insert, update, and select method prefix option
339
  - fixed small insert, update, delete, select method id option bug
- changed EXPERIMENTAL DBIx:...
Yuki Kimoto authored on 2011-06-20
340
0.1695
cleanup
Yuki Kimoto authored on 2012-01-20
341
  - changed EXPERIMENTAL DBIx::Custom::Result type_rule_off method argument
342
  - added EXPERIMENTAL DBIx::Custom::Result type_rule_on method
343
  - changed EXPERIMENTAL DBIx::Custom::Result type_rule1_off method argument
344
  - added EXPERIMENTAL DBIx::Custom::Result type_rule1_on method
345
  - changed EXPERIMENTAL DBIx::Custom::Result type_rule2_off method argument
346
  - added EXPERIMENTAL DBIx::Custom::Result type_rule2_on method
347
  - changed EXPERIMENTAL DBIx::Custom::Result filter_off method argument
348
  - added EXPERIMENTAL DBIx::Custom::Result filter_on method
DBIx::Custom::Model type att...
Yuki Kimoto authored on 2011-06-17
349
0.1694
cleanup
Yuki Kimoto authored on 2012-01-20
350
  - EXPERIMENTAL type_rule argument format is changed
351
  - DBIx::Custom::Result type_rule method on setting return self 
352
  - reserved_word_quote is DEPRECATED! this is renamed to quote
353
  - DBIx::Custom::Model type attribute is DEPRECATED!
354
    this is renamed to bind_type.
update pod
Yuki Kimoto authored on 2011-06-15
355
0.1693
cleanup
Yuki Kimoto authored on 2012-01-20
356
  - separate DBIx::Custom type_rule from filter
357
  - DBIx::Custom::Model filter attrribute is DEPRECATED!
358
  - DBIx::Custom::Model name attribute is DEPRECATED!
359
  - removed EXPERIMENTAL DBIx::Custom::Model alias_table
360
  - added DBIx::Custom column method's table option
361
  - separate DBIx::Custom::Result type_rule from filter again
EXPERIMENTAL type_rule_off i...
Yuki Kimoto authored on 2011-06-14
362
0.1692
cleanup
Yuki Kimoto authored on 2012-01-20
363
  - removed EXPERIMENTAL DBIx::Model result_filter
364
  - DBIx::Custom::Result filter override type_rule
365
  - added EXPERIMENTAL DBIx::Custom::Result type_rule
366
  - added EXPERIMENTAL available_type_name method 
367
  - EXPERIMENTAL type_rule_off is not passed form execute method 
368
    to DBIx::Custom::Result object
fixed bug that type_rule fro...
Yuki Kimoto authored on 2011-06-13
369
0.1691
cleanup
Yuki Kimoto authored on 2012-01-20
370
  - DBIx::Custom::Result end_filter, remove_filter, remove_end_filter is DEPRECATED!
371
  - apply_filter is DEPRECATED!
372
  - EXPERIMETAL column method and table_alias think about "-" separator
373
  - EXPERIMTANL column method think about separator
374
  - removed EXPERIMENTAL col method.
375
  - added EXPERIMENTAL separater method
376
  - added EXPERIMENTAL select prefix option.
377
  - fixed bug that data_source DEPRECATED warnings pirnt STDERR
378
  - fixed bug that type_rule from option can't receive filter name
updatedd pod
Yuki Kimoto authored on 2011-06-12
379
0.1690
cleanup
Yuki Kimoto authored on 2012-01-20
380
  - use latest Object::Simple features
changed type_rule arguments ...
Yuki Kimoto authored on 2011-06-12
381
0.1689
cleanup
Yuki Kimoto authored on 2012-01-20
382
  - added EXPERIMENTAL available_data_type
383
  - simplified type_rule
384
  - changed type_rule arguments format
385
  - added EXPERIMENTAL DBIx::Custom::Model result_filter attribute
386
  - added EXPERIMETNAL DBIx::Custom::Result filter_off method
387
  - EXPERIMENTAL type_rule can receive filter name
- fixed bug that model inser...
Yuki Kimoto authored on 2011-06-10
388
0.1688
cleanup
Yuki Kimoto authored on 2012-01-20
389
  - fixed bug that model insert, update, delete select can't
390
    odd number arguments
391
  - improved type_rule method
added type_rule method and f...
Yuki Kimoto authored on 2011-06-09
392
0.1687
cleanup
Yuki Kimoto authored on 2012-01-20
393
  - added EXPERIMENTAL type_rule method
394
  - added EXPERIMENTAL execute() type_rule_off option
395
  - execute method can second argument as parameter
fixed DEPRECATED messages
Yuki Kimoto authored on 2011-06-08
396
0.1686
cleanup
Yuki Kimoto authored on 2012-01-20
397
  - select() column option can receive array reference in array.
398
    This is EXPERIMENTAL
399
  - select() EXPERIMETNAL column option hash format
400
    return table.column, not table__column
401
  - added EXPERIMENTAL col method.
402
  - set reserved_word_quote automatically from driver name
- insert, insert_at, update,...
Yuki Kimoto authored on 2011-06-08
403
0.1685
cleanup
Yuki Kimoto authored on 2012-01-20
404
  - insert_at, update_at, delete_at, select_at is DEPRECATED!
405
    use insert, update, delete, select method and id option.
406
  - insert, insert_at, update, update_at can receive odd number arguments,
407
    first one is parameter.
- update_param_tag is DEPREC...
Yuki Kimoto authored on 2011-06-07
408
0.1684
cleanup
Yuki Kimoto authored on 2012-01-20
409
  - added DBIx::Custom::Result all method, this is alias for fetch_hash_all
410
  - added DBIx::Custom::Result one method, this is alias for fetch_hash_first
411
  - DBIx::Custom::Result fetch_hash_first can recieve argument
412
  - select() column option can receive hash reference. This is EXPERIMENTAL
413
  - update_param_tag is DEPRECATED! use update_param instead.
414
  - insert_param_tag is DEPRECATED! use insert_param instead.
415
  - assing_param_tag is DEPRECATED! use assign_param instead.
416
  - Tag system such as {? title}, {= title} is DEPRECATED!
417
    and added paramter system such as :title.
data_source is DEPRECATED! I...
Yuki Kimoto authored on 2011-06-06
418
0.1683
cleanup
Yuki Kimoto authored on 2012-01-20
419
  - data_source is DEPRECATED! It is renamed to dsn
fixed merge_param bug
Yuki Kimoto authored on 2011-05-23
420
0.1682
cleanup
Yuki Kimoto authored on 2012-01-20
421
  - improved debug message
422
  - fixed merge_param bug
added EXPERIMENTAL assign_ta...
Yuki Kimoto authored on 2011-04-26
423
0.1681
cleanup
Yuki Kimoto authored on 2012-01-20
424
  - added EXPERIMENTAL assign_tag() method
select, update, and delete w...
Yuki Kimoto authored on 2011-04-25
425
0.1680
cleanup
Yuki Kimoto authored on 2012-01-20
426
  - DEPRECATED select() param option, this is renamed to where_param
427
  - added select(), update(), and delete() where_param option
added EXPERIMENTAL select() ...
Yuki Kimoto authored on 2011-04-19
428
0.1679
cleanup
Yuki Kimoto authored on 2012-01-20
429
  - added EXPERIMENTAL select() wrap option to support Oracle ROWNUM
DBIx::Custom::Model filter a...
Yuki Kimoto authored on 2011-04-18
430
0.1678
cleanup
Yuki Kimoto authored on 2012-01-20
431
  - DBIx::Custom::Model filter attribute can receive hash reference
432
  - DBIx::Custom::Where clause attribute can receive clause without column name
433
  - improved error messages
improved table search in col...
Yuki Kimoto authored on 2011-04-12
434
0.1677
cleanup
Yuki Kimoto authored on 2012-01-20
435
  - improved table search in column and join clause
436
  - DEPRECATED table tag. use table option.
fixed test
Yuki Kimoto authored on 2011-04-11
437
0.1676
cleanup
Yuki Kimoto authored on 2012-01-20
438
  - fixed test bug
- removed DEPRECATED DBIx::C...
Yuki Kimoto authored on 2011-04-11
439
0.1675
cleanup
Yuki Kimoto authored on 2012-01-20
440
  - removed DEPRECATED DBIx::Custom::MySQL and DBIx::Custom::SQLite
441
    these implementations remine in https://github.com/yuki-kimoto/DBIx-Custom/wiki
442
    for some users.
443
  - removed EXPERIMENTAL replace().
444
  - removed EXPERIMENTAL mark from many methods.
- removed DEPRECATED DBIx::C...
Yuki Kimoto authored on 2011-04-11
445
0.1674
cleanup
Yuki Kimoto authored on 2012-01-20
446
  - fixed test bug
fixed dbh() method bug:wq
Yuki Kimoto authored on 2011-04-05
447
0.1673
cleanup
Yuki Kimoto authored on 2012-01-20
448
  - fixed dbh() method bug.
change retern value to array...
Yuki Kimoto authored on 2011-04-04
449
0.1672
cleanup
Yuki Kimoto authored on 2012-01-20
450
  - removed EXPERIMENTAL Prefork server safe implementation, my implementation is very buggy.
451
  - added EXPERIMETNAL connector() attribute.
452
  - change retern value to array refrence of EXPERIMENTAL replace()
added environment variable D...
Yuki Kimoto authored on 2011-04-02
453
0,1671
cleanup
Yuki Kimoto authored on 2012-01-20
454
  - added environment variable DBIX_CUSTOM_DEBUG
removed EXPERIMETNAL select(...
Yuki Kimoto authored on 2011-04-01
455
0.1670
cleanup
Yuki Kimoto authored on 2012-01-20
456
  - removed EXPERIMETNAL select() column hash option. it's a little complex.
457
  - added EXPERIMENTAL select() param option.
458
  - added EXPERIMENTAL replace().
removed EXPERIMETNAL select(...
Yuki Kimoto authored on 2011-04-01
459
0.1669
cleanup
Yuki Kimoto authored on 2012-01-20
460
  - renamed update_param to update_param_tag, update_param is DEPRECATED!
461
  - renamed insert_param to insert_param_tag, insert_param is DEPRECATED!
removed EXPERIMETNAL select(...
Yuki Kimoto authored on 2011-04-01
462
0.1668
cleanup
Yuki Kimoto authored on 2012-01-20
463
  - added EXPERIMENTAL update_param no_set option.
464
  - added EXPERIMENTAL reserved_word_quote attribute.
removed from cache() and cac...
Yuki Kimoto authored on 2011-03-29
465
0.1666
cleanup
Yuki Kimoto authored on 2012-01-20
466
  - removed from cache() and cache_method() document for a while and cache() value
467
    become 0 because I find something bug.
468
  - create_model() return model.
469
  - added document of hash filter
470
  - adeed EXPERIMENTAL DBIx::Custom::Model method()
removed EXPERIMETNAL flag fr...
Yuki Kimoto authored on 2011-03-25
471
0.1665
cleanup
Yuki Kimoto authored on 2012-01-20
472
  - removed EXPERIMETNAL flag from insert_at(), update_at(), delete_at(), select_at(), insert_param(), not_exists(), select()'s query option, update_param(), where, table tag, each column, safety_character, DBIx::Where, where().
473
  - added EXPERIMETNAL create_model()
where can recieve array refr...
Yuki Kimoto authored on 2011-03-24
474
0.1664
cleanup
Yuki Kimoto authored on 2012-01-20
475
  - where can recieve array refrence, which contains where cluase and paramter.
cleanup
Yuki Kimoto authored on 2011-03-21
476
0.1663
cleanup
Yuki Kimoto authored on 2012-01-20
477
  - added EXPERIMENTAL type() attribute to DBIx::Custom::Model
478
  - added EXPERIMENTAL bind_param_option can set bind_param option
479
    to insert(), update(), delete(), select(), insert_at(),
480
    update_at(), delete_at(), select_at(), delete_all(), update_all()
cleanup
Yuki Kimoto authored on 2011-03-21
481
0.1662
cleanup
Yuki Kimoto authored on 2012-01-20
482
  - removed EXPERIMENTAL DBIx::Custom::Model column_clause
483
  - added EXPERIMENTAL column()
484
  - added EXPERIMENTAL mycolumn()
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
485
0.1661
cleanup
Yuki Kimoto authored on 2012-01-20
486
  - added EXPERIMENTAL DBIx::Custom::Model table_alias attribute
487
  - added EXPERIMENTAL DBIx::Custom::Model mycolumn()
488
  - added EXPERIMENTAL DBIx::Custom::Model column()
489
  - fixed autoloading bug
490
  - added EXPERIMETNAL select() prepend table option
491
  - added EXPERIMETNAL select() column table option
492
  - added EXPERIMETNAL select() column all option
493
  - removed EXPERIMETNAL select() all_column option
494
  - removed EXPERIMENTAL view()
update pod
Yuki Kimoto authored on 2011-03-13
495
0.1660
cleanup
Yuki Kimoto authored on 2012-01-20
496
  - added EXPERIMENTAL DBIx::Custom::Model view()
497
  - added EXPERIMENTAL view()
498
  - DBIx::Custom::Model inherit DBIx::Custom
499
  - removed EXPERIMETNAL DBIx::Custom::Model method()
500
  - added table choice feature to select() EXPERIMENTAL all_column option 
501
  - removed EXPERIMENTAL DBIx::Custom::Model column attribute for side effect
added select() all_column op...
Yuki Kimoto authored on 2011-03-12
502
0.1659
cleanup
Yuki Kimoto authored on 2012-01-20
503
  - EXPERIMETAL fork safety implementaion.
504
  - removed EXPERIMENTAL selection
505
  - added select() all_column option
- added experimental DBIx::C...
Yuki Kimoto authored on 2011-03-11
506
0.1658
cleanup
Yuki Kimoto authored on 2012-01-20
507
  - added EXPERIMENTAL DBIx::Custom::Model column() prefix option.
508
  - fixed select_at join column invalid bug
509
  - added DBIx::Custom::Model column() attribute 
- remaned experimental safty...
Yuki Kimoto authored on 2011-03-10
510
0.1657
cleanup
Yuki Kimoto authored on 2012-01-20
511
  - remaned EXPERIMENTAL safty_charcter to safty_name
512
  - safty_charcter is changed, set only one character regex.
fixed some select() join opi...
Yuki Kimoto authored on 2011-03-09
513
0.1656
cleanup
Yuki Kimoto authored on 2012-01-20
514
  - fixed some select() join opition bug
remove experimental DBIx::Cu...
Yuki Kimoto authored on 2011-03-08
515
0.1655
cleanup
Yuki Kimoto authored on 2012-01-20
516
  - added EXPERIMENTAL DBIx::Custom::Model join attribute
517
  - added EXPERIMENTAL select() join option
518
  - deprecated select() relation option
519
  - added EXPERIMENTAL update_param and insert_param
520
  - remove EXPERIMENTAL DBIx::Custom::Model relation
remove experimental DBIx::Cu...
Yuki Kimoto authored on 2011-03-08
521
0.1654
cleanup
Yuki Kimoto authored on 2012-01-20
522
  - selection can contain where clause.
- added experimental DBIx::C...
Yuki Kimoto authored on 2011-02-28
523
0.1653
cleanup
Yuki Kimoto authored on 2012-01-20
524
  - added EXPERIMENTAL DBIx::Custom::Result remove_filter()
525
  - added EXPERIMENTAL DBIx::Custom::Result remove_end_filter()
526
  - added EXPERIMENTAL DBIx::Custom::Model insert_at()
527
  - added EXPERIMENTAL insert_at()
528
  - improved error message
- added experimental DBIx::C...
Yuki Kimoto authored on 2011-02-28
529
0.1652
cleanup
Yuki Kimoto authored on 2012-01-20
530
  - all filter can receive array reference and receiving hash reference is DEPRECATED!
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
531
0.1651
cleanup
Yuki Kimoto authored on 2012-01-20
532
  - add EXPERIMENTAL DBIx::Custom::Model filter attribute.
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
533
0.1650
cleanup
Yuki Kimoto authored on 2012-01-20
534
  - add EXPERIMENTAL DBIx::Custom::Model name() attribute
DBIx::Custom::Model select()...
Yuki Kimoto authored on 2011-02-22
535
0.1649
cleanup
Yuki Kimoto authored on 2012-01-20
536
  - add EXPERIMENTAL DBIx::Custom::Model column_clause() method.
537
  - select method column option can receive string.
538
  - DBIx::Custom::Model select() and select_at() think about relation attirbute
add models() attribute
Yuki Kimoto authored on 2011-02-21
539
0.1648
cleanup
Yuki Kimoto authored on 2012-01-20
540
  - add EXPERIMENTAL DBIx::Custom::Model relation() attribute
541
  - add EXPERIMENTAL update_at(), delete_at(), select_at()
542
  - add EXPERIMENTAL setup_model()
543
  - add EXPERIMENTAL DBIx::Custom::Model columns attirbute
544
  - add EXPERIMENTAL DBIx::Custom::Model foreign_key() attribute 
545
  - add EXPERIMENTAL models() attribute
add default_dbi_option()
Yuki Kimoto authored on 2011-02-19
546
0.1647
cleanup
Yuki Kimoto authored on 2012-01-20
547
  - add default_dbi_option()
add feture. all model class ...
Yuki Kimoto authored on 2011-02-18
548
0.1646
cleanup
Yuki Kimoto authored on 2012-01-20
549
  - add feture. all model class in namespace is included by include_model
550
  - rename EXPERIMENTAL include_table to include_model
551
  - rename EXPERIMENTAL table to model
552
  - rename EXPERIMENTAL DBIx::Custom::Table to DBIx::Custom::Model
553
  - remame EXPERIMENTAL DBIx::Custom::Table::name() to DBIx::Custom::Model::table();
removed experimental base_ta...
Yuki Kimoto authored on 2011-02-15
554
0.1645
cleanup
Yuki Kimoto authored on 2012-01-20
555
  - removed EXPERIMENTAL base_table() for class expandability.
556
  - EXPERIMENTAL table() can't set table object any more.
557
  - added EXPERIMENTAL include_table().
update pod
Yuki Kimoto authored on 2011-02-11
558
0.1644
cleanup
Yuki Kimoto authored on 2012-01-20
559
  - update pod
cleanup
Yuki Kimoto authored on 2011-02-09
560
0.1643
cleanup
Yuki Kimoto authored on 2012-01-20
561
  - add EXPERIMENTAL selection option to select()
562
  - add EXPERIMENTAL table tag
563
  - fix bug : filter can't overwirite undef value.
564
  - add EXPERIMENTAL feature to apply_filter(). you can apply end filter.
565
  - add EXPERIMENTAL feature to apply_filter(). TABLE__COLUMN is filterded now.
cleanup
Yuki Kimoto authored on 2011-02-09
566
0.1642
cleanup
Yuki Kimoto authored on 2012-01-20
567
  - removed EXPERIMENTAL DBIx::Custom::Table base() method
568
  - 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
569
0.1641
cleanup
Yuki Kimoto authored on 2012-01-20
570
  - select() where can't receive array reference to prevend SQL injection easily(not backward compatible. sorry. use where() instead)
571
  - added EXPERIMENTAL safety_column_name attribute
572
  - fix SQL injection security hole about column name
autoload DBI method
Yuki Kimoto authored on 2011-01-26
573
0.1640
cleanup
Yuki Kimoto authored on 2012-01-20
574
  - autoload DBI method
575
  - removed EXPERIMENTAL expand
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
576
0.1639
cleanup
Yuki Kimoto authored on 2012-01-20
577
  - improved delete() and update() where option. you can use DBIx::Custom::Where object
578
  - added EXPERIMENTAL not_exists()
renamed experimental DBIx::C...
Yuki Kimoto authored on 2011-01-25
579
0.1638
cleanup
Yuki Kimoto authored on 2012-01-20
580
  - table object call dbi object method if not found method.
581
  - added EXPERIMENTAL base_table attribute and removed EXPERIMENTAL table_class attribute
582
  - renamed helper to method.
583
  - added EXPERIMENTAL DBIx::Custom::Result::stash()
584
  - renamed EXPERIMENTAL DBIx::Custom::Table helper to method
renamed dbi_options to dbi_o...
Yuki Kimoto authored on 2011-01-23
585
0.1637
cleanup
Yuki Kimoto authored on 2012-01-20
586
  - renamed dbi_options to dbi_option. dbi_options is available, but deprecated.
587
  - renamed DBIx::Custom::TagProcessor to DBIx::Custom::Tag, and function names is cleanuped.
588
  - renamed register_tag_processor to register_tag. register_tag_processor is available, but deprecated.
589
  - renamed tag_processors to tags. tag_prosessors is available, but deprecated.
590
  - improved error message
591
  - build all clause if param is undefined.
592
  - each_column callback receive self as first argument.
593
  - removed EXPERIMENTAL txn_scope
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
594
0.1636
cleanup
Yuki Kimoto authored on 2012-01-20
595
  - added tests and cleanup
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
596
0.1635
cleanup
Yuki Kimoto authored on 2012-01-20
597
  - renamed iterate_all_columns to each_column
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
598
0.1634
cleanup
Yuki Kimoto authored on 2012-01-20
599
  - became more useful where method
600
  - changed DBIx::Custom::Where greatly
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
601
0.1633
cleanup
Yuki Kimoto authored on 2012-01-20
602
  - fixed test
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
603
0.1632
cleanup
Yuki Kimoto authored on 2012-01-20
604
  - added EXPERIMENTAL where method
605
  - added EXPERIMENTAL DBIx::Custom::Where.
606
  - removed DBIx::Custom::Or
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
607
0.1631
cleanup
Yuki Kimoto authored on 2012-01-20
608
  - added EXPERIMENTAL DBIx::Custom::Result end_filter method
609
  - EXPERIMENTAL extended select method's where option
610
  - fix select method empty where failed bug
611
  - added EXPERIMENTAL suger method query option
612
  - added EXPERIMENTAL or method
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
613
0.1630
cleanup
Yuki Kimoto authored on 2012-01-20
614
  - fix test bug
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
615
0.1629
cleanup
Yuki Kimoto authored on 2012-01-20
616
  - renamed auto_filter to apply_filter
617
  - changed apply_filter method arguments
618
  - deprecated cache_method
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
619
0.1628
cleanup
Yuki Kimoto authored on 2012-01-20
620
  - remove DBIx::Custom::Model
621
  - move table method and table_class attribute to DBIx::Custom
622
  - added examples
623
  - fixed connect method bug
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
624
0.1627
cleanup
Yuki Kimoto authored on 2012-01-20
625
  - added insert, update, update_all, delete, delete_all, select method to DBIx::Custom::Table
626
  - added EXPERIMENTAL txn_scope
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
627
0.1626
cleanup
Yuki Kimoto authored on 2012-01-20
628
  - simplified DBIx::Custom::Model and DBIx::Custom::Table
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
629
0.1625
cleanup
Yuki Kimoto authored on 2012-01-20
630
  - added EXPERIMENTAL DBIx::Custom::Model and DBIx::Custom::Table
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
631
0.1624
cleanup
Yuki Kimoto authored on 2012-01-20
632
  - added EXPERIMENTAL iterate_all_columns method.
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
633
0.1623
cleanup
Yuki Kimoto authored on 2012-01-20
634
  - added EXPERIMENTAL auto_filter method
635
  - deprecated default_bind_filter and default_fetch_filter because these are global effect.
636
  - changed defautl_bind_filter and default_fetch_filter attributes to methods.
637
  - changed DBIx::Custom::Result default_filter attribute to method
638
  - changed DBIx::Custom::Result filter attribute to method.
639
  - filter_check is always done for usability
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
640
0.1622
cleanup
Yuki Kimoto authored on 2012-01-20
641
  - deprecated DBIx::Custom::SQLite and DBIx::Custom::MySQL
642
  - added dbi_options attribute
643
  - checked attributes passed to connect method
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
644
0.1621
cleanup
Yuki Kimoto authored on 2012-01-20
645
  - cleanup (removed undocumented features)
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
646
0.1620
cleanup
Yuki Kimoto authored on 2012-01-20
647
  - updated document
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
648
0.1619
cleanup
Yuki Kimoto authored on 2012-01-20
649
  - updated document
650
  - added EXPERIMENTAL expand method
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
651
0.1618
cleanup
Yuki Kimoto authored on 2012-01-20
652
  - added helper method
653
  - added begin_work, commit, and rollback method
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
654
0.1617
cleanup
Yuki Kimoto authored on 2012-01-20
655
  - L<DBIx::Custom> is now stable. APIs keep backword compatible in the feature.
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
656
0.1616
cleanup
Yuki Kimoto authored on 2012-01-20
657
  - removed EXPERIMENTAL register_method(), and methods attribute, because it is too magical
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
658
0.1615
cleanup
Yuki Kimoto authored on 2012-01-20
659
  - fixed DBIx::Custom::QueryBuilder build_query() bug
660
  - required Perl 5.008001 to use @CARP_NOT 
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
661
0.1614
cleanup
Yuki Kimoto authored on 2012-01-20
662
  - removed DBIx::Custom::Query start_tag and end tag attributes
663
  - enable escaping '{' and '}' in the source of SQL
664
  - fixed Carp Carp trust relationship
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
665
0.1613
cleanup
Yuki Kimoto authored on 2012-01-20
666
  - added EXPERIMENTAL register_method() method
667
  - added EXPERIMENTAL methods attribute
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
668
0.1612
cleanup
Yuki Kimoto authored on 2012-01-20
669
  - added tests
670
  - updated document
671
  - removed DBIx::Custom::SQLite last_insert_rawid() mehtod(not backword compatible)
672
  - removed DBIx::Custom::MySQL last_insert_id() method(not backword compatible)
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
673
0.1611
cleanup
Yuki Kimoto authored on 2012-01-20
674
  - renamed update tag to update_param
675
  - renamed insert tag to insert_param
676
  - renamed sql_builder to query_builder
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
677
0.1610
cleanup
Yuki Kimoto authored on 2012-01-20
678
  - added filter_check attribute.
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
679
0.1609
cleanup
Yuki Kimoto authored on 2012-01-20
680
  - updated document.
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
681
0.1608
cleanup
Yuki Kimoto authored on 2012-01-20
682
  - update document
683
  - renamed DBIx::Custom::QueryBuilder::TagProcessors functions(not backword compatible)
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
684
0.1607
cleanup
Yuki Kimoto authored on 2012-01-20
685
  - where argument of select() method can specify array(string, parameters)
686
  - renamed build_query() to create_query()(not backword compatible)
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
687
0.1606
cleanup
Yuki Kimoto authored on 2012-01-20
688
  - fix testing bug
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
689
0.1605
cleanup
Yuki Kimoto authored on 2012-01-20
690
  - remove DBIx::Custom::QueryBuilder::tag_syntax()  (not backword compatible)
691
  - renamed DBIx::Custom::TagProcessor to DBIx::Custom::TagProcessors (not backword compatible)
692
  - changed arguments of tag processor(not backword compatible)
693
  - renamed DBIx::Custom::QueryBuilder::TagProcessors functions(not backword compatible)
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
694
0.1604
cleanup
Yuki Kimoto authored on 2012-01-20
695
  - changed argument of tag processor(not backword compatible)
696
  - renamed default_query_filter to default_bind_filter(not backword compatible)
697
  - renamed DBIx::Custom::SQLTemplate to DBIx::Custom::SQLBuilder(not backword compatible)
698
  - renamed create_query to build_query(not backword compatible)
699
  - renamed sql_template to sql_builder(not backword compatible)
700
  - removed DESTROY method(not backword compatible)
701
  - removed disconnect method(not backword compatible)
702
  - fixed DBIx::Custom::MySQL connect_memory
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
703
0.1603
cleanup
Yuki Kimoto authored on 2012-01-20
704
  - removed DBIx::Custom commit method (not backword compatible)
705
  - removed DBIx::Custom rollback method (not backword compatible)
706
  - removed DBIx::Custom auto_commit method (not backword compatible)
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
707
0.1602
cleanup
Yuki Kimoto authored on 2012-01-20
708
  - added cache_method attribute
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
709
0.1601
cleanup
Yuki Kimoto authored on 2012-01-20
710
  - added cache attribute
711
  - select, insert, update, update_all, delete, delete_all, execute only receive hash argument(not backword compatible)
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
712
0.1503
cleanup
Yuki Kimoto authored on 2012-01-20
713
  - removed reconnect method
714
  - removed connected method
715
  - removed reconnect_memroy method
716
  - renamed fetch_single to fetch_first
717
  - renamed fetch_hash_single to fetch_hash_first
718
  - updated document
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
719
0.1502
cleanup
Yuki Kimoto authored on 2012-01-20
720
  - added commit method
721
  - added rollback method
722
  - changed select argument, added relation option
723
  - moved host attribute to DBIx::Custom::MySQL
724
  - moved port attribute to DBIx::Custom::MySQL
725
  - moved database attribute to DBIx::Custom::MySQL and DBIx::Custom::SQLite
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
726
0.1501
cleanup
Yuki Kimoto authored on 2012-01-20
727
  - removed register_format()
728
  - removed formats()
729
  - removed run_transaction()
730
  - removed create_table()
731
  - removed drop_table()
732
  - changed select() arguments
733
  - changed insert() arguments
734
  - changed update() arguments
735
  - changed update_all() arguments
736
  - changed delete() arguments
737
  - changed delete_all() arguments
738
  - changed execute() arguments
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
739
0.1402
cleanup
Yuki Kimoto authored on 2012-01-20
740
  - remove finish(), error()
741
  - can receive code ref to filter()
742
  - renamed resist to register
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
743
0.1401
cleanup
Yuki Kimoto authored on 2012-01-20
744
  - renamed fetch_rows to fetch_multi
745
  - renamed fetch_hash_rows to fetch_hash_multi
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
746
0.1301
cleanup
Yuki Kimoto authored on 2012-01-20
747
  - Changed many(not backword compatible)
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
748
0.1201
cleanup
Yuki Kimoto authored on 2012-01-20
749
  - Changed many(not backword compatible)
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
750
0.1101
cleanup
Yuki Kimoto authored on 2012-01-20
751
  - rename DBIx::Custom::SQLite last_insert_id to last_insert_rowid
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
752
0.1001
cleanup
Yuki Kimoto authored on 2012-01-20
753
  - remove run_transaction().
754
  - add transaction() and DBIx::Custom::Transaction
755
  - rename fetch_first to fetch_single
756
  - rename fetch_hash_first to fetch_hash_single
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
757
0.0906
cleanup
Yuki Kimoto authored on 2012-01-20
758
  - fix some bug
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
759
0.0905
cleanup
Yuki Kimoto authored on 2012-01-20
760
  - catch up with Object::Simple update
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
761
0.0904
cleanup
Yuki Kimoto authored on 2012-01-20
762
  - cleanup
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
763
0.0903
cleanup
Yuki Kimoto authored on 2012-01-20
764
  - catch up with Object::Simple update
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
765
0.0902
cleanup
Yuki Kimoto authored on 2012-01-20
766
  - cleanup
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
767
0.0901
cleanup
Yuki Kimoto authored on 2012-01-20
768
  - DBIx::Basic filter 'encode_utf8' utf8::upgrade process is deleted
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
769
0.0801
cleanup
Yuki Kimoto authored on 2012-01-20
770
  - add 'create_table', 'drop_table' methods
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
771
0.0701
cleanup
Yuki Kimoto authored on 2012-01-20
772
  - rename sql_template to sql_tmpl (not backword compatible)
773
  - rename dbi_options to options (not backword compatible)
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
774
0.0605
cleanup
Yuki Kimoto authored on 2012-01-20
775
  - fix encode_utf8 filter
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
776
0.0604
cleanup
Yuki Kimoto authored on 2012-01-20
777
  - fix timeformat tests
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
778
0.0603
cleanup
Yuki Kimoto authored on 2012-01-20
779
  - fix cache system bug
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
780
0.0602
cleanup
Yuki Kimoto authored on 2012-01-20
781
  - update document
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
782
0.0601
cleanup
Yuki Kimoto authored on 2012-01-20
783
  - bind_filter argument is changed to ($value, $key, $dbi, $infos) (not backword compatible)
784
  - fetch_filter argument is changed to ($value, $key, $dbi, $infos) (not backword compatible)
785
  - run_transaction argument is changed to ($dbi)
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
786
0.0502
cleanup
Yuki Kimoto authored on 2012-01-20
787
  - update document
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
788
0.0501
cleanup
Yuki Kimoto authored on 2012-01-20
789
  - packaging DBIx::Custom::Result DBIx::Custom::Query DBIx::Custom::MySQL DBIx::Custom::SQLite DBIx::Custom::SQL::Template 
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
790
0.0401
cleanup
Yuki Kimoto authored on 2012-01-20
791
  - catch up with DBIx::Custom::Result version up
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
792
0.0301
cleanup
Yuki Kimoto authored on 2012-01-20
793
  - exchange filter argument 'key', 'value' (not backword compatible)
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
794
0.0201
cleanup
Yuki Kimoto authored on 2012-01-20
795
  - rename tranzaction to transaction
796
  - add filter_off
- added DBIx::Custom::Result...
Yuki Kimoto authored on 2011-06-07
797
0.0101
cleanup
Yuki Kimoto authored on 2012-01-20
798
  - First release