Showing 1 changed files with 29 additions and 5 deletions
+29 -5
lib/DBIx/Custom/Guide.pod
... ...
@@ -11,15 +11,39 @@ This module have the following features.
11 11
 
12 12
 =over 4
13 13
 
14
-=item * Execute INSERT, UPDATE, DELETE, SELECT statement easily
14
+=item *
15 15
 
16
-=item * You can specify bind values by hash reference
16
+Execute C<insert>, C<update>, C<delete>, or C<select> statement easily
17 17
 
18
-=item * Filtering by data type. and you can set filter to any column
18
+=item *
19 19
 
20
-=item * Creating where clause and order by clause flexibly
20
+Create C<where> clause flexibly
21 21
 
22
-=item * Support model
22
+=item *
23
+
24
+Named place holder support
25
+
26
+=item *
27
+
28
+Model support
29
+
30
+=item *
31
+
32
+Connection manager support
33
+
34
+=item *
35
+
36
+Choice your favorite relational database management system,
37
+C<MySQL>, C<SQLite>, C<PostgreSQL>, C<Oracle>,
38
+C<Microsoft SQL Server>, C<Microsoft Access>, C<DB2> or anything, 
39
+
40
+=item *
41
+
42
+Filtering by data type or column name(EXPERIMENTAL)
43
+
44
+=item *
45
+
46
+Create C<order by> clause flexibly(EXPERIMENTAL)
23 47
 
24 48
 =back
25 49