BugComments
Fetch comments for the bug.
Select
- BugId is required to retrieve Bug Comments.
SELECT * FROM BugComments WHERE BugId = '123456000000045005'
Insert
To add a Bug Comment specify the BugId and Comment fields.
INSERT INTO BugComments (BugId, Comment) VALUES ('123456000000045005', 'Test Comment #1')
Delete
Bug Comments can be deleted by providing the Id and issuing a DELETE statement.
DELETE FROM BugComments WHERE BugId = '123456000000045005' AND Id = '123456000000045042'
Columns
| Name | Type | ReadOnly | Description |
| BugId [KEY] | String | False |
Bug Id. |
| Id [KEY] | String | False |
Bug Comment Id. |
| Comment | String | False |
Bug Comment Content. |
| AddedBy | String | False |
Bug Comment Added By. |
| AddedPersonName | String | False |
Bug Comment Added Person Name. |
| CreatedDate | Date | False |
Bug Comment Created Date. |
| CreatedDateTime | Datetime | False |
Bug Comment Created Date Time. |
| UpdatedBy | String | False |
Bug Comment Updated By. |
| UpdatedPerson | String | False |
Bug Comment Updated Person. |
| UpdatedDate | Date | False |
Bug Comment Updated Date. |
| UpdatedDateTime | Datetime | False |
Bug Comment Updated Date Time. |