1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2024-11-22 13:29:22 +00:00

Add ORDER support

This commit is contained in:
Pierre HUBERT 2019-11-23 18:17:20 +01:00
parent 49ec5a7edd
commit 517e75215b

View File

@ -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;