pod cleanup, fixed broken pod links, and new Introduction pod
[dbsrgits/DBIx-Class.git] / TODO
CommitLineData
38e48163 12005-04-16 by mst
2 - set_from_related should take undef
3 - ResultSource objects caching ->resultset causes interesting problems
4 - find why XSUB dumper kills schema in Catalyst (may be Pg only?)
5
bad808ba 62006-03-25 by mst
bad808ba 7 - find a way to un-wantarray search without breaking compat
bad808ba 8 - delay relationship setup if done via ->load_classes
9 - double-sided relationships
bad808ba 10 - make short form of class specifier in relationships work
2b7a4025 11
122006-01-31 by bluefeet
13 - Create a DBIx::Class::FilterColumn to replace inflate/deflate. This
14 component would provide a new syntax for filtering column update and
15 retrieval through a simple syntax. The syntax would be:
16 __PACKAGE__->add_columns(phone => { set=>sub{ ... }, get=>sub{ ... } });
17 We should still support the old inflate/deflate syntax, but this new
18 way should be recommended.
19
2b7a4025 202006-03-18 by bluefeet
21 - Support table locking.
22
133dd22a 232006-03-21 by bluefeet
24 - When subclassing a dbic class make it so you don't have to do
25 __PACKAGE__->table(__PACKAGE__->table()); for the result set to
26 return the correct object type.
27
b35c25df 282006-03-27 by mst
29 Add the ability for deploy to be given a directory and grab <dbname>.sql
30 out of there if available. Try SQL::Translator if not. If none of the above,
31 cry (and die()). Then you can have a script that pre-gens for all available
32 SQLT modules so an app can do its own deploy without SQLT on the target
33 system
34
8ae30bcf 352006-05-25 by mst (TODOed by bluefeet)
36 Add the search attributes "limit" and "rows_per_page".
37 limit: work as expected just like offset does
38 rows_per_page: only be used if you used the page attr or called $rs->page
39 rows: modify to be an alias that gets used to populate either as appropriate,
40 if you haven't specified one of the others
7d9ac7ce 41
ec052c52 422008-10-30 by ribasushi
ec052c52 43 - Rewrite the test suite to rely on $schema->deploy, allowing for seamless
44 testing of various RDBMS using the same tests
ec052c52 45 - Automatically infer quote_char/name_sep from $schema->storage
ec052c52 46 - Fix and properly test chained search attribute merging
31337730 47 - Recursive update() (all code seems to be already available)