aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2012-07-14 12:04:41 +0000
committerstuconnolly <stuart02@gmail.com>2012-07-14 12:04:41 +0000
commit0e0e65f864a4c14c0336613a00f61704dcebc168 (patch)
treedddf7c17defe779da551d9ac6e16aebf81d74b9f /Frameworks
parent6c1a1acdb2e030b08ccd08dc6eea70b3657ebb4c (diff)
downloadsequelpro-0e0e65f864a4c14c0336613a00f61704dcebc168.tar.gz
sequelpro-0e0e65f864a4c14c0336613a00f61704dcebc168.tar.bz2
sequelpro-0e0e65f864a4c14c0336613a00f61704dcebc168.zip
Comments.
Diffstat (limited to 'Frameworks')
-rw-r--r--Frameworks/QueryKit/Source/QKQuery.m16
1 files changed, 8 insertions, 8 deletions
diff --git a/Frameworks/QueryKit/Source/QKQuery.m b/Frameworks/QueryKit/Source/QKQuery.m
index 08499b8d..35d53102 100644
--- a/Frameworks/QueryKit/Source/QKQuery.m
+++ b/Frameworks/QueryKit/Source/QKQuery.m
@@ -231,8 +231,8 @@ static NSString *QKNoQueryTableException = @"QKNoQueryTable";
/**
* Convenience method for adding a new parameter.
*
- * @param field
- * @param value
+ * @param field The field name of the parameter.
+ * @param value The field value of the parameter.
*/
- (void)addParameter:(NSString *)field operator:(QKQueryOperator)operator value:(id)value
{
@@ -257,8 +257,8 @@ static NSString *QKNoQueryTableException = @"QKNoQueryTable";
/**
* Convenience method for adding a new update parameter.
*
- * @param field
- * @param value
+ * @param field The field name of the update parameter.
+ * @param value The field value of the update parameter.
*/
- (void)addFieldToUpdate:(NSString *)field toValue:(id)value
{
@@ -271,7 +271,7 @@ static NSString *QKNoQueryTableException = @"QKNoQueryTable";
/**
* Adds the supplied field to the query's GROUP BY clause.
*
- * @param field
+ * @param field The field to GROUP BY.
*/
- (void)groupByField:(NSString *)field
{
@@ -281,7 +281,7 @@ static NSString *QKNoQueryTableException = @"QKNoQueryTable";
/**
* Convenience method for adding more than one field to the query's GROUP BY clause.
*
- * @param fields
+ * @param fields An array of fields to GROUP BY.
*/
- (void)groupByFields:(NSArray *)fields
{
@@ -297,8 +297,8 @@ static NSString *QKNoQueryTableException = @"QKNoQueryTable";
/**
* Adds the supplied field to the query's ORDER BY clause.
*
- * @param field
- * @param descending
+ * @param field The field to ORDER BY.
+ * @param descending Indicates whether the ORDER BY should be descending.
*/
- (void)orderByField:(NSString *)field descending:(BOOL)descending
{