objective-c-sql-query-builder
Public Member Functions | Protected Attributes
ZIMSqlInsertStatement Class Reference

#import <ZIMSqlInsertStatement.h>

Inheritance diagram for ZIMSqlInsertStatement:
<ZIMSqlStatement> <ZIMSqlDataManipulationCommand> ZIMSqlUpsertStatement

List of all members.

Public Member Functions

(void) - into:
(void) - column:value:
(NSString *) - statement
(id) - init [implementation]

Protected Attributes

NSString_table
NSMutableDictionary * _column

Detailed Description

Discussion:
This class represents an SQL insert statement.
Updated:
2011-07-15
See also:
http://www.sqlite.org/lang_insert.html

Member Function Documentation

- (void) column: (NSString *)  column
value: (id)  value 
Signature:
column:value:
Discussion:
This method will add a column/value pair to the SQL statement.
Parameters:
columnThe column where the value will be inserted.
valueThe value to be inserted.
Updated:
2011-10-30
- (instancetype) init [implementation]

Reimplemented in ZIMSqlUpsertStatement.

- (void) into: (NSString *)  table
Signature:
into:
Discussion:
This method will set the table used in the SQL statement.
Parameters:
tableThe table that will be used in the SQL statement.
Updated:
2011-10-30
- (NSString *) statement
Signature:
statement
Discussion:
This method will return the SQL statement.
Returns:
The SQL statement that was constructed.
Updated:
2011-10-19

Reimplemented from <ZIMSqlStatement>.

Reimplemented in ZIMSqlUpsertStatement.


Member Data Documentation

- (NSMutableDictionary*) _column [protected]
- (NSString*) _table [protected]

The documentation for this class was generated from the following files:
 All Classes Files Functions Variables Properties Defines