{ "id": "64151", "key": "TIMOB-3519", "fields": { "issuetype": { "id": "2", "description": "A new feature of the product, which has yet to be developed.", "name": "New Feature", "subtask": false }, "project": { "id": "10153", "key": "TIMOB", "name": "Titanium SDK/CLI", "projectCategory": { "id": "10100", "description": "Titanium and related SDKs used in application development", "name": "Client" } }, "fixVersions": [ { "id": "11244", "name": "Release 1.7.0", "archived": true, "released": true, "releaseDate": "2011-06-13" }, { "id": "11251", "name": "Sprint 2011-16", "archived": true, "released": true, "releaseDate": "2011-04-25" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2011-04-27T14:53:39.000+0000", "created": "2011-04-15T03:46:12.000+0000", "priority": { "name": "Low", "id": "4" }, "labels": [ "android", "feature", "release-1.7.0" ], "versions": [], "issuelinks": [ { "id": "10304", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "64806", "key": "TIMOB-3735", "fields": { "summary": "Confirm TIMOB-3519", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "priority": { "name": "High", "id": "2" }, "issuetype": { "id": "5", "description": "The sub-task of the issue", "name": "Sub-task", "subtask": true } } } } ], "assignee": { "name": "dthorp", "key": "dthorp", "displayName": "Don Thorp", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2011-04-27T21:59:13.000+0000", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "components": [ { "id": "10202", "name": "Android", "description": "Android Platform" } ], "description": "{html}
ResultSet should allow for retrieving the underlying data from\nthe DB if the author knows what type of data was stored. Get\nmethods for int
, float
,\ndouble
, string
should be added and they\nshould accept a column index or a column name.
\n\nAdd constants to Ti.Database\nFIELD_TYPE_UNKNOWN = 0\nFIELD_TYPE_STRING = 0;\nFIELD_TYPE_INT = 1;\nFIELD_TYPE_FLOAT = 2;\nFIELD_TYPE_DOUBLE = 3;\n\nExtend field, getField, fieldByName, and getFieldByName to take an optional second parameter which is one of the type constants above.\n\ne.g. rs.field(1, Ti.Database.FIELD_TYPE_INT);\n
\n
\nDrillbit tests and APIDoc must be added as well.