Changed IQueryParam to accept any

Parameterized queries can actually work with various  types
This commit is contained in:
François Nguyen 2015-09-24 08:37:48 +02:00
parent 05fae006b5
commit 88b290859e

View File

@ -508,7 +508,7 @@ interface IQueryParam {
/** Name to use in the query */
name: string;
/** Value of the parameter */
value: string;
value: any;
}
/** List of error codes returned by database operations in the RequestCallback and FeedCallback. See the corresponding error message for more details. */