JDBC Driver for GitHub

Build 22.0.8462

Releases

Lists information about the different releases of a repository.

View-Specific Information

You must specify the UserLogin when executing a SELECT query against this view. You can specify the values in the WHERE clause or as connection properties. A value specified in the WHERE clause takes precedence over the connection property.

If you do not specify a UserLogin value, the driver will use the login name of the authenticated user.

Select

The driver uses the GitHub API to restrict results to the specified UserLogin value.

The driver processes other filters client-side within the driver. You can turn off the client-side execution of the query by setting SupportEnhancedSQL to false in which case any search criteria that refer to other columns will cause an error.

  • UserLogin, RepositoryName, and TagName support the following operator: =
For example, the following queries are processed server side:
SELECT * FROM Releases

SELECT * FROM Releases WHERE UserLogin = 'MyUser' AND RepositoryName = 'MyRepo'

SELECT * FROM Releases WHERE RepositoryName = 'test' AND TagName = 'value8888'

Columns

Name Type OrderBySupport Description
Id [KEY] String The ID of the release.
UserLogin String The login name of the user.
RepositoryName String The name of the repository.
Author String The author's login name of the release.
CreatedAt Datetime True Identifies the date and time when the object was created.
Description String The description of the release.
DescriptionHTML String The description of this release rendered to HTML.
IsDraft Boolean Whether or not the release is a draft.
IsPrerelease Boolean Whether or not the release is a prerelease.
Name String True The title of the release.
PublishedAt Datetime Identifies the date and time when the release was created.
ResourcePath String The HTTP path for this issue.
ShortDescriptionHTML String A description of the release, rendered to HTML without any links in it. Arguments limit (Int) How many characters to return. The default value is 200.
TagName String The name of the release's Git tag.
UpdatedAt Datetime Identifies the date and time when the object was last updated.
Url String The HTTP URL for this issue.

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462