GPKGSimpleAttributesDao
Objective-C
@interface GPKGSimpleAttributesDao : GPKGUserCustomDao
Swift
class GPKGSimpleAttributesDao : GPKGUserCustomDao
User Simple Attributes DAO for reading user simple attributes data tables
-
Initialize
Declaration
Objective-C
- (instancetype)initWithDao:(GPKGUserCustomDao *)dao;
Swift
init!(dao: GPKGUserCustomDao!)
Parameters
dao
user custom data access object
Return Value
new simple attributes dao
-
Initialize
Declaration
Objective-C
- (instancetype)initWithDao:(GPKGUserCustomDao *)dao andTable:(GPKGSimpleAttributesTable *)simpleAttributesTable;
Swift
init!(dao: GPKGUserCustomDao!, andTable simpleAttributesTable: GPKGSimpleAttributesTable!)
Parameters
dao
user custom data access object
simpleAttributesTable
simple attributes table
Return Value
new simple attributes dao
-
Get the simple attributes table
Declaration
Objective-C
- (GPKGSimpleAttributesTable *)simpleAttributesTable;
Swift
func simpleAttributesTable() -> GPKGSimpleAttributesTable!
Return Value
simple attributes table
-
Get the simple attributes row for the current result in the result set
Declaration
Objective-C
- (GPKGSimpleAttributesRow *)row:(GPKGResultSet *)results;
Swift
func row(_ results: GPKGResultSet!) -> GPKGSimpleAttributesRow!
Parameters
results
result set
Return Value
simple attributes row
-
Create a new simple attributes row
Declaration
Objective-C
- (GPKGSimpleAttributesRow *)newRow;
Swift
func newRow() -> GPKGSimpleAttributesRow!
Return Value
simple attributes row
-
Get the simple attributes rows that exist with the provided ids
Declaration
Objective-C
- (NSArray<GPKGSimpleAttributesRow *> *)rowsWithIds:(NSArray<NSNumber *> *)ids;
Swift
func rows(withIds ids: [NSNumber]!) -> [GPKGSimpleAttributesRow]!
Parameters
ids
list of ids
Return Value
simple attributes rows