GPKGAttributesDao
Objective-C
@interface GPKGAttributesDao : GPKGUserDao
Swift
class GPKGAttributesDao : GPKGUserDao
Attributes DAO for reading attributes user data tables
-
Initialize
Declaration
Objective-C
- (instancetype)initWithDatabase:(GPKGConnection *)database andTable:(GPKGAttributesTable *)table;
Swift
init!(database: GPKGConnection!, andTable table: GPKGAttributesTable!)
Parameters
database
database connection
table
attributes table
Return Value
new attributes dao
-
Get the attributes table
Declaration
Objective-C
- (GPKGAttributesTable *)attributesTable;
Swift
func attributesTable() -> GPKGAttributesTable!
Return Value
attributes table
-
Get the attributes row for the current result in the result set
Declaration
Objective-C
- (GPKGAttributesRow *)row:(GPKGResultSet *)results;
Swift
func row(_ results: GPKGResultSet!) -> GPKGAttributesRow!
Parameters
results
result set
Return Value
attributes row
-
Get the attributes row for the current result in the result set
Declaration
Objective-C
- (GPKGAttributesRow *)attributesRow:(GPKGResultSet *)results;
Swift
func attributesRow(_ results: GPKGResultSet!) -> GPKGAttributesRow!
Parameters
results
result set
Return Value
attributes row
-
Get the attributes row for the row
Declaration
Objective-C
- (GPKGAttributesRow *)rowWithRow:(GPKGRow *)row;
Swift
func row(with row: GPKGRow!) -> GPKGAttributesRow!
Parameters
row
result row
Return Value
attributes row
-
Create a new attributes row
Return Value
attributes row