mirror of
https://gitlab.com/comunic/comunicapiv2
synced 2025-06-20 08:35:17 +00:00
Add ORDER support
This commit is contained in:
@ -11,6 +11,7 @@ export interface QueryInformation {
|
||||
table: string,
|
||||
fields ?: Array<String>,
|
||||
where ?: Object,
|
||||
order ?: string,
|
||||
limit ?: number,
|
||||
}
|
||||
|
||||
@ -87,6 +88,10 @@ export class DatabaseHelper {
|
||||
request = request.substr(0, request.length - 4)
|
||||
}
|
||||
|
||||
// Order (if any)
|
||||
if(info.order)
|
||||
request += " ORDER BY " + info.order + " ";
|
||||
|
||||
// Limit (if any)
|
||||
if(info.limit)
|
||||
request += " LIMIT " + info.limit;
|
||||
|
Reference in New Issue
Block a user