added new querybuilder
Showing
1 changed file
with
5 additions
and
0 deletions
| ... | @@ -28,3 +28,8 @@ type QueryBuilder interface { | ... | @@ -28,3 +28,8 @@ type QueryBuilder interface { |
| 28 | Subquery(query string, rename string) string | 28 | Subquery(query string, rename string) string |
| 29 | String() string | 29 | String() string |
| 30 | } | 30 | } |
| 31 | |||
| 32 | func NewQueryBuilder() (qb QueryBuilder) { | ||
| 33 | qb = new(MySQLQueryBuilder) | ||
| 34 | return | ||
| 35 | } | ... | ... |
-
Please register or sign in to post a comment