diff --git a/src/finder.h b/src/finder.h index eb8ce78..fc3250f 100644 --- a/src/finder.h +++ b/src/finder.h @@ -967,6 +967,19 @@ public: } + Finder & order_by(const wchar_t * sql) + { + if( out_stream ) + { + (*out_stream) << L" ORDER BY "; + (*out_stream) << sql; + (*out_stream) << ' '; + } + + return *this; + } + + /* * like */