rekordbox

package
v0.0.0-...-009cde4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 8, 2023 License: MIT Imports: 13 Imported by: 0

Documentation

Overview

Package rekordbox contains generated code for schema 'plaintext.db'.

Index

Constants

This section is empty.

Variables

View Source
var TimestampFormats = []string{

	"2006-01-02 15:04:05.999999999-07:00",
	"2006-01-02T15:04:05.999999999-07:00",
	"2006-01-02 15:04:05.999999999",
	"2006-01-02T15:04:05.999999999",
	"2006-01-02 15:04:05",
	"2006-01-02T15:04:05",
	"2006-01-02 15:04",
	"2006-01-02T15:04",
	"2006-01-02",
}

TimestampFormats are the timestamp formats used by SQLite3 database drivers to store a time.Time in SQLite3.

The first format in the slice will be used when saving time values into the database. When parsing a string from a timestamp or datetime column, the formats are tried in order.

Functions

func Errorf

func Errorf(s string, v ...interface{})

Errorf logs an error message using the package error logger.

func Logf

func Logf(s string, v ...interface{})

Logf logs a message using the package logger.

func SetErrorLogger

func SetErrorLogger(logger interface{})

SetErrorLogger sets the package error logger. Valid logger types:

io.Writer
func(string, ...interface{}) (int, error) // fmt.Printf
func(string, ...interface{}) // log.Printf

func SetLogger

func SetLogger(logger interface{})

SetLogger sets the package logger. Valid logger types:

io.Writer
func(string, ...interface{}) (int, error) // fmt.Printf
func(string, ...interface{}) // log.Printf

Types

type AgentNotification

type AgentNotification struct {
	ID                    nulltype.NullInt64  `json:"id"`                      // ID
	GraphicArea           nulltype.NullInt64  `json:"graphic_area"`            // graphic_area
	TextArea              nulltype.NullInt64  `json:"text_area"`               // text_area
	OsNotification        nulltype.NullInt64  `json:"os_notification"`         // os_notification
	StartDatetime         *Time               `json:"start_datetime"`          // start_datetime
	EndDatetime           *Time               `json:"end_datetime"`            // end_datetime
	DisplayDatetime       *Time               `json:"display_datetime"`        // display_datetime
	Interval              nulltype.NullInt64  `json:"interval"`                // interval
	Category              nulltype.NullString `json:"category"`                // category
	CategoryColor         nulltype.NullString `json:"category_color"`          // category_color
	Title                 nulltype.NullString `json:"title"`                   // title
	Description           nulltype.NullString `json:"description"`             // description
	URL                   nulltype.NullString `json:"url"`                     // url
	Image                 nulltype.NullString `json:"image"`                   // image
	ImagePath             nulltype.NullString `json:"image_path"`              // image_path
	ReadStatus            nulltype.NullInt64  `json:"read_status"`             // read_status
	LastDisplayedDatetime *Time               `json:"last_displayed_datetime"` // last_displayed_datetime
	CreatedAt             Time                `json:"created_at"`              // created_at
	UpdatedAt             Time                `json:"updated_at"`              // updated_at
	// contains filtered or unexported fields
}

AgentNotification represents a row from 'agentNotification'.

func (*AgentNotification) Deleted

func (an *AgentNotification) Deleted() bool

Deleted returns true when the AgentNotification has been marked for deletion from the database.

func (*AgentNotification) Exists

func (an *AgentNotification) Exists() bool

Exists returns true when the AgentNotification exists in the database.

type AgentNotificationLog

type AgentNotificationLog struct {
	ID               nulltype.NullInt64  `json:"id"`                // ID
	GigyaUID         nulltype.NullString `json:"gigya_uid"`         // gigya_uid
	EventDate        nulltype.NullInt64  `json:"event_date"`        // event_date
	ReportedDatetime *Time               `json:"reported_datetime"` // reported_datetime
	Kind             nulltype.NullInt64  `json:"kind"`              // kind
	Value            nulltype.NullInt64  `json:"value"`             // value
	NotificationID   nulltype.NullInt64  `json:"notification_id"`   // notification_id
	Link             nulltype.NullString `json:"link"`              // link
	CreatedAt        Time                `json:"created_at"`        // created_at
	UpdatedAt        Time                `json:"updated_at"`        // updated_at
	// contains filtered or unexported fields
}

AgentNotificationLog represents a row from 'agentNotificationLog'.

func (*AgentNotificationLog) Deleted

func (anl *AgentNotificationLog) Deleted() bool

Deleted returns true when the AgentNotificationLog has been marked for deletion from the database.

func (*AgentNotificationLog) Exists

func (anl *AgentNotificationLog) Exists() bool

Exists returns true when the AgentNotificationLog exists in the database.

type AgentRegistry

type AgentRegistry struct {
	RegistryID nulltype.NullString `json:"registry_id"` // registry_id
	ID1        nulltype.NullString `json:"id1"`         // id_1
	ID2        nulltype.NullString `json:"id2"`         // id_2
	Int1       nulltype.NullInt64  `json:"int1"`        // int_1
	Int2       nulltype.NullInt64  `json:"int2"`        // int_2
	Str1       nulltype.NullString `json:"str1"`        // str_1
	Str2       nulltype.NullString `json:"str2"`        // str_2
	Date1      *Time               `json:"date1"`       // date_1
	Date2      *Time               `json:"date2"`       // date_2
	Text1      nulltype.NullString `json:"text1"`       // text_1
	Text2      nulltype.NullString `json:"text2"`       // text_2
	CreatedAt  Time                `json:"created_at"`  // created_at
	UpdatedAt  Time                `json:"updated_at"`  // updated_at
	// contains filtered or unexported fields
}

AgentRegistry represents a row from 'agentRegistry'.

func (*AgentRegistry) Deleted

func (ar *AgentRegistry) Deleted() bool

Deleted returns true when the AgentRegistry has been marked for deletion from the database.

func (*AgentRegistry) Exists

func (ar *AgentRegistry) Exists() bool

Exists returns true when the AgentRegistry exists in the database.

type Client

type Client struct {
	// contains filtered or unexported fields
}

func NewClient

func NewClient(optionsFilePath string) (*Client, error)

func (*Client) AgentNotificationByID

func (c *Client) AgentNotificationByID(ctx context.Context, id nulltype.NullInt64) (*AgentNotification, error)

AgentNotificationByID retrieves a row from 'agentNotification' as a AgentNotification.

Generated from index 'sqlite_autoindex_agentNotification_1'.

func (*Client) AgentNotificationByStartDatetimeEndDatetime

func (c *Client) AgentNotificationByStartDatetimeEndDatetime(ctx context.Context, startDatetime, endDatetime *Time) ([]*AgentNotification, error)

AgentNotificationByStartDatetimeEndDatetime retrieves a row from 'agentNotification' as a AgentNotification.

Generated from index 'agent_notification_start_datetime_end_datetime'.

func (*Client) AgentNotificationLogByGigyaUIDEventDateKindNotificationID

func (c *Client) AgentNotificationLogByGigyaUIDEventDateKindNotificationID(ctx context.Context, gigyaUID nulltype.NullString, eventDate, kind, notificationID nulltype.NullInt64) ([]*AgentNotificationLog, error)

AgentNotificationLogByGigyaUIDEventDateKindNotificationID retrieves a row from 'agentNotificationLog' as a AgentNotificationLog.

Generated from index 'agent_notification_log_gigya_uid_event_date_kind_notification_id'.

func (*Client) AgentNotificationLogByID

func (c *Client) AgentNotificationLogByID(ctx context.Context, id nulltype.NullInt64) (*AgentNotificationLog, error)

AgentNotificationLogByID retrieves a row from 'agentNotificationLog' as a AgentNotificationLog.

Generated from index 'agentNotificationLog_ID_pkey'.

func (*Client) AgentNotificationLogByReportedDatetimeEventDate

func (c *Client) AgentNotificationLogByReportedDatetimeEventDate(ctx context.Context, reportedDatetime *Time, eventDate nulltype.NullInt64) ([]*AgentNotificationLog, error)

AgentNotificationLogByReportedDatetimeEventDate retrieves a row from 'agentNotificationLog' as a AgentNotificationLog.

Generated from index 'agent_notification_log_reported_datetime_event_date'.

func (*Client) AgentRegistryByID1ID2

func (c *Client) AgentRegistryByID1ID2(ctx context.Context, id1, id2 nulltype.NullString) ([]*AgentRegistry, error)

AgentRegistryByID1ID2 retrieves a row from 'agentRegistry' as a AgentRegistry.

Generated from index 'agent_registry_id_1_id_2'.

func (*Client) AgentRegistryByRegistryID

func (c *Client) AgentRegistryByRegistryID(ctx context.Context, registryID nulltype.NullString) (*AgentRegistry, error)

AgentRegistryByRegistryID retrieves a row from 'agentRegistry' as a AgentRegistry.

Generated from index 'sqlite_autoindex_agentRegistry_1'.

func (*Client) AllAgentNotification

func (c *Client) AllAgentNotification(ctx context.Context) ([]*AgentNotification, error)

func (*Client) AllAgentNotificationLog

func (c *Client) AllAgentNotificationLog(ctx context.Context) ([]*AgentNotificationLog, error)

func (*Client) AllAgentRegistry

func (c *Client) AllAgentRegistry(ctx context.Context) ([]*AgentRegistry, error)

func (*Client) AllCloudAgentRegistry

func (c *Client) AllCloudAgentRegistry(ctx context.Context) ([]*CloudAgentRegistry, error)

func (*Client) AllContentActiveCensor

func (c *Client) AllContentActiveCensor(ctx context.Context) ([]*ContentActiveCensor, error)

func (*Client) AllContentCue

func (c *Client) AllContentCue(ctx context.Context) ([]*ContentCue, error)

func (*Client) AllContentFile

func (c *Client) AllContentFile(ctx context.Context) ([]*ContentFile, error)

func (*Client) AllDjmdActiveCensor

func (c *Client) AllDjmdActiveCensor(ctx context.Context) ([]*DjmdActiveCensor, error)

func (*Client) AllDjmdAlbum

func (c *Client) AllDjmdAlbum(ctx context.Context) ([]*DjmdAlbum, error)

func (*Client) AllDjmdArtist

func (c *Client) AllDjmdArtist(ctx context.Context) ([]*DjmdArtist, error)

func (*Client) AllDjmdCategory

func (c *Client) AllDjmdCategory(ctx context.Context) ([]*DjmdCategory, error)

func (*Client) AllDjmdCloudProperty

func (c *Client) AllDjmdCloudProperty(ctx context.Context) ([]*DjmdCloudProperty, error)

func (*Client) AllDjmdColor

func (c *Client) AllDjmdColor(ctx context.Context) ([]*DjmdColor, error)

func (*Client) AllDjmdContent

func (c *Client) AllDjmdContent(ctx context.Context) ([]*DjmdContent, error)

func (*Client) AllDjmdCue

func (c *Client) AllDjmdCue(ctx context.Context) ([]*DjmdCue, error)

func (*Client) AllDjmdDevice

func (c *Client) AllDjmdDevice(ctx context.Context) ([]*DjmdDevice, error)

func (*Client) AllDjmdGenre

func (c *Client) AllDjmdGenre(ctx context.Context) ([]*DjmdGenre, error)

func (*Client) AllDjmdHistory

func (c *Client) AllDjmdHistory(ctx context.Context) ([]*DjmdHistory, error)

func (*Client) AllDjmdHotCueBanklist

func (c *Client) AllDjmdHotCueBanklist(ctx context.Context) ([]*DjmdHotCueBanklist, error)

func (*Client) AllDjmdKey

func (c *Client) AllDjmdKey(ctx context.Context) ([]*DjmdKey, error)

func (*Client) AllDjmdLabel

func (c *Client) AllDjmdLabel(ctx context.Context) ([]*DjmdLabel, error)

func (*Client) AllDjmdMenuItem

func (c *Client) AllDjmdMenuItem(ctx context.Context) ([]*DjmdMenuItem, error)

func (*Client) AllDjmdMixerParam

func (c *Client) AllDjmdMixerParam(ctx context.Context) ([]*DjmdMixerParam, error)

func (*Client) AllDjmdMyTag

func (c *Client) AllDjmdMyTag(ctx context.Context) ([]*DjmdMyTag, error)

func (*Client) AllDjmdPlaylist

func (c *Client) AllDjmdPlaylist(ctx context.Context) ([]*DjmdPlaylist, error)

func (*Client) AllDjmdProperty

func (c *Client) AllDjmdProperty(ctx context.Context) ([]*DjmdProperty, error)

func (*Client) AllDjmdRecommendLike

func (c *Client) AllDjmdRecommendLike(ctx context.Context) ([]*DjmdRecommendLike, error)

func (*Client) AllDjmdRelatedTrack

func (c *Client) AllDjmdRelatedTrack(ctx context.Context) ([]*DjmdRelatedTrack, error)

func (*Client) AllDjmdSampler

func (c *Client) AllDjmdSampler(ctx context.Context) ([]*DjmdSampler, error)

func (*Client) AllDjmdSongHistory

func (c *Client) AllDjmdSongHistory(ctx context.Context) ([]*DjmdSongHistory, error)

func (*Client) AllDjmdSongHotCueBanklist

func (c *Client) AllDjmdSongHotCueBanklist(ctx context.Context) ([]*DjmdSongHotCueBanklist, error)

func (*Client) AllDjmdSongMyTag

func (c *Client) AllDjmdSongMyTag(ctx context.Context) ([]*DjmdSongMyTag, error)

func (*Client) AllDjmdSongPlaylist

func (c *Client) AllDjmdSongPlaylist(ctx context.Context) ([]*DjmdSongPlaylist, error)

func (*Client) AllDjmdSongRelatedTrack

func (c *Client) AllDjmdSongRelatedTrack(ctx context.Context) ([]*DjmdSongRelatedTrack, error)

func (*Client) AllDjmdSongSampler

func (c *Client) AllDjmdSongSampler(ctx context.Context) ([]*DjmdSongSampler, error)

func (*Client) AllDjmdSongTagList

func (c *Client) AllDjmdSongTagList(ctx context.Context) ([]*DjmdSongTagList, error)

func (*Client) AllDjmdSort

func (c *Client) AllDjmdSort(ctx context.Context) ([]*DjmdSort, error)

func (*Client) AllHotCueBanklistCue

func (c *Client) AllHotCueBanklistCue(ctx context.Context) ([]*HotCueBanklistCue, error)

func (*Client) AllImageFile

func (c *Client) AllImageFile(ctx context.Context) ([]*ImageFile, error)

func (*Client) AllSettingFile

func (c *Client) AllSettingFile(ctx context.Context) ([]*SettingFile, error)

func (*Client) AllUUIDIDMap

func (c *Client) AllUUIDIDMap(ctx context.Context) ([]*UUIDIDMap, error)

func (*Client) Close

func (c *Client) Close()

func (*Client) CloudAgentRegistryByID

func (c *Client) CloudAgentRegistryByID(ctx context.Context, id nulltype.NullString) (*CloudAgentRegistry, error)

CloudAgentRegistryByID retrieves a row from 'cloudAgentRegistry' as a CloudAgentRegistry.

Generated from index 'sqlite_autoindex_cloudAgentRegistry_1'.

func (*Client) CloudAgentRegistryByRbDataStatus

func (c *Client) CloudAgentRegistryByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*CloudAgentRegistry, error)

CloudAgentRegistryByRbDataStatus retrieves a row from 'cloudAgentRegistry' as a CloudAgentRegistry.

Generated from index 'cloud_agent_registry_rb_data_status'.

func (*Client) CloudAgentRegistryByRbLocalDataStatus

func (c *Client) CloudAgentRegistryByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*CloudAgentRegistry, error)

CloudAgentRegistryByRbLocalDataStatus retrieves a row from 'cloudAgentRegistry' as a CloudAgentRegistry.

Generated from index 'cloud_agent_registry_rb_local_data_status'.

func (*Client) CloudAgentRegistryByRbLocalDeleted

func (c *Client) CloudAgentRegistryByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*CloudAgentRegistry, error)

CloudAgentRegistryByRbLocalDeleted retrieves a row from 'cloudAgentRegistry' as a CloudAgentRegistry.

Generated from index 'cloud_agent_registry_rb_local_deleted'.

func (*Client) CloudAgentRegistryByRbLocalUsnID

func (c *Client) CloudAgentRegistryByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*CloudAgentRegistry, error)

CloudAgentRegistryByRbLocalUsnID retrieves a row from 'cloudAgentRegistry' as a CloudAgentRegistry.

Generated from index 'cloud_agent_registry_rb_local_usn__i_d'.

func (*Client) CloudAgentRegistryByUUID

func (c *Client) CloudAgentRegistryByUUID(ctx context.Context, uuid nulltype.NullString) ([]*CloudAgentRegistry, error)

CloudAgentRegistryByUUID retrieves a row from 'cloudAgentRegistry' as a CloudAgentRegistry.

Generated from index 'cloud_agent_registry__u_u_i_d'.

func (*Client) ContentActiveCensorByContentID

func (c *Client) ContentActiveCensorByContentID(ctx context.Context, contentID nulltype.NullString) ([]*ContentActiveCensor, error)

ContentActiveCensorByContentID retrieves a row from 'contentActiveCensor' as a ContentActiveCensor.

Generated from index 'content_active_censor__content_i_d'.

func (*Client) ContentActiveCensorByID

func (c *Client) ContentActiveCensorByID(ctx context.Context, id nulltype.NullString) (*ContentActiveCensor, error)

ContentActiveCensorByID retrieves a row from 'contentActiveCensor' as a ContentActiveCensor.

Generated from index 'sqlite_autoindex_contentActiveCensor_1'.

func (*Client) ContentActiveCensorByRbDataStatus

func (c *Client) ContentActiveCensorByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*ContentActiveCensor, error)

ContentActiveCensorByRbDataStatus retrieves a row from 'contentActiveCensor' as a ContentActiveCensor.

Generated from index 'content_active_censor_rb_data_status'.

func (*Client) ContentActiveCensorByRbLocalDataStatus

func (c *Client) ContentActiveCensorByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*ContentActiveCensor, error)

ContentActiveCensorByRbLocalDataStatus retrieves a row from 'contentActiveCensor' as a ContentActiveCensor.

Generated from index 'content_active_censor_rb_local_data_status'.

func (*Client) ContentActiveCensorByRbLocalDeleted

func (c *Client) ContentActiveCensorByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*ContentActiveCensor, error)

ContentActiveCensorByRbLocalDeleted retrieves a row from 'contentActiveCensor' as a ContentActiveCensor.

Generated from index 'content_active_censor_rb_local_deleted'.

func (*Client) ContentActiveCensorByRbLocalUsnID

func (c *Client) ContentActiveCensorByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*ContentActiveCensor, error)

ContentActiveCensorByRbLocalUsnID retrieves a row from 'contentActiveCensor' as a ContentActiveCensor.

Generated from index 'content_active_censor_rb_local_usn__i_d'.

func (*Client) ContentActiveCensorByUUID

func (c *Client) ContentActiveCensorByUUID(ctx context.Context, uuid nulltype.NullString) ([]*ContentActiveCensor, error)

ContentActiveCensorByUUID retrieves a row from 'contentActiveCensor' as a ContentActiveCensor.

Generated from index 'content_active_censor__u_u_i_d'.

func (*Client) ContentCueByContentID

func (c *Client) ContentCueByContentID(ctx context.Context, contentID nulltype.NullString) ([]*ContentCue, error)

ContentCueByContentID retrieves a row from 'contentCue' as a ContentCue.

Generated from index 'content_cue__content_i_d'.

func (*Client) ContentCueByID

func (c *Client) ContentCueByID(ctx context.Context, id nulltype.NullString) (*ContentCue, error)

ContentCueByID retrieves a row from 'contentCue' as a ContentCue.

Generated from index 'sqlite_autoindex_contentCue_1'.

func (*Client) ContentCueByRbCueCount

func (c *Client) ContentCueByRbCueCount(ctx context.Context, rbCueCount nulltype.NullInt64) ([]*ContentCue, error)

ContentCueByRbCueCount retrieves a row from 'contentCue' as a ContentCue.

Generated from index 'content_cue_rb_cue_count'.

func (*Client) ContentCueByRbDataStatus

func (c *Client) ContentCueByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*ContentCue, error)

ContentCueByRbDataStatus retrieves a row from 'contentCue' as a ContentCue.

Generated from index 'content_cue_rb_data_status'.

func (*Client) ContentCueByRbLocalDataStatus

func (c *Client) ContentCueByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*ContentCue, error)

ContentCueByRbLocalDataStatus retrieves a row from 'contentCue' as a ContentCue.

Generated from index 'content_cue_rb_local_data_status'.

func (*Client) ContentCueByRbLocalDeleted

func (c *Client) ContentCueByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*ContentCue, error)

ContentCueByRbLocalDeleted retrieves a row from 'contentCue' as a ContentCue.

Generated from index 'content_cue_rb_local_deleted'.

func (*Client) ContentCueByRbLocalUsnID

func (c *Client) ContentCueByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*ContentCue, error)

ContentCueByRbLocalUsnID retrieves a row from 'contentCue' as a ContentCue.

Generated from index 'content_cue_rb_local_usn__i_d'.

func (*Client) ContentCueByUUID

func (c *Client) ContentCueByUUID(ctx context.Context, uuid nulltype.NullString) ([]*ContentCue, error)

ContentCueByUUID retrieves a row from 'contentCue' as a ContentCue.

Generated from index 'content_cue__u_u_i_d'.

func (*Client) ContentFileByContentID

func (c *Client) ContentFileByContentID(ctx context.Context, contentID nulltype.NullString) ([]*ContentFile, error)

ContentFileByContentID retrieves a row from 'contentFile' as a ContentFile.

Generated from index 'content_file__content_i_d'.

func (*Client) ContentFileByID

func (c *Client) ContentFileByID(ctx context.Context, id nulltype.NullString) (*ContentFile, error)

ContentFileByID retrieves a row from 'contentFile' as a ContentFile.

Generated from index 'sqlite_autoindex_contentFile_1'.

func (*Client) ContentFileByRbDataStatus

func (c *Client) ContentFileByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*ContentFile, error)

ContentFileByRbDataStatus retrieves a row from 'contentFile' as a ContentFile.

Generated from index 'content_file_rb_data_status'.

func (*Client) ContentFileByRbFileHashDirty

func (c *Client) ContentFileByRbFileHashDirty(ctx context.Context, rbFileHashDirty nulltype.NullInt64) ([]*ContentFile, error)

ContentFileByRbFileHashDirty retrieves a row from 'contentFile' as a ContentFile.

Generated from index 'content_file_rb_file_hash_dirty'.

func (*Client) ContentFileByRbFileSizeDirty

func (c *Client) ContentFileByRbFileSizeDirty(ctx context.Context, rbFileSizeDirty nulltype.NullInt64) ([]*ContentFile, error)

ContentFileByRbFileSizeDirty retrieves a row from 'contentFile' as a ContentFile.

Generated from index 'content_file_rb_file_size_dirty'.

func (*Client) ContentFileByRbLocalDataStatus

func (c *Client) ContentFileByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*ContentFile, error)

ContentFileByRbLocalDataStatus retrieves a row from 'contentFile' as a ContentFile.

Generated from index 'content_file_rb_local_data_status'.

func (*Client) ContentFileByRbLocalDeleted

func (c *Client) ContentFileByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*ContentFile, error)

ContentFileByRbLocalDeleted retrieves a row from 'contentFile' as a ContentFile.

Generated from index 'content_file_rb_local_deleted'.

func (*Client) ContentFileByRbLocalDeletedRbInProgressRbLocalFileStatusRbProcessTypeRbPriority

func (c *Client) ContentFileByRbLocalDeletedRbInProgressRbLocalFileStatusRbProcessTypeRbPriority(ctx context.Context, rbLocalDeleted, rbInProgress, rbLocalFileStatus, rbProcessType, rbPriority nulltype.NullInt64) ([]*ContentFile, error)

ContentFileByRbLocalDeletedRbInProgressRbLocalFileStatusRbProcessTypeRbPriority retrieves a row from 'contentFile' as a ContentFile.

Generated from index 'content_file_rb_local_deleted_rb_in_progress_rb_local_file_status_rb_process_type_rb_priority'.

func (*Client) ContentFileByRbLocalUsnID

func (c *Client) ContentFileByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*ContentFile, error)

ContentFileByRbLocalUsnID retrieves a row from 'contentFile' as a ContentFile.

Generated from index 'content_file_rb_local_usn__i_d'.

func (*Client) ContentFileByUUID

func (c *Client) ContentFileByUUID(ctx context.Context, uuid nulltype.NullString) ([]*ContentFile, error)

ContentFileByUUID retrieves a row from 'contentFile' as a ContentFile.

Generated from index 'content_file__u_u_i_d'.

func (*Client) DeleteAgentNotification

func (c *Client) DeleteAgentNotification(ctx context.Context, an *AgentNotification) error

Delete deletes the AgentNotification from the database.

func (*Client) DeleteAgentNotificationLog

func (c *Client) DeleteAgentNotificationLog(ctx context.Context, anl *AgentNotificationLog) error

Delete deletes the AgentNotificationLog from the database.

func (*Client) DeleteAgentRegistry

func (c *Client) DeleteAgentRegistry(ctx context.Context, ar *AgentRegistry) error

Delete deletes the AgentRegistry from the database.

func (*Client) DeleteCloudAgentRegistry

func (c *Client) DeleteCloudAgentRegistry(ctx context.Context, car *CloudAgentRegistry) error

Delete deletes the CloudAgentRegistry from the database.

func (*Client) DeleteContentActiveCensor

func (c *Client) DeleteContentActiveCensor(ctx context.Context, cac *ContentActiveCensor) error

Delete deletes the ContentActiveCensor from the database.

func (*Client) DeleteContentCue

func (c *Client) DeleteContentCue(ctx context.Context, cc *ContentCue) error

Delete deletes the ContentCue from the database.

func (*Client) DeleteContentFile

func (c *Client) DeleteContentFile(ctx context.Context, cf *ContentFile) error

Delete deletes the ContentFile from the database.

func (*Client) DeleteDjmdActiveCensor

func (c *Client) DeleteDjmdActiveCensor(ctx context.Context, dac *DjmdActiveCensor) error

Delete deletes the DjmdActiveCensor from the database.

func (*Client) DeleteDjmdAlbum

func (c *Client) DeleteDjmdAlbum(ctx context.Context, da *DjmdAlbum) error

Delete deletes the DjmdAlbum from the database.

func (*Client) DeleteDjmdArtist

func (c *Client) DeleteDjmdArtist(ctx context.Context, da *DjmdArtist) error

Delete deletes the DjmdArtist from the database.

func (*Client) DeleteDjmdCategory

func (c *Client) DeleteDjmdCategory(ctx context.Context, dc *DjmdCategory) error

Delete deletes the DjmdCategory from the database.

func (*Client) DeleteDjmdCloudProperty

func (c *Client) DeleteDjmdCloudProperty(ctx context.Context, dcp *DjmdCloudProperty) error

Delete deletes the DjmdCloudProperty from the database.

func (*Client) DeleteDjmdColor

func (c *Client) DeleteDjmdColor(ctx context.Context, dc *DjmdColor) error

Delete deletes the DjmdColor from the database.

func (*Client) DeleteDjmdContent

func (c *Client) DeleteDjmdContent(ctx context.Context, dc *DjmdContent) error

Delete deletes the DjmdContent from the database.

func (*Client) DeleteDjmdCue

func (c *Client) DeleteDjmdCue(ctx context.Context, dc *DjmdCue) error

Delete deletes the DjmdCue from the database.

func (*Client) DeleteDjmdDevice

func (c *Client) DeleteDjmdDevice(ctx context.Context, dd *DjmdDevice) error

Delete deletes the DjmdDevice from the database.

func (*Client) DeleteDjmdGenre

func (c *Client) DeleteDjmdGenre(ctx context.Context, dg *DjmdGenre) error

Delete deletes the DjmdGenre from the database.

func (*Client) DeleteDjmdHistory

func (c *Client) DeleteDjmdHistory(ctx context.Context, dh *DjmdHistory) error

Delete deletes the DjmdHistory from the database.

func (*Client) DeleteDjmdHotCueBanklist

func (c *Client) DeleteDjmdHotCueBanklist(ctx context.Context, dhcb *DjmdHotCueBanklist) error

Delete deletes the DjmdHotCueBanklist from the database.

func (*Client) DeleteDjmdKey

func (c *Client) DeleteDjmdKey(ctx context.Context, dk *DjmdKey) error

Delete deletes the DjmdKey from the database.

func (*Client) DeleteDjmdLabel

func (c *Client) DeleteDjmdLabel(ctx context.Context, dl *DjmdLabel) error

Delete deletes the DjmdLabel from the database.

func (*Client) DeleteDjmdMenuItem

func (c *Client) DeleteDjmdMenuItem(ctx context.Context, dmi *DjmdMenuItem) error

Delete deletes the DjmdMenuItem from the database.

func (*Client) DeleteDjmdMixerParam

func (c *Client) DeleteDjmdMixerParam(ctx context.Context, dmp *DjmdMixerParam) error

Delete deletes the DjmdMixerParam from the database.

func (*Client) DeleteDjmdMyTag

func (c *Client) DeleteDjmdMyTag(ctx context.Context, dmt *DjmdMyTag) error

Delete deletes the DjmdMyTag from the database.

func (*Client) DeleteDjmdPlaylist

func (c *Client) DeleteDjmdPlaylist(ctx context.Context, dp *DjmdPlaylist) error

Delete deletes the DjmdPlaylist from the database.

func (*Client) DeleteDjmdProperty

func (c *Client) DeleteDjmdProperty(ctx context.Context, dp *DjmdProperty) error

Delete deletes the DjmdProperty from the database.

func (*Client) DeleteDjmdRecommendLike

func (c *Client) DeleteDjmdRecommendLike(ctx context.Context, drl *DjmdRecommendLike) error

Delete deletes the DjmdRecommendLike from the database.

func (*Client) DeleteDjmdRelatedTrack

func (c *Client) DeleteDjmdRelatedTrack(ctx context.Context, drt *DjmdRelatedTrack) error

Delete deletes the DjmdRelatedTrack from the database.

func (*Client) DeleteDjmdSampler

func (c *Client) DeleteDjmdSampler(ctx context.Context, ds *DjmdSampler) error

Delete deletes the DjmdSampler from the database.

func (*Client) DeleteDjmdSongHistory

func (c *Client) DeleteDjmdSongHistory(ctx context.Context, dsh *DjmdSongHistory) error

Delete deletes the DjmdSongHistory from the database.

func (*Client) DeleteDjmdSongHotCueBanklist

func (c *Client) DeleteDjmdSongHotCueBanklist(ctx context.Context, dshcb *DjmdSongHotCueBanklist) error

Delete deletes the DjmdSongHotCueBanklist from the database.

func (*Client) DeleteDjmdSongMyTag

func (c *Client) DeleteDjmdSongMyTag(ctx context.Context, dsmt *DjmdSongMyTag) error

Delete deletes the DjmdSongMyTag from the database.

func (*Client) DeleteDjmdSongPlaylist

func (c *Client) DeleteDjmdSongPlaylist(ctx context.Context, dsp *DjmdSongPlaylist) error

Delete deletes the DjmdSongPlaylist from the database.

func (*Client) DeleteDjmdSongRelatedTrack

func (c *Client) DeleteDjmdSongRelatedTrack(ctx context.Context, dsrt *DjmdSongRelatedTrack) error

Delete deletes the DjmdSongRelatedTrack from the database.

func (*Client) DeleteDjmdSongSampler

func (c *Client) DeleteDjmdSongSampler(ctx context.Context, dss *DjmdSongSampler) error

Delete deletes the DjmdSongSampler from the database.

func (*Client) DeleteDjmdSongTagList

func (c *Client) DeleteDjmdSongTagList(ctx context.Context, dstl *DjmdSongTagList) error

Delete deletes the DjmdSongTagList from the database.

func (*Client) DeleteDjmdSort

func (c *Client) DeleteDjmdSort(ctx context.Context, ds *DjmdSort) error

Delete deletes the DjmdSort from the database.

func (*Client) DeleteHotCueBanklistCue

func (c *Client) DeleteHotCueBanklistCue(ctx context.Context, hcbc *HotCueBanklistCue) error

Delete deletes the HotCueBanklistCue from the database.

func (*Client) DeleteImageFile

func (c *Client) DeleteImageFile(ctx context.Context, ifVal *ImageFile) error

Delete deletes the ImageFile from the database.

func (*Client) DeleteSettingFile

func (c *Client) DeleteSettingFile(ctx context.Context, sf *SettingFile) error

Delete deletes the SettingFile from the database.

func (*Client) DeleteUUIDIDMap

func (c *Client) DeleteUUIDIDMap(ctx context.Context, um *UUIDIDMap) error

Delete deletes the UUIDIDMap from the database.

func (*Client) DjmdActiveCensorByContentID

func (c *Client) DjmdActiveCensorByContentID(ctx context.Context, contentID nulltype.NullString) ([]*DjmdActiveCensor, error)

DjmdActiveCensorByContentID retrieves a row from 'djmdActiveCensor' as a DjmdActiveCensor.

Generated from index 'djmd_active_censor__content_i_d'.

func (*Client) DjmdActiveCensorByContentUUID

func (c *Client) DjmdActiveCensorByContentUUID(ctx context.Context, contentUUID nulltype.NullString) ([]*DjmdActiveCensor, error)

DjmdActiveCensorByContentUUID retrieves a row from 'djmdActiveCensor' as a DjmdActiveCensor.

Generated from index 'djmd_active_censor__content_u_u_i_d'.

func (*Client) DjmdActiveCensorByID

func (c *Client) DjmdActiveCensorByID(ctx context.Context, id nulltype.NullString) (*DjmdActiveCensor, error)

DjmdActiveCensorByID retrieves a row from 'djmdActiveCensor' as a DjmdActiveCensor.

Generated from index 'sqlite_autoindex_djmdActiveCensor_1'.

func (*Client) DjmdActiveCensorByRbDataStatus

func (c *Client) DjmdActiveCensorByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdActiveCensor, error)

DjmdActiveCensorByRbDataStatus retrieves a row from 'djmdActiveCensor' as a DjmdActiveCensor.

Generated from index 'djmd_active_censor_rb_data_status'.

func (*Client) DjmdActiveCensorByRbLocalDataStatus

func (c *Client) DjmdActiveCensorByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdActiveCensor, error)

DjmdActiveCensorByRbLocalDataStatus retrieves a row from 'djmdActiveCensor' as a DjmdActiveCensor.

Generated from index 'djmd_active_censor_rb_local_data_status'.

func (*Client) DjmdActiveCensorByRbLocalDeleted

func (c *Client) DjmdActiveCensorByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdActiveCensor, error)

DjmdActiveCensorByRbLocalDeleted retrieves a row from 'djmdActiveCensor' as a DjmdActiveCensor.

Generated from index 'djmd_active_censor_rb_local_deleted'.

func (*Client) DjmdActiveCensorByRbLocalUsnID

func (c *Client) DjmdActiveCensorByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdActiveCensor, error)

DjmdActiveCensorByRbLocalUsnID retrieves a row from 'djmdActiveCensor' as a DjmdActiveCensor.

Generated from index 'djmd_active_censor_rb_local_usn__i_d'.

func (*Client) DjmdActiveCensorByUUID

func (c *Client) DjmdActiveCensorByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdActiveCensor, error)

DjmdActiveCensorByUUID retrieves a row from 'djmdActiveCensor' as a DjmdActiveCensor.

Generated from index 'djmd_active_censor__u_u_i_d'.

func (*Client) DjmdAlbumByAlbumArtistID

func (c *Client) DjmdAlbumByAlbumArtistID(ctx context.Context, albumArtistID nulltype.NullString) ([]*DjmdAlbum, error)

DjmdAlbumByAlbumArtistID retrieves a row from 'djmdAlbum' as a DjmdAlbum.

Generated from index 'djmd_album__album_artist_i_d'.

func (*Client) DjmdAlbumByID

func (c *Client) DjmdAlbumByID(ctx context.Context, id nulltype.NullString) (*DjmdAlbum, error)

DjmdAlbumByID retrieves a row from 'djmdAlbum' as a DjmdAlbum.

Generated from index 'sqlite_autoindex_djmdAlbum_1'.

func (*Client) DjmdAlbumByName

func (c *Client) DjmdAlbumByName(ctx context.Context, name nulltype.NullString) ([]*DjmdAlbum, error)

DjmdAlbumByName retrieves a row from 'djmdAlbum' as a DjmdAlbum.

Generated from index 'djmd_album__name'.

func (*Client) DjmdAlbumByRbDataStatus

func (c *Client) DjmdAlbumByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdAlbum, error)

DjmdAlbumByRbDataStatus retrieves a row from 'djmdAlbum' as a DjmdAlbum.

Generated from index 'djmd_album_rb_data_status'.

func (*Client) DjmdAlbumByRbLocalDataStatus

func (c *Client) DjmdAlbumByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdAlbum, error)

DjmdAlbumByRbLocalDataStatus retrieves a row from 'djmdAlbum' as a DjmdAlbum.

Generated from index 'djmd_album_rb_local_data_status'.

func (*Client) DjmdAlbumByRbLocalDeleted

func (c *Client) DjmdAlbumByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdAlbum, error)

DjmdAlbumByRbLocalDeleted retrieves a row from 'djmdAlbum' as a DjmdAlbum.

Generated from index 'djmd_album_rb_local_deleted'.

func (*Client) DjmdAlbumByRbLocalUsnID

func (c *Client) DjmdAlbumByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdAlbum, error)

DjmdAlbumByRbLocalUsnID retrieves a row from 'djmdAlbum' as a DjmdAlbum.

Generated from index 'djmd_album_rb_local_usn__i_d'.

func (*Client) DjmdAlbumByUUID

func (c *Client) DjmdAlbumByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdAlbum, error)

DjmdAlbumByUUID retrieves a row from 'djmdAlbum' as a DjmdAlbum.

Generated from index 'djmd_album__u_u_i_d'.

func (*Client) DjmdArtistByID

func (c *Client) DjmdArtistByID(ctx context.Context, id nulltype.NullString) (*DjmdArtist, error)

DjmdArtistByID retrieves a row from 'djmdArtist' as a DjmdArtist.

Generated from index 'sqlite_autoindex_djmdArtist_1'.

func (*Client) DjmdArtistByName

func (c *Client) DjmdArtistByName(ctx context.Context, name nulltype.NullString) ([]*DjmdArtist, error)

DjmdArtistByName retrieves a row from 'djmdArtist' as a DjmdArtist.

Generated from index 'djmd_artist__name'.

func (*Client) DjmdArtistByRbDataStatus

func (c *Client) DjmdArtistByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdArtist, error)

DjmdArtistByRbDataStatus retrieves a row from 'djmdArtist' as a DjmdArtist.

Generated from index 'djmd_artist_rb_data_status'.

func (*Client) DjmdArtistByRbLocalDataStatus

func (c *Client) DjmdArtistByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdArtist, error)

DjmdArtistByRbLocalDataStatus retrieves a row from 'djmdArtist' as a DjmdArtist.

Generated from index 'djmd_artist_rb_local_data_status'.

func (*Client) DjmdArtistByRbLocalDeleted

func (c *Client) DjmdArtistByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdArtist, error)

DjmdArtistByRbLocalDeleted retrieves a row from 'djmdArtist' as a DjmdArtist.

Generated from index 'djmd_artist_rb_local_deleted'.

func (*Client) DjmdArtistByRbLocalUsnID

func (c *Client) DjmdArtistByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdArtist, error)

DjmdArtistByRbLocalUsnID retrieves a row from 'djmdArtist' as a DjmdArtist.

Generated from index 'djmd_artist_rb_local_usn__i_d'.

func (*Client) DjmdArtistByUUID

func (c *Client) DjmdArtistByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdArtist, error)

DjmdArtistByUUID retrieves a row from 'djmdArtist' as a DjmdArtist.

Generated from index 'djmd_artist__u_u_i_d'.

func (*Client) DjmdCategoryByID

func (c *Client) DjmdCategoryByID(ctx context.Context, id nulltype.NullString) (*DjmdCategory, error)

DjmdCategoryByID retrieves a row from 'djmdCategory' as a DjmdCategory.

Generated from index 'sqlite_autoindex_djmdCategory_1'.

func (*Client) DjmdCategoryByRbDataStatus

func (c *Client) DjmdCategoryByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdCategory, error)

DjmdCategoryByRbDataStatus retrieves a row from 'djmdCategory' as a DjmdCategory.

Generated from index 'djmd_category_rb_data_status'.

func (*Client) DjmdCategoryByRbLocalDataStatus

func (c *Client) DjmdCategoryByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdCategory, error)

DjmdCategoryByRbLocalDataStatus retrieves a row from 'djmdCategory' as a DjmdCategory.

Generated from index 'djmd_category_rb_local_data_status'.

func (*Client) DjmdCategoryByRbLocalDeleted

func (c *Client) DjmdCategoryByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdCategory, error)

DjmdCategoryByRbLocalDeleted retrieves a row from 'djmdCategory' as a DjmdCategory.

Generated from index 'djmd_category_rb_local_deleted'.

func (*Client) DjmdCategoryByRbLocalUsnID

func (c *Client) DjmdCategoryByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdCategory, error)

DjmdCategoryByRbLocalUsnID retrieves a row from 'djmdCategory' as a DjmdCategory.

Generated from index 'djmd_category_rb_local_usn__i_d'.

func (*Client) DjmdCategoryByUUID

func (c *Client) DjmdCategoryByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdCategory, error)

DjmdCategoryByUUID retrieves a row from 'djmdCategory' as a DjmdCategory.

Generated from index 'djmd_category__u_u_i_d'.

func (*Client) DjmdCloudPropertyByID

func (c *Client) DjmdCloudPropertyByID(ctx context.Context, id nulltype.NullString) (*DjmdCloudProperty, error)

DjmdCloudPropertyByID retrieves a row from 'djmdCloudProperty' as a DjmdCloudProperty.

Generated from index 'sqlite_autoindex_djmdCloudProperty_1'.

func (*Client) DjmdCloudPropertyByRbDataStatus

func (c *Client) DjmdCloudPropertyByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdCloudProperty, error)

DjmdCloudPropertyByRbDataStatus retrieves a row from 'djmdCloudProperty' as a DjmdCloudProperty.

Generated from index 'djmd_cloud_property_rb_data_status'.

func (*Client) DjmdCloudPropertyByRbLocalDataStatus

func (c *Client) DjmdCloudPropertyByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdCloudProperty, error)

DjmdCloudPropertyByRbLocalDataStatus retrieves a row from 'djmdCloudProperty' as a DjmdCloudProperty.

Generated from index 'djmd_cloud_property_rb_local_data_status'.

func (*Client) DjmdCloudPropertyByRbLocalDeleted

func (c *Client) DjmdCloudPropertyByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdCloudProperty, error)

DjmdCloudPropertyByRbLocalDeleted retrieves a row from 'djmdCloudProperty' as a DjmdCloudProperty.

Generated from index 'djmd_cloud_property_rb_local_deleted'.

func (*Client) DjmdCloudPropertyByRbLocalUsnID

func (c *Client) DjmdCloudPropertyByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdCloudProperty, error)

DjmdCloudPropertyByRbLocalUsnID retrieves a row from 'djmdCloudProperty' as a DjmdCloudProperty.

Generated from index 'djmd_cloud_property_rb_local_usn__i_d'.

func (*Client) DjmdCloudPropertyByUUID

func (c *Client) DjmdCloudPropertyByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdCloudProperty, error)

DjmdCloudPropertyByUUID retrieves a row from 'djmdCloudProperty' as a DjmdCloudProperty.

Generated from index 'djmd_cloud_property__u_u_i_d'.

func (*Client) DjmdColorByID

func (c *Client) DjmdColorByID(ctx context.Context, id nulltype.NullString) (*DjmdColor, error)

DjmdColorByID retrieves a row from 'djmdColor' as a DjmdColor.

Generated from index 'sqlite_autoindex_djmdColor_1'.

func (*Client) DjmdColorByRbDataStatus

func (c *Client) DjmdColorByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdColor, error)

DjmdColorByRbDataStatus retrieves a row from 'djmdColor' as a DjmdColor.

Generated from index 'djmd_color_rb_data_status'.

func (*Client) DjmdColorByRbLocalDataStatus

func (c *Client) DjmdColorByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdColor, error)

DjmdColorByRbLocalDataStatus retrieves a row from 'djmdColor' as a DjmdColor.

Generated from index 'djmd_color_rb_local_data_status'.

func (*Client) DjmdColorByRbLocalDeleted

func (c *Client) DjmdColorByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdColor, error)

DjmdColorByRbLocalDeleted retrieves a row from 'djmdColor' as a DjmdColor.

Generated from index 'djmd_color_rb_local_deleted'.

func (*Client) DjmdColorByRbLocalUsnID

func (c *Client) DjmdColorByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdColor, error)

DjmdColorByRbLocalUsnID retrieves a row from 'djmdColor' as a DjmdColor.

Generated from index 'djmd_color_rb_local_usn__i_d'.

func (*Client) DjmdColorByUUID

func (c *Client) DjmdColorByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdColor, error)

DjmdColorByUUID retrieves a row from 'djmdColor' as a DjmdColor.

Generated from index 'djmd_color__u_u_i_d'.

func (*Client) DjmdContentByAlbumID

func (c *Client) DjmdContentByAlbumID(ctx context.Context, albumID nulltype.NullString) ([]*DjmdContent, error)

DjmdContentByAlbumID retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'djmd_content__album_i_d'.

func (*Client) DjmdContentByArtistID

func (c *Client) DjmdContentByArtistID(ctx context.Context, artistID nulltype.NullString) ([]*DjmdContent, error)

DjmdContentByArtistID retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'djmd_content__artist_i_d'.

func (*Client) DjmdContentByComposerID

func (c *Client) DjmdContentByComposerID(ctx context.Context, composerID nulltype.NullString) ([]*DjmdContent, error)

DjmdContentByComposerID retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'djmd_content__composer_i_d'.

func (*Client) DjmdContentByGenreID

func (c *Client) DjmdContentByGenreID(ctx context.Context, genreID nulltype.NullString) ([]*DjmdContent, error)

DjmdContentByGenreID retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'djmd_content__genre_i_d'.

func (*Client) DjmdContentByID

func (c *Client) DjmdContentByID(ctx context.Context, id nulltype.NullString) (*DjmdContent, error)

DjmdContentByID retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'sqlite_autoindex_djmdContent_1'.

func (*Client) DjmdContentByKeyID

func (c *Client) DjmdContentByKeyID(ctx context.Context, keyID nulltype.NullString) ([]*DjmdContent, error)

DjmdContentByKeyID retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'djmd_content__key_i_d'.

func (*Client) DjmdContentByLabelID

func (c *Client) DjmdContentByLabelID(ctx context.Context, labelID nulltype.NullString) ([]*DjmdContent, error)

DjmdContentByLabelID retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'djmd_content__label_i_d'.

func (*Client) DjmdContentByMasterDBIDMasterSongID

func (c *Client) DjmdContentByMasterDBIDMasterSongID(ctx context.Context, masterDBID, masterSongID nulltype.NullString) ([]*DjmdContent, error)

DjmdContentByMasterDBIDMasterSongID retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'djmd_content__master_d_b_i_d__master_song_i_d'.

func (*Client) DjmdContentByOrgArtistID

func (c *Client) DjmdContentByOrgArtistID(ctx context.Context, orgArtistID nulltype.NullString) ([]*DjmdContent, error)

DjmdContentByOrgArtistID retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'djmd_content__org_artist_i_d'.

func (*Client) DjmdContentByRbDataStatus

func (c *Client) DjmdContentByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdContent, error)

DjmdContentByRbDataStatus retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'djmd_content_rb_data_status'.

func (*Client) DjmdContentByRbLocalDataStatus

func (c *Client) DjmdContentByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdContent, error)

DjmdContentByRbLocalDataStatus retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'djmd_content_rb_local_data_status'.

func (*Client) DjmdContentByRbLocalDeleted

func (c *Client) DjmdContentByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdContent, error)

DjmdContentByRbLocalDeleted retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'djmd_content_rb_local_deleted'.

func (*Client) DjmdContentByRbLocalDeletedBitDepth

func (c *Client) DjmdContentByRbLocalDeletedBitDepth(ctx context.Context, rbLocalDeleted, bitDepth nulltype.NullInt64) ([]*DjmdContent, error)

DjmdContentByRbLocalDeletedBitDepth retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'djmd_content_rb_local_deleted__bit_depth'.

func (*Client) DjmdContentByRbLocalDeletedBitRate

func (c *Client) DjmdContentByRbLocalDeletedBitRate(ctx context.Context, rbLocalDeleted, bitRate nulltype.NullInt64) ([]*DjmdContent, error)

DjmdContentByRbLocalDeletedBitRate retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'djmd_content_rb_local_deleted__bit_rate'.

func (*Client) DjmdContentByRbLocalDeletedFileType

func (c *Client) DjmdContentByRbLocalDeletedFileType(ctx context.Context, rbLocalDeleted, fileType nulltype.NullInt64) ([]*DjmdContent, error)

DjmdContentByRbLocalDeletedFileType retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'djmd_content_rb_local_deleted__file_type'.

func (*Client) DjmdContentByRbLocalDeletedServiceID

func (c *Client) DjmdContentByRbLocalDeletedServiceID(ctx context.Context, rbLocalDeleted, serviceID nulltype.NullInt64) ([]*DjmdContent, error)

DjmdContentByRbLocalDeletedServiceID retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'djmd_content_rb_local_deleted__service_i_d'.

func (*Client) DjmdContentByRbLocalUsnID

func (c *Client) DjmdContentByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdContent, error)

DjmdContentByRbLocalUsnID retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'djmd_content_rb_local_usn__i_d'.

func (*Client) DjmdContentByRemixerID

func (c *Client) DjmdContentByRemixerID(ctx context.Context, remixerID nulltype.NullString) ([]*DjmdContent, error)

DjmdContentByRemixerID retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'djmd_content__remixer_i_d'.

func (*Client) DjmdContentByUUID

func (c *Client) DjmdContentByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdContent, error)

DjmdContentByUUID retrieves a row from 'djmdContent' as a DjmdContent.

Generated from index 'djmd_content__u_u_i_d'.

func (*Client) DjmdCueByContentID

func (c *Client) DjmdCueByContentID(ctx context.Context, contentID nulltype.NullString) ([]*DjmdCue, error)

DjmdCueByContentID retrieves a row from 'djmdCue' as a DjmdCue.

Generated from index 'djmd_cue__content_i_d'.

func (*Client) DjmdCueByContentIDRbLocalDeleted

func (c *Client) DjmdCueByContentIDRbLocalDeleted(ctx context.Context, contentID nulltype.NullString, rbLocalDeleted nulltype.NullInt64) ([]*DjmdCue, error)

DjmdCueByContentIDRbLocalDeleted retrieves a row from 'djmdCue' as a DjmdCue.

Generated from index 'djmd_cue__content_i_d_rb_local_deleted'.

func (*Client) DjmdCueByContentUUID

func (c *Client) DjmdCueByContentUUID(ctx context.Context, contentUUID nulltype.NullString) ([]*DjmdCue, error)

DjmdCueByContentUUID retrieves a row from 'djmdCue' as a DjmdCue.

Generated from index 'djmd_cue__content_u_u_i_d'.

func (*Client) DjmdCueByID

func (c *Client) DjmdCueByID(ctx context.Context, id nulltype.NullString) (*DjmdCue, error)

DjmdCueByID retrieves a row from 'djmdCue' as a DjmdCue.

Generated from index 'sqlite_autoindex_djmdCue_1'.

func (*Client) DjmdCueByRbDataStatus

func (c *Client) DjmdCueByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdCue, error)

DjmdCueByRbDataStatus retrieves a row from 'djmdCue' as a DjmdCue.

Generated from index 'djmd_cue_rb_data_status'.

func (*Client) DjmdCueByRbLocalDataStatus

func (c *Client) DjmdCueByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdCue, error)

DjmdCueByRbLocalDataStatus retrieves a row from 'djmdCue' as a DjmdCue.

Generated from index 'djmd_cue_rb_local_data_status'.

func (*Client) DjmdCueByRbLocalDeleted

func (c *Client) DjmdCueByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdCue, error)

DjmdCueByRbLocalDeleted retrieves a row from 'djmdCue' as a DjmdCue.

Generated from index 'djmd_cue_rb_local_deleted'.

func (*Client) DjmdCueByRbLocalUsnID

func (c *Client) DjmdCueByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdCue, error)

DjmdCueByRbLocalUsnID retrieves a row from 'djmdCue' as a DjmdCue.

Generated from index 'djmd_cue_rb_local_usn__i_d'.

func (*Client) DjmdCueByUUID

func (c *Client) DjmdCueByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdCue, error)

DjmdCueByUUID retrieves a row from 'djmdCue' as a DjmdCue.

Generated from index 'djmd_cue__u_u_i_d'.

func (*Client) DjmdDeviceByID

func (c *Client) DjmdDeviceByID(ctx context.Context, id nulltype.NullString) (*DjmdDevice, error)

DjmdDeviceByID retrieves a row from 'djmdDevice' as a DjmdDevice.

Generated from index 'sqlite_autoindex_djmdDevice_1'.

func (*Client) DjmdDeviceByRbDataStatus

func (c *Client) DjmdDeviceByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdDevice, error)

DjmdDeviceByRbDataStatus retrieves a row from 'djmdDevice' as a DjmdDevice.

Generated from index 'djmd_device_rb_data_status'.

func (*Client) DjmdDeviceByRbLocalDataStatus

func (c *Client) DjmdDeviceByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdDevice, error)

DjmdDeviceByRbLocalDataStatus retrieves a row from 'djmdDevice' as a DjmdDevice.

Generated from index 'djmd_device_rb_local_data_status'.

func (*Client) DjmdDeviceByRbLocalDeleted

func (c *Client) DjmdDeviceByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdDevice, error)

DjmdDeviceByRbLocalDeleted retrieves a row from 'djmdDevice' as a DjmdDevice.

Generated from index 'djmd_device_rb_local_deleted'.

func (*Client) DjmdDeviceByRbLocalUsnID

func (c *Client) DjmdDeviceByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdDevice, error)

DjmdDeviceByRbLocalUsnID retrieves a row from 'djmdDevice' as a DjmdDevice.

Generated from index 'djmd_device_rb_local_usn__i_d'.

func (*Client) DjmdDeviceByUUID

func (c *Client) DjmdDeviceByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdDevice, error)

DjmdDeviceByUUID retrieves a row from 'djmdDevice' as a DjmdDevice.

Generated from index 'djmd_device__u_u_i_d'.

func (*Client) DjmdGenreByID

func (c *Client) DjmdGenreByID(ctx context.Context, id nulltype.NullString) (*DjmdGenre, error)

DjmdGenreByID retrieves a row from 'djmdGenre' as a DjmdGenre.

Generated from index 'sqlite_autoindex_djmdGenre_1'.

func (*Client) DjmdGenreByName

func (c *Client) DjmdGenreByName(ctx context.Context, name nulltype.NullString) ([]*DjmdGenre, error)

DjmdGenreByName retrieves a row from 'djmdGenre' as a DjmdGenre.

Generated from index 'djmd_genre__name'.

func (*Client) DjmdGenreByRbDataStatus

func (c *Client) DjmdGenreByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdGenre, error)

DjmdGenreByRbDataStatus retrieves a row from 'djmdGenre' as a DjmdGenre.

Generated from index 'djmd_genre_rb_data_status'.

func (*Client) DjmdGenreByRbLocalDataStatus

func (c *Client) DjmdGenreByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdGenre, error)

DjmdGenreByRbLocalDataStatus retrieves a row from 'djmdGenre' as a DjmdGenre.

Generated from index 'djmd_genre_rb_local_data_status'.

func (*Client) DjmdGenreByRbLocalDeleted

func (c *Client) DjmdGenreByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdGenre, error)

DjmdGenreByRbLocalDeleted retrieves a row from 'djmdGenre' as a DjmdGenre.

Generated from index 'djmd_genre_rb_local_deleted'.

func (*Client) DjmdGenreByRbLocalUsnID

func (c *Client) DjmdGenreByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdGenre, error)

DjmdGenreByRbLocalUsnID retrieves a row from 'djmdGenre' as a DjmdGenre.

Generated from index 'djmd_genre_rb_local_usn__i_d'.

func (*Client) DjmdGenreByUUID

func (c *Client) DjmdGenreByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdGenre, error)

DjmdGenreByUUID retrieves a row from 'djmdGenre' as a DjmdGenre.

Generated from index 'djmd_genre__u_u_i_d'.

func (*Client) DjmdHistoryByID

func (c *Client) DjmdHistoryByID(ctx context.Context, id nulltype.NullString) (*DjmdHistory, error)

DjmdHistoryByID retrieves a row from 'djmdHistory' as a DjmdHistory.

Generated from index 'sqlite_autoindex_djmdHistory_1'.

func (*Client) DjmdHistoryByName

func (c *Client) DjmdHistoryByName(ctx context.Context, name nulltype.NullString) ([]*DjmdHistory, error)

DjmdHistoryByName retrieves a row from 'djmdHistory' as a DjmdHistory.

Generated from index 'djmd_history__name'.

func (*Client) DjmdHistoryByParentID

func (c *Client) DjmdHistoryByParentID(ctx context.Context, parentID nulltype.NullString) ([]*DjmdHistory, error)

DjmdHistoryByParentID retrieves a row from 'djmdHistory' as a DjmdHistory.

Generated from index 'djmd_history__parent_i_d'.

func (*Client) DjmdHistoryByRbDataStatus

func (c *Client) DjmdHistoryByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdHistory, error)

DjmdHistoryByRbDataStatus retrieves a row from 'djmdHistory' as a DjmdHistory.

Generated from index 'djmd_history_rb_data_status'.

func (*Client) DjmdHistoryByRbLocalDataStatus

func (c *Client) DjmdHistoryByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdHistory, error)

DjmdHistoryByRbLocalDataStatus retrieves a row from 'djmdHistory' as a DjmdHistory.

Generated from index 'djmd_history_rb_local_data_status'.

func (*Client) DjmdHistoryByRbLocalDeleted

func (c *Client) DjmdHistoryByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdHistory, error)

DjmdHistoryByRbLocalDeleted retrieves a row from 'djmdHistory' as a DjmdHistory.

Generated from index 'djmd_history_rb_local_deleted'.

func (*Client) DjmdHistoryByRbLocalUsnID

func (c *Client) DjmdHistoryByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdHistory, error)

DjmdHistoryByRbLocalUsnID retrieves a row from 'djmdHistory' as a DjmdHistory.

Generated from index 'djmd_history_rb_local_usn__i_d'.

func (*Client) DjmdHistoryByUUID

func (c *Client) DjmdHistoryByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdHistory, error)

DjmdHistoryByUUID retrieves a row from 'djmdHistory' as a DjmdHistory.

Generated from index 'djmd_history__u_u_i_d'.

func (*Client) DjmdHotCueBanklistByID

func (c *Client) DjmdHotCueBanklistByID(ctx context.Context, id nulltype.NullString) (*DjmdHotCueBanklist, error)

DjmdHotCueBanklistByID retrieves a row from 'djmdHotCueBanklist' as a DjmdHotCueBanklist.

Generated from index 'sqlite_autoindex_djmdHotCueBanklist_1'.

func (*Client) DjmdHotCueBanklistByName

func (c *Client) DjmdHotCueBanklistByName(ctx context.Context, name nulltype.NullString) ([]*DjmdHotCueBanklist, error)

DjmdHotCueBanklistByName retrieves a row from 'djmdHotCueBanklist' as a DjmdHotCueBanklist.

Generated from index 'djmd_hot_cue_banklist__name'.

func (*Client) DjmdHotCueBanklistByParentID

func (c *Client) DjmdHotCueBanklistByParentID(ctx context.Context, parentID nulltype.NullString) ([]*DjmdHotCueBanklist, error)

DjmdHotCueBanklistByParentID retrieves a row from 'djmdHotCueBanklist' as a DjmdHotCueBanklist.

Generated from index 'djmd_hot_cue_banklist__parent_i_d'.

func (*Client) DjmdHotCueBanklistByRbDataStatus

func (c *Client) DjmdHotCueBanklistByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdHotCueBanklist, error)

DjmdHotCueBanklistByRbDataStatus retrieves a row from 'djmdHotCueBanklist' as a DjmdHotCueBanklist.

Generated from index 'djmd_hot_cue_banklist_rb_data_status'.

func (*Client) DjmdHotCueBanklistByRbLocalDataStatus

func (c *Client) DjmdHotCueBanklistByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdHotCueBanklist, error)

DjmdHotCueBanklistByRbLocalDataStatus retrieves a row from 'djmdHotCueBanklist' as a DjmdHotCueBanklist.

Generated from index 'djmd_hot_cue_banklist_rb_local_data_status'.

func (*Client) DjmdHotCueBanklistByRbLocalDeleted

func (c *Client) DjmdHotCueBanklistByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdHotCueBanklist, error)

DjmdHotCueBanklistByRbLocalDeleted retrieves a row from 'djmdHotCueBanklist' as a DjmdHotCueBanklist.

Generated from index 'djmd_hot_cue_banklist_rb_local_deleted'.

func (*Client) DjmdHotCueBanklistByRbLocalUsnID

func (c *Client) DjmdHotCueBanklistByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdHotCueBanklist, error)

DjmdHotCueBanklistByRbLocalUsnID retrieves a row from 'djmdHotCueBanklist' as a DjmdHotCueBanklist.

Generated from index 'djmd_hot_cue_banklist_rb_local_usn__i_d'.

func (*Client) DjmdHotCueBanklistByUUID

func (c *Client) DjmdHotCueBanklistByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdHotCueBanklist, error)

DjmdHotCueBanklistByUUID retrieves a row from 'djmdHotCueBanklist' as a DjmdHotCueBanklist.

Generated from index 'djmd_hot_cue_banklist__u_u_i_d'.

func (*Client) DjmdKeyByID

func (c *Client) DjmdKeyByID(ctx context.Context, id nulltype.NullString) (*DjmdKey, error)

DjmdKeyByID retrieves a row from 'djmdKey' as a DjmdKey.

Generated from index 'sqlite_autoindex_djmdKey_1'.

func (*Client) DjmdKeyByRbDataStatus

func (c *Client) DjmdKeyByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdKey, error)

DjmdKeyByRbDataStatus retrieves a row from 'djmdKey' as a DjmdKey.

Generated from index 'djmd_key_rb_data_status'.

func (*Client) DjmdKeyByRbLocalDataStatus

func (c *Client) DjmdKeyByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdKey, error)

DjmdKeyByRbLocalDataStatus retrieves a row from 'djmdKey' as a DjmdKey.

Generated from index 'djmd_key_rb_local_data_status'.

func (*Client) DjmdKeyByRbLocalDeleted

func (c *Client) DjmdKeyByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdKey, error)

DjmdKeyByRbLocalDeleted retrieves a row from 'djmdKey' as a DjmdKey.

Generated from index 'djmd_key_rb_local_deleted'.

func (*Client) DjmdKeyByRbLocalUsnID

func (c *Client) DjmdKeyByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdKey, error)

DjmdKeyByRbLocalUsnID retrieves a row from 'djmdKey' as a DjmdKey.

Generated from index 'djmd_key_rb_local_usn__i_d'.

func (*Client) DjmdKeyByScaleName

func (c *Client) DjmdKeyByScaleName(ctx context.Context, scaleName nulltype.NullString) ([]*DjmdKey, error)

DjmdKeyByScaleName retrieves a row from 'djmdKey' as a DjmdKey.

Generated from index 'djmd_key__scale_name'.

func (*Client) DjmdKeyByUUID

func (c *Client) DjmdKeyByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdKey, error)

DjmdKeyByUUID retrieves a row from 'djmdKey' as a DjmdKey.

Generated from index 'djmd_key__u_u_i_d'.

func (*Client) DjmdLabelByID

func (c *Client) DjmdLabelByID(ctx context.Context, id nulltype.NullString) (*DjmdLabel, error)

DjmdLabelByID retrieves a row from 'djmdLabel' as a DjmdLabel.

Generated from index 'sqlite_autoindex_djmdLabel_1'.

func (*Client) DjmdLabelByName

func (c *Client) DjmdLabelByName(ctx context.Context, name nulltype.NullString) ([]*DjmdLabel, error)

DjmdLabelByName retrieves a row from 'djmdLabel' as a DjmdLabel.

Generated from index 'djmd_label__name'.

func (*Client) DjmdLabelByRbDataStatus

func (c *Client) DjmdLabelByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdLabel, error)

DjmdLabelByRbDataStatus retrieves a row from 'djmdLabel' as a DjmdLabel.

Generated from index 'djmd_label_rb_data_status'.

func (*Client) DjmdLabelByRbLocalDataStatus

func (c *Client) DjmdLabelByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdLabel, error)

DjmdLabelByRbLocalDataStatus retrieves a row from 'djmdLabel' as a DjmdLabel.

Generated from index 'djmd_label_rb_local_data_status'.

func (*Client) DjmdLabelByRbLocalDeleted

func (c *Client) DjmdLabelByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdLabel, error)

DjmdLabelByRbLocalDeleted retrieves a row from 'djmdLabel' as a DjmdLabel.

Generated from index 'djmd_label_rb_local_deleted'.

func (*Client) DjmdLabelByRbLocalUsnID

func (c *Client) DjmdLabelByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdLabel, error)

DjmdLabelByRbLocalUsnID retrieves a row from 'djmdLabel' as a DjmdLabel.

Generated from index 'djmd_label_rb_local_usn__i_d'.

func (*Client) DjmdLabelByUUID

func (c *Client) DjmdLabelByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdLabel, error)

DjmdLabelByUUID retrieves a row from 'djmdLabel' as a DjmdLabel.

Generated from index 'djmd_label__u_u_i_d'.

func (*Client) DjmdMenuItemByID

func (c *Client) DjmdMenuItemByID(ctx context.Context, id nulltype.NullString) (*DjmdMenuItem, error)

DjmdMenuItemByID retrieves a row from 'djmdMenuItems' as a DjmdMenuItem.

Generated from index 'sqlite_autoindex_djmdMenuItems_1'.

func (*Client) DjmdMenuItemsByRbDataStatus

func (c *Client) DjmdMenuItemsByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdMenuItem, error)

DjmdMenuItemsByRbDataStatus retrieves a row from 'djmdMenuItems' as a DjmdMenuItem.

Generated from index 'djmd_menu_items_rb_data_status'.

func (*Client) DjmdMenuItemsByRbLocalDataStatus

func (c *Client) DjmdMenuItemsByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdMenuItem, error)

DjmdMenuItemsByRbLocalDataStatus retrieves a row from 'djmdMenuItems' as a DjmdMenuItem.

Generated from index 'djmd_menu_items_rb_local_data_status'.

func (*Client) DjmdMenuItemsByRbLocalDeleted

func (c *Client) DjmdMenuItemsByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdMenuItem, error)

DjmdMenuItemsByRbLocalDeleted retrieves a row from 'djmdMenuItems' as a DjmdMenuItem.

Generated from index 'djmd_menu_items_rb_local_deleted'.

func (*Client) DjmdMenuItemsByRbLocalUsnID

func (c *Client) DjmdMenuItemsByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdMenuItem, error)

DjmdMenuItemsByRbLocalUsnID retrieves a row from 'djmdMenuItems' as a DjmdMenuItem.

Generated from index 'djmd_menu_items_rb_local_usn__i_d'.

func (*Client) DjmdMenuItemsByUUID

func (c *Client) DjmdMenuItemsByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdMenuItem, error)

DjmdMenuItemsByUUID retrieves a row from 'djmdMenuItems' as a DjmdMenuItem.

Generated from index 'djmd_menu_items__u_u_i_d'.

func (*Client) DjmdMixerParamByContentID

func (c *Client) DjmdMixerParamByContentID(ctx context.Context, contentID nulltype.NullString) ([]*DjmdMixerParam, error)

DjmdMixerParamByContentID retrieves a row from 'djmdMixerParam' as a DjmdMixerParam.

Generated from index 'djmd_mixer_param__content_i_d'.

func (*Client) DjmdMixerParamByContentIDRbLocalDeleted

func (c *Client) DjmdMixerParamByContentIDRbLocalDeleted(ctx context.Context, contentID nulltype.NullString, rbLocalDeleted nulltype.NullInt64) ([]*DjmdMixerParam, error)

DjmdMixerParamByContentIDRbLocalDeleted retrieves a row from 'djmdMixerParam' as a DjmdMixerParam.

Generated from index 'djmd_mixer_param__content_i_d_rb_local_deleted'.

func (*Client) DjmdMixerParamByID

func (c *Client) DjmdMixerParamByID(ctx context.Context, id nulltype.NullString) (*DjmdMixerParam, error)

DjmdMixerParamByID retrieves a row from 'djmdMixerParam' as a DjmdMixerParam.

Generated from index 'sqlite_autoindex_djmdMixerParam_1'.

func (*Client) DjmdMixerParamByRbDataStatus

func (c *Client) DjmdMixerParamByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdMixerParam, error)

DjmdMixerParamByRbDataStatus retrieves a row from 'djmdMixerParam' as a DjmdMixerParam.

Generated from index 'djmd_mixer_param_rb_data_status'.

func (*Client) DjmdMixerParamByRbLocalDataStatus

func (c *Client) DjmdMixerParamByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdMixerParam, error)

DjmdMixerParamByRbLocalDataStatus retrieves a row from 'djmdMixerParam' as a DjmdMixerParam.

Generated from index 'djmd_mixer_param_rb_local_data_status'.

func (*Client) DjmdMixerParamByRbLocalDeleted

func (c *Client) DjmdMixerParamByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdMixerParam, error)

DjmdMixerParamByRbLocalDeleted retrieves a row from 'djmdMixerParam' as a DjmdMixerParam.

Generated from index 'djmd_mixer_param_rb_local_deleted'.

func (*Client) DjmdMixerParamByRbLocalUsnID

func (c *Client) DjmdMixerParamByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdMixerParam, error)

DjmdMixerParamByRbLocalUsnID retrieves a row from 'djmdMixerParam' as a DjmdMixerParam.

Generated from index 'djmd_mixer_param_rb_local_usn__i_d'.

func (*Client) DjmdMixerParamByUUID

func (c *Client) DjmdMixerParamByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdMixerParam, error)

DjmdMixerParamByUUID retrieves a row from 'djmdMixerParam' as a DjmdMixerParam.

Generated from index 'djmd_mixer_param__u_u_i_d'.

func (*Client) DjmdMyTagByID

func (c *Client) DjmdMyTagByID(ctx context.Context, id nulltype.NullString) (*DjmdMyTag, error)

DjmdMyTagByID retrieves a row from 'djmdMyTag' as a DjmdMyTag.

Generated from index 'sqlite_autoindex_djmdMyTag_1'.

func (*Client) DjmdMyTagByParentID

func (c *Client) DjmdMyTagByParentID(ctx context.Context, parentID nulltype.NullString) ([]*DjmdMyTag, error)

DjmdMyTagByParentID retrieves a row from 'djmdMyTag' as a DjmdMyTag.

Generated from index 'djmd_my_tag__parent_i_d'.

func (*Client) DjmdMyTagByRbDataStatus

func (c *Client) DjmdMyTagByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdMyTag, error)

DjmdMyTagByRbDataStatus retrieves a row from 'djmdMyTag' as a DjmdMyTag.

Generated from index 'djmd_my_tag_rb_data_status'.

func (*Client) DjmdMyTagByRbLocalDataStatus

func (c *Client) DjmdMyTagByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdMyTag, error)

DjmdMyTagByRbLocalDataStatus retrieves a row from 'djmdMyTag' as a DjmdMyTag.

Generated from index 'djmd_my_tag_rb_local_data_status'.

func (*Client) DjmdMyTagByRbLocalDeleted

func (c *Client) DjmdMyTagByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdMyTag, error)

DjmdMyTagByRbLocalDeleted retrieves a row from 'djmdMyTag' as a DjmdMyTag.

Generated from index 'djmd_my_tag_rb_local_deleted'.

func (*Client) DjmdMyTagByRbLocalUsnID

func (c *Client) DjmdMyTagByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdMyTag, error)

DjmdMyTagByRbLocalUsnID retrieves a row from 'djmdMyTag' as a DjmdMyTag.

Generated from index 'djmd_my_tag_rb_local_usn__i_d'.

func (*Client) DjmdMyTagBySeq

func (c *Client) DjmdMyTagBySeq(ctx context.Context, seq nulltype.NullInt64) ([]*DjmdMyTag, error)

DjmdMyTagBySeq retrieves a row from 'djmdMyTag' as a DjmdMyTag.

Generated from index 'djmd_my_tag__seq'.

func (*Client) DjmdMyTagByUUID

func (c *Client) DjmdMyTagByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdMyTag, error)

DjmdMyTagByUUID retrieves a row from 'djmdMyTag' as a DjmdMyTag.

Generated from index 'djmd_my_tag__u_u_i_d'.

func (*Client) DjmdPlaylistByAttribute

func (c *Client) DjmdPlaylistByAttribute(ctx context.Context, attribute nulltype.NullInt64) ([]*DjmdPlaylist, error)

DjmdPlaylistByAttribute retrieves a row from 'djmdPlaylist' as a DjmdPlaylist.

Generated from index 'djmd_playlist__attribute'.

func (*Client) DjmdPlaylistByID

func (c *Client) DjmdPlaylistByID(ctx context.Context, id nulltype.NullString) (*DjmdPlaylist, error)

DjmdPlaylistByID retrieves a row from 'djmdPlaylist' as a DjmdPlaylist.

Generated from index 'sqlite_autoindex_djmdPlaylist_1'.

func (*Client) DjmdPlaylistByName

func (c *Client) DjmdPlaylistByName(ctx context.Context, name nulltype.NullString) ([]*DjmdPlaylist, error)

DjmdPlaylistByName retrieves a row from 'djmdPlaylist' as a DjmdPlaylist.

Generated from index 'djmd_playlist__name'.

func (*Client) DjmdPlaylistByParentID

func (c *Client) DjmdPlaylistByParentID(ctx context.Context, parentID nulltype.NullString) ([]*DjmdPlaylist, error)

DjmdPlaylistByParentID retrieves a row from 'djmdPlaylist' as a DjmdPlaylist.

Generated from index 'djmd_playlist__parent_i_d'.

func (*Client) DjmdPlaylistByRbDataStatus

func (c *Client) DjmdPlaylistByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdPlaylist, error)

DjmdPlaylistByRbDataStatus retrieves a row from 'djmdPlaylist' as a DjmdPlaylist.

Generated from index 'djmd_playlist_rb_data_status'.

func (*Client) DjmdPlaylistByRbLocalDataStatus

func (c *Client) DjmdPlaylistByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdPlaylist, error)

DjmdPlaylistByRbLocalDataStatus retrieves a row from 'djmdPlaylist' as a DjmdPlaylist.

Generated from index 'djmd_playlist_rb_local_data_status'.

func (*Client) DjmdPlaylistByRbLocalDeleted

func (c *Client) DjmdPlaylistByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdPlaylist, error)

DjmdPlaylistByRbLocalDeleted retrieves a row from 'djmdPlaylist' as a DjmdPlaylist.

Generated from index 'djmd_playlist_rb_local_deleted'.

func (*Client) DjmdPlaylistByRbLocalUsnID

func (c *Client) DjmdPlaylistByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdPlaylist, error)

DjmdPlaylistByRbLocalUsnID retrieves a row from 'djmdPlaylist' as a DjmdPlaylist.

Generated from index 'djmd_playlist_rb_local_usn__i_d'.

func (*Client) DjmdPlaylistBySeq

func (c *Client) DjmdPlaylistBySeq(ctx context.Context, seq nulltype.NullInt64) ([]*DjmdPlaylist, error)

DjmdPlaylistBySeq retrieves a row from 'djmdPlaylist' as a DjmdPlaylist.

Generated from index 'djmd_playlist__seq'.

func (*Client) DjmdPlaylistByUUID

func (c *Client) DjmdPlaylistByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdPlaylist, error)

DjmdPlaylistByUUID retrieves a row from 'djmdPlaylist' as a DjmdPlaylist.

Generated from index 'djmd_playlist__u_u_i_d'.

func (*Client) DjmdPropertyByDBID

func (c *Client) DjmdPropertyByDBID(ctx context.Context, dBID nulltype.NullString) (*DjmdProperty, error)

DjmdPropertyByDBID retrieves a row from 'djmdProperty' as a DjmdProperty.

Generated from index 'sqlite_autoindex_djmdProperty_1'.

func (*Client) DjmdRecommendLikeByAnyContentId

func (c *Client) DjmdRecommendLikeByAnyContentId(ctx context.Context, contentId nulltype.NullString) ([]*DjmdRecommendLike, error)

func (*Client) DjmdRecommendLikeByContentId1ContentId2

func (c *Client) DjmdRecommendLikeByContentId1ContentId2(ctx context.Context, contentId1, contentId2 nulltype.NullString) ([]*DjmdRecommendLike, error)

DjmdRecommendLikeByContentId1ContentId2 retrieves a row from 'djmdRecommendLike' as a DjmdRecommendLike.

Generated from index 'djmd_recommend_like__content_i_d1__content_i_d2'.

func (*Client) DjmdRecommendLikeByContentId2

func (c *Client) DjmdRecommendLikeByContentId2(ctx context.Context, contentId2 nulltype.NullString) ([]*DjmdRecommendLike, error)

DjmdRecommendLikeByContentId2 retrieves a row from 'djmdRecommendLike' as a DjmdRecommendLike.

Generated from index 'djmd_recommend_like__content_i_d2'.

func (*Client) DjmdRecommendLikeByID

func (c *Client) DjmdRecommendLikeByID(ctx context.Context, id nulltype.NullString) (*DjmdRecommendLike, error)

DjmdRecommendLikeByID retrieves a row from 'djmdRecommendLike' as a DjmdRecommendLike.

Generated from index 'sqlite_autoindex_djmdRecommendLike_1'.

func (*Client) DjmdRecommendLikeByRbDataStatus

func (c *Client) DjmdRecommendLikeByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdRecommendLike, error)

DjmdRecommendLikeByRbDataStatus retrieves a row from 'djmdRecommendLike' as a DjmdRecommendLike.

Generated from index 'djmd_recommend_like_rb_data_status'.

func (*Client) DjmdRecommendLikeByRbLocalDataStatus

func (c *Client) DjmdRecommendLikeByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdRecommendLike, error)

DjmdRecommendLikeByRbLocalDataStatus retrieves a row from 'djmdRecommendLike' as a DjmdRecommendLike.

Generated from index 'djmd_recommend_like_rb_local_data_status'.

func (*Client) DjmdRecommendLikeByRbLocalDeleted

func (c *Client) DjmdRecommendLikeByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdRecommendLike, error)

DjmdRecommendLikeByRbLocalDeleted retrieves a row from 'djmdRecommendLike' as a DjmdRecommendLike.

Generated from index 'djmd_recommend_like_rb_local_deleted'.

func (*Client) DjmdRecommendLikeByRbLocalUsnID

func (c *Client) DjmdRecommendLikeByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdRecommendLike, error)

DjmdRecommendLikeByRbLocalUsnID retrieves a row from 'djmdRecommendLike' as a DjmdRecommendLike.

Generated from index 'djmd_recommend_like_rb_local_usn__i_d'.

func (*Client) DjmdRecommendLikeByUUID

func (c *Client) DjmdRecommendLikeByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdRecommendLike, error)

DjmdRecommendLikeByUUID retrieves a row from 'djmdRecommendLike' as a DjmdRecommendLike.

Generated from index 'djmd_recommend_like__u_u_i_d'.

func (*Client) DjmdRelatedTrackByID

func (c *Client) DjmdRelatedTrackByID(ctx context.Context, id nulltype.NullString) (*DjmdRelatedTrack, error)

DjmdRelatedTrackByID retrieves a row from 'djmdRelatedTracks' as a DjmdRelatedTrack.

Generated from index 'sqlite_autoindex_djmdRelatedTracks_1'.

func (*Client) DjmdRelatedTracksByName

func (c *Client) DjmdRelatedTracksByName(ctx context.Context, name nulltype.NullString) ([]*DjmdRelatedTrack, error)

DjmdRelatedTracksByName retrieves a row from 'djmdRelatedTracks' as a DjmdRelatedTrack.

Generated from index 'djmd_related_tracks__name'.

func (*Client) DjmdRelatedTracksByParentID

func (c *Client) DjmdRelatedTracksByParentID(ctx context.Context, parentID nulltype.NullString) ([]*DjmdRelatedTrack, error)

DjmdRelatedTracksByParentID retrieves a row from 'djmdRelatedTracks' as a DjmdRelatedTrack.

Generated from index 'djmd_related_tracks__parent_i_d'.

func (*Client) DjmdRelatedTracksByRbDataStatus

func (c *Client) DjmdRelatedTracksByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdRelatedTrack, error)

DjmdRelatedTracksByRbDataStatus retrieves a row from 'djmdRelatedTracks' as a DjmdRelatedTrack.

Generated from index 'djmd_related_tracks_rb_data_status'.

func (*Client) DjmdRelatedTracksByRbLocalDataStatus

func (c *Client) DjmdRelatedTracksByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdRelatedTrack, error)

DjmdRelatedTracksByRbLocalDataStatus retrieves a row from 'djmdRelatedTracks' as a DjmdRelatedTrack.

Generated from index 'djmd_related_tracks_rb_local_data_status'.

func (*Client) DjmdRelatedTracksByRbLocalDeleted

func (c *Client) DjmdRelatedTracksByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdRelatedTrack, error)

DjmdRelatedTracksByRbLocalDeleted retrieves a row from 'djmdRelatedTracks' as a DjmdRelatedTrack.

Generated from index 'djmd_related_tracks_rb_local_deleted'.

func (*Client) DjmdRelatedTracksByRbLocalUsnID

func (c *Client) DjmdRelatedTracksByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdRelatedTrack, error)

DjmdRelatedTracksByRbLocalUsnID retrieves a row from 'djmdRelatedTracks' as a DjmdRelatedTrack.

Generated from index 'djmd_related_tracks_rb_local_usn__i_d'.

func (*Client) DjmdRelatedTracksBySeq

func (c *Client) DjmdRelatedTracksBySeq(ctx context.Context, seq nulltype.NullInt64) ([]*DjmdRelatedTrack, error)

DjmdRelatedTracksBySeq retrieves a row from 'djmdRelatedTracks' as a DjmdRelatedTrack.

Generated from index 'djmd_related_tracks__seq'.

func (*Client) DjmdRelatedTracksByUUID

func (c *Client) DjmdRelatedTracksByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdRelatedTrack, error)

DjmdRelatedTracksByUUID retrieves a row from 'djmdRelatedTracks' as a DjmdRelatedTrack.

Generated from index 'djmd_related_tracks__u_u_i_d'.

func (*Client) DjmdSamplerByID

func (c *Client) DjmdSamplerByID(ctx context.Context, id nulltype.NullString) (*DjmdSampler, error)

DjmdSamplerByID retrieves a row from 'djmdSampler' as a DjmdSampler.

Generated from index 'sqlite_autoindex_djmdSampler_1'.

func (*Client) DjmdSamplerByName

func (c *Client) DjmdSamplerByName(ctx context.Context, name nulltype.NullString) ([]*DjmdSampler, error)

DjmdSamplerByName retrieves a row from 'djmdSampler' as a DjmdSampler.

Generated from index 'djmd_sampler__name'.

func (*Client) DjmdSamplerByParentID

func (c *Client) DjmdSamplerByParentID(ctx context.Context, parentID nulltype.NullString) ([]*DjmdSampler, error)

DjmdSamplerByParentID retrieves a row from 'djmdSampler' as a DjmdSampler.

Generated from index 'djmd_sampler__parent_i_d'.

func (*Client) DjmdSamplerByRbDataStatus

func (c *Client) DjmdSamplerByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdSampler, error)

DjmdSamplerByRbDataStatus retrieves a row from 'djmdSampler' as a DjmdSampler.

Generated from index 'djmd_sampler_rb_data_status'.

func (*Client) DjmdSamplerByRbLocalDataStatus

func (c *Client) DjmdSamplerByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdSampler, error)

DjmdSamplerByRbLocalDataStatus retrieves a row from 'djmdSampler' as a DjmdSampler.

Generated from index 'djmd_sampler_rb_local_data_status'.

func (*Client) DjmdSamplerByRbLocalDeleted

func (c *Client) DjmdSamplerByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdSampler, error)

DjmdSamplerByRbLocalDeleted retrieves a row from 'djmdSampler' as a DjmdSampler.

Generated from index 'djmd_sampler_rb_local_deleted'.

func (*Client) DjmdSamplerByRbLocalUsnID

func (c *Client) DjmdSamplerByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdSampler, error)

DjmdSamplerByRbLocalUsnID retrieves a row from 'djmdSampler' as a DjmdSampler.

Generated from index 'djmd_sampler_rb_local_usn__i_d'.

func (*Client) DjmdSamplerBySeq

func (c *Client) DjmdSamplerBySeq(ctx context.Context, seq nulltype.NullInt64) ([]*DjmdSampler, error)

DjmdSamplerBySeq retrieves a row from 'djmdSampler' as a DjmdSampler.

Generated from index 'djmd_sampler__seq'.

func (*Client) DjmdSamplerByUUID

func (c *Client) DjmdSamplerByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdSampler, error)

DjmdSamplerByUUID retrieves a row from 'djmdSampler' as a DjmdSampler.

Generated from index 'djmd_sampler__u_u_i_d'.

func (*Client) DjmdSongHistoryByContentID

func (c *Client) DjmdSongHistoryByContentID(ctx context.Context, contentID nulltype.NullString) ([]*DjmdSongHistory, error)

DjmdSongHistoryByContentID retrieves a row from 'djmdSongHistory' as a DjmdSongHistory.

Generated from index 'djmd_song_history__content_i_d'.

func (*Client) DjmdSongHistoryByContentIDRbLocalDeleted

func (c *Client) DjmdSongHistoryByContentIDRbLocalDeleted(ctx context.Context, contentID nulltype.NullString, rbLocalDeleted nulltype.NullInt64) ([]*DjmdSongHistory, error)

DjmdSongHistoryByContentIDRbLocalDeleted retrieves a row from 'djmdSongHistory' as a DjmdSongHistory.

Generated from index 'djmd_song_history__content_i_d_rb_local_deleted'.

func (*Client) DjmdSongHistoryByHistoryID

func (c *Client) DjmdSongHistoryByHistoryID(ctx context.Context, historyID nulltype.NullString) ([]*DjmdSongHistory, error)

DjmdSongHistoryByHistoryID retrieves a row from 'djmdSongHistory' as a DjmdSongHistory.

Generated from index 'djmd_song_history__history_i_d'.

func (*Client) DjmdSongHistoryByID

func (c *Client) DjmdSongHistoryByID(ctx context.Context, id nulltype.NullString) (*DjmdSongHistory, error)

DjmdSongHistoryByID retrieves a row from 'djmdSongHistory' as a DjmdSongHistory.

Generated from index 'sqlite_autoindex_djmdSongHistory_1'.

func (*Client) DjmdSongHistoryByRbDataStatus

func (c *Client) DjmdSongHistoryByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdSongHistory, error)

DjmdSongHistoryByRbDataStatus retrieves a row from 'djmdSongHistory' as a DjmdSongHistory.

Generated from index 'djmd_song_history_rb_data_status'.

func (*Client) DjmdSongHistoryByRbLocalDataStatus

func (c *Client) DjmdSongHistoryByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdSongHistory, error)

DjmdSongHistoryByRbLocalDataStatus retrieves a row from 'djmdSongHistory' as a DjmdSongHistory.

Generated from index 'djmd_song_history_rb_local_data_status'.

func (*Client) DjmdSongHistoryByRbLocalDeleted

func (c *Client) DjmdSongHistoryByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdSongHistory, error)

DjmdSongHistoryByRbLocalDeleted retrieves a row from 'djmdSongHistory' as a DjmdSongHistory.

Generated from index 'djmd_song_history_rb_local_deleted'.

func (*Client) DjmdSongHistoryByRbLocalUsnID

func (c *Client) DjmdSongHistoryByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdSongHistory, error)

DjmdSongHistoryByRbLocalUsnID retrieves a row from 'djmdSongHistory' as a DjmdSongHistory.

Generated from index 'djmd_song_history_rb_local_usn__i_d'.

func (*Client) DjmdSongHistoryByUUID

func (c *Client) DjmdSongHistoryByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdSongHistory, error)

DjmdSongHistoryByUUID retrieves a row from 'djmdSongHistory' as a DjmdSongHistory.

Generated from index 'djmd_song_history__u_u_i_d'.

func (*Client) DjmdSongHotCueBanklistByContentID

func (c *Client) DjmdSongHotCueBanklistByContentID(ctx context.Context, contentID nulltype.NullString) ([]*DjmdSongHotCueBanklist, error)

DjmdSongHotCueBanklistByContentID retrieves a row from 'djmdSongHotCueBanklist' as a DjmdSongHotCueBanklist.

Generated from index 'djmd_song_hot_cue_banklist__content_i_d'.

func (*Client) DjmdSongHotCueBanklistByHotCueBanklistID

func (c *Client) DjmdSongHotCueBanklistByHotCueBanklistID(ctx context.Context, hotCueBanklistID nulltype.NullString) ([]*DjmdSongHotCueBanklist, error)

DjmdSongHotCueBanklistByHotCueBanklistID retrieves a row from 'djmdSongHotCueBanklist' as a DjmdSongHotCueBanklist.

Generated from index 'djmd_song_hot_cue_banklist__hot_cue_banklist_i_d'.

func (*Client) DjmdSongHotCueBanklistByHotCueBanklistUUID

func (c *Client) DjmdSongHotCueBanklistByHotCueBanklistUUID(ctx context.Context, hotCueBanklistUUID nulltype.NullString) ([]*DjmdSongHotCueBanklist, error)

DjmdSongHotCueBanklistByHotCueBanklistUUID retrieves a row from 'djmdSongHotCueBanklist' as a DjmdSongHotCueBanklist.

Generated from index 'djmd_song_hot_cue_banklist__hot_cue_banklist_u_u_i_d'.

func (*Client) DjmdSongHotCueBanklistByID

func (c *Client) DjmdSongHotCueBanklistByID(ctx context.Context, id nulltype.NullString) (*DjmdSongHotCueBanklist, error)

DjmdSongHotCueBanklistByID retrieves a row from 'djmdSongHotCueBanklist' as a DjmdSongHotCueBanklist.

Generated from index 'sqlite_autoindex_djmdSongHotCueBanklist_1'.

func (*Client) DjmdSongHotCueBanklistByRbDataStatus

func (c *Client) DjmdSongHotCueBanklistByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdSongHotCueBanklist, error)

DjmdSongHotCueBanklistByRbDataStatus retrieves a row from 'djmdSongHotCueBanklist' as a DjmdSongHotCueBanklist.

Generated from index 'djmd_song_hot_cue_banklist_rb_data_status'.

func (*Client) DjmdSongHotCueBanklistByRbLocalDataStatus

func (c *Client) DjmdSongHotCueBanklistByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdSongHotCueBanklist, error)

DjmdSongHotCueBanklistByRbLocalDataStatus retrieves a row from 'djmdSongHotCueBanklist' as a DjmdSongHotCueBanklist.

Generated from index 'djmd_song_hot_cue_banklist_rb_local_data_status'.

func (*Client) DjmdSongHotCueBanklistByRbLocalDeleted

func (c *Client) DjmdSongHotCueBanklistByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdSongHotCueBanklist, error)

DjmdSongHotCueBanklistByRbLocalDeleted retrieves a row from 'djmdSongHotCueBanklist' as a DjmdSongHotCueBanklist.

Generated from index 'djmd_song_hot_cue_banklist_rb_local_deleted'.

func (*Client) DjmdSongHotCueBanklistByRbLocalUsnID

func (c *Client) DjmdSongHotCueBanklistByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdSongHotCueBanklist, error)

DjmdSongHotCueBanklistByRbLocalUsnID retrieves a row from 'djmdSongHotCueBanklist' as a DjmdSongHotCueBanklist.

Generated from index 'djmd_song_hot_cue_banklist_rb_local_usn__i_d'.

func (*Client) DjmdSongHotCueBanklistByUUID

func (c *Client) DjmdSongHotCueBanklistByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdSongHotCueBanklist, error)

DjmdSongHotCueBanklistByUUID retrieves a row from 'djmdSongHotCueBanklist' as a DjmdSongHotCueBanklist.

Generated from index 'djmd_song_hot_cue_banklist__u_u_i_d'.

func (*Client) DjmdSongMyTagByContentID

func (c *Client) DjmdSongMyTagByContentID(ctx context.Context, contentID nulltype.NullString) ([]*DjmdSongMyTag, error)

DjmdSongMyTagByContentID retrieves a row from 'djmdSongMyTag' as a DjmdSongMyTag.

Generated from index 'djmd_song_my_tag__content_i_d'.

func (*Client) DjmdSongMyTagByContentIDRbLocalDeleted

func (c *Client) DjmdSongMyTagByContentIDRbLocalDeleted(ctx context.Context, contentID nulltype.NullString, rbLocalDeleted nulltype.NullInt64) ([]*DjmdSongMyTag, error)

DjmdSongMyTagByContentIDRbLocalDeleted retrieves a row from 'djmdSongMyTag' as a DjmdSongMyTag.

Generated from index 'djmd_song_my_tag__content_i_d_rb_local_deleted'.

func (*Client) DjmdSongMyTagByID

func (c *Client) DjmdSongMyTagByID(ctx context.Context, id nulltype.NullString) (*DjmdSongMyTag, error)

DjmdSongMyTagByID retrieves a row from 'djmdSongMyTag' as a DjmdSongMyTag.

Generated from index 'sqlite_autoindex_djmdSongMyTag_1'.

func (*Client) DjmdSongMyTagByMyTagID

func (c *Client) DjmdSongMyTagByMyTagID(ctx context.Context, myTagID nulltype.NullString) ([]*DjmdSongMyTag, error)

DjmdSongMyTagByMyTagID retrieves a row from 'djmdSongMyTag' as a DjmdSongMyTag.

Generated from index 'djmd_song_my_tag__my_tag_i_d'.

func (*Client) DjmdSongMyTagByMyTagIDRbLocalDeletedID

func (c *Client) DjmdSongMyTagByMyTagIDRbLocalDeletedID(ctx context.Context, myTagID nulltype.NullString, rbLocalDeleted nulltype.NullInt64, id nulltype.NullString) ([]*DjmdSongMyTag, error)

DjmdSongMyTagByMyTagIDRbLocalDeletedID retrieves a row from 'djmdSongMyTag' as a DjmdSongMyTag.

Generated from index 'djmd_song_my_tag__my_tag_i_d_rb_local_deleted__i_d'.

func (*Client) DjmdSongMyTagByRbDataStatus

func (c *Client) DjmdSongMyTagByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdSongMyTag, error)

DjmdSongMyTagByRbDataStatus retrieves a row from 'djmdSongMyTag' as a DjmdSongMyTag.

Generated from index 'djmd_song_my_tag_rb_data_status'.

func (*Client) DjmdSongMyTagByRbLocalDataStatus

func (c *Client) DjmdSongMyTagByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdSongMyTag, error)

DjmdSongMyTagByRbLocalDataStatus retrieves a row from 'djmdSongMyTag' as a DjmdSongMyTag.

Generated from index 'djmd_song_my_tag_rb_local_data_status'.

func (*Client) DjmdSongMyTagByRbLocalDeleted

func (c *Client) DjmdSongMyTagByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdSongMyTag, error)

DjmdSongMyTagByRbLocalDeleted retrieves a row from 'djmdSongMyTag' as a DjmdSongMyTag.

Generated from index 'djmd_song_my_tag_rb_local_deleted'.

func (*Client) DjmdSongMyTagByRbLocalUsnID

func (c *Client) DjmdSongMyTagByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdSongMyTag, error)

DjmdSongMyTagByRbLocalUsnID retrieves a row from 'djmdSongMyTag' as a DjmdSongMyTag.

Generated from index 'djmd_song_my_tag_rb_local_usn__i_d'.

func (*Client) DjmdSongMyTagByUUID

func (c *Client) DjmdSongMyTagByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdSongMyTag, error)

DjmdSongMyTagByUUID retrieves a row from 'djmdSongMyTag' as a DjmdSongMyTag.

Generated from index 'djmd_song_my_tag__u_u_i_d'.

func (*Client) DjmdSongPlaylistByContentID

func (c *Client) DjmdSongPlaylistByContentID(ctx context.Context, contentID nulltype.NullString) ([]*DjmdSongPlaylist, error)

DjmdSongPlaylistByContentID retrieves a row from 'djmdSongPlaylist' as a DjmdSongPlaylist.

Generated from index 'djmd_song_playlist__content_i_d'.

func (*Client) DjmdSongPlaylistByContentIDRbLocalDeleted

func (c *Client) DjmdSongPlaylistByContentIDRbLocalDeleted(ctx context.Context, contentID nulltype.NullString, rbLocalDeleted nulltype.NullInt64) ([]*DjmdSongPlaylist, error)

DjmdSongPlaylistByContentIDRbLocalDeleted retrieves a row from 'djmdSongPlaylist' as a DjmdSongPlaylist.

Generated from index 'djmd_song_playlist__content_i_d_rb_local_deleted'.

func (*Client) DjmdSongPlaylistByID

func (c *Client) DjmdSongPlaylistByID(ctx context.Context, id nulltype.NullString) (*DjmdSongPlaylist, error)

DjmdSongPlaylistByID retrieves a row from 'djmdSongPlaylist' as a DjmdSongPlaylist.

Generated from index 'sqlite_autoindex_djmdSongPlaylist_1'.

func (*Client) DjmdSongPlaylistByPlaylistID

func (c *Client) DjmdSongPlaylistByPlaylistID(ctx context.Context, playlistID nulltype.NullString) ([]*DjmdSongPlaylist, error)

DjmdSongPlaylistByPlaylistID retrieves a row from 'djmdSongPlaylist' as a DjmdSongPlaylist.

Generated from index 'djmd_song_playlist__playlist_i_d'.

func (*Client) DjmdSongPlaylistByPlaylistIDID

func (c *Client) DjmdSongPlaylistByPlaylistIDID(ctx context.Context, playlistID, id nulltype.NullString) ([]*DjmdSongPlaylist, error)

DjmdSongPlaylistByPlaylistIDID retrieves a row from 'djmdSongPlaylist' as a DjmdSongPlaylist.

Generated from index 'djmd_song_playlist__playlist_i_d__i_d'.

func (*Client) DjmdSongPlaylistByRbDataStatus

func (c *Client) DjmdSongPlaylistByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdSongPlaylist, error)

DjmdSongPlaylistByRbDataStatus retrieves a row from 'djmdSongPlaylist' as a DjmdSongPlaylist.

Generated from index 'djmd_song_playlist_rb_data_status'.

func (*Client) DjmdSongPlaylistByRbLocalDataStatus

func (c *Client) DjmdSongPlaylistByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdSongPlaylist, error)

DjmdSongPlaylistByRbLocalDataStatus retrieves a row from 'djmdSongPlaylist' as a DjmdSongPlaylist.

Generated from index 'djmd_song_playlist_rb_local_data_status'.

func (*Client) DjmdSongPlaylistByRbLocalDeleted

func (c *Client) DjmdSongPlaylistByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdSongPlaylist, error)

DjmdSongPlaylistByRbLocalDeleted retrieves a row from 'djmdSongPlaylist' as a DjmdSongPlaylist.

Generated from index 'djmd_song_playlist_rb_local_deleted'.

func (*Client) DjmdSongPlaylistByRbLocalUsnID

func (c *Client) DjmdSongPlaylistByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdSongPlaylist, error)

DjmdSongPlaylistByRbLocalUsnID retrieves a row from 'djmdSongPlaylist' as a DjmdSongPlaylist.

Generated from index 'djmd_song_playlist_rb_local_usn__i_d'.

func (*Client) DjmdSongPlaylistByUUID

func (c *Client) DjmdSongPlaylistByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdSongPlaylist, error)

DjmdSongPlaylistByUUID retrieves a row from 'djmdSongPlaylist' as a DjmdSongPlaylist.

Generated from index 'djmd_song_playlist__u_u_i_d'.

func (*Client) DjmdSongRelatedTrackByID

func (c *Client) DjmdSongRelatedTrackByID(ctx context.Context, id nulltype.NullString) (*DjmdSongRelatedTrack, error)

DjmdSongRelatedTrackByID retrieves a row from 'djmdSongRelatedTracks' as a DjmdSongRelatedTrack.

Generated from index 'sqlite_autoindex_djmdSongRelatedTracks_1'.

func (*Client) DjmdSongRelatedTracksByContentID

func (c *Client) DjmdSongRelatedTracksByContentID(ctx context.Context, contentID nulltype.NullString) ([]*DjmdSongRelatedTrack, error)

DjmdSongRelatedTracksByContentID retrieves a row from 'djmdSongRelatedTracks' as a DjmdSongRelatedTrack.

Generated from index 'djmd_song_related_tracks__content_i_d'.

func (*Client) DjmdSongRelatedTracksByRbDataStatus

func (c *Client) DjmdSongRelatedTracksByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdSongRelatedTrack, error)

DjmdSongRelatedTracksByRbDataStatus retrieves a row from 'djmdSongRelatedTracks' as a DjmdSongRelatedTrack.

Generated from index 'djmd_song_related_tracks_rb_data_status'.

func (*Client) DjmdSongRelatedTracksByRbLocalDataStatus

func (c *Client) DjmdSongRelatedTracksByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdSongRelatedTrack, error)

DjmdSongRelatedTracksByRbLocalDataStatus retrieves a row from 'djmdSongRelatedTracks' as a DjmdSongRelatedTrack.

Generated from index 'djmd_song_related_tracks_rb_local_data_status'.

func (*Client) DjmdSongRelatedTracksByRbLocalDeleted

func (c *Client) DjmdSongRelatedTracksByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdSongRelatedTrack, error)

DjmdSongRelatedTracksByRbLocalDeleted retrieves a row from 'djmdSongRelatedTracks' as a DjmdSongRelatedTrack.

Generated from index 'djmd_song_related_tracks_rb_local_deleted'.

func (*Client) DjmdSongRelatedTracksByRbLocalUsnID

func (c *Client) DjmdSongRelatedTracksByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdSongRelatedTrack, error)

DjmdSongRelatedTracksByRbLocalUsnID retrieves a row from 'djmdSongRelatedTracks' as a DjmdSongRelatedTrack.

Generated from index 'djmd_song_related_tracks_rb_local_usn__i_d'.

func (*Client) DjmdSongRelatedTracksByRelatedTracksID

func (c *Client) DjmdSongRelatedTracksByRelatedTracksID(ctx context.Context, relatedTracksID nulltype.NullString) ([]*DjmdSongRelatedTrack, error)

DjmdSongRelatedTracksByRelatedTracksID retrieves a row from 'djmdSongRelatedTracks' as a DjmdSongRelatedTrack.

Generated from index 'djmd_song_related_tracks__related_tracks_i_d'.

func (*Client) DjmdSongRelatedTracksByUUID

func (c *Client) DjmdSongRelatedTracksByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdSongRelatedTrack, error)

DjmdSongRelatedTracksByUUID retrieves a row from 'djmdSongRelatedTracks' as a DjmdSongRelatedTrack.

Generated from index 'djmd_song_related_tracks__u_u_i_d'.

func (*Client) DjmdSongSamplerByContentID

func (c *Client) DjmdSongSamplerByContentID(ctx context.Context, contentID nulltype.NullString) ([]*DjmdSongSampler, error)

DjmdSongSamplerByContentID retrieves a row from 'djmdSongSampler' as a DjmdSongSampler.

Generated from index 'djmd_song_sampler__content_i_d'.

func (*Client) DjmdSongSamplerByID

func (c *Client) DjmdSongSamplerByID(ctx context.Context, id nulltype.NullString) (*DjmdSongSampler, error)

DjmdSongSamplerByID retrieves a row from 'djmdSongSampler' as a DjmdSongSampler.

Generated from index 'sqlite_autoindex_djmdSongSampler_1'.

func (*Client) DjmdSongSamplerByRbDataStatus

func (c *Client) DjmdSongSamplerByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdSongSampler, error)

DjmdSongSamplerByRbDataStatus retrieves a row from 'djmdSongSampler' as a DjmdSongSampler.

Generated from index 'djmd_song_sampler_rb_data_status'.

func (*Client) DjmdSongSamplerByRbLocalDataStatus

func (c *Client) DjmdSongSamplerByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdSongSampler, error)

DjmdSongSamplerByRbLocalDataStatus retrieves a row from 'djmdSongSampler' as a DjmdSongSampler.

Generated from index 'djmd_song_sampler_rb_local_data_status'.

func (*Client) DjmdSongSamplerByRbLocalDeleted

func (c *Client) DjmdSongSamplerByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdSongSampler, error)

DjmdSongSamplerByRbLocalDeleted retrieves a row from 'djmdSongSampler' as a DjmdSongSampler.

Generated from index 'djmd_song_sampler_rb_local_deleted'.

func (*Client) DjmdSongSamplerByRbLocalUsnID

func (c *Client) DjmdSongSamplerByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdSongSampler, error)

DjmdSongSamplerByRbLocalUsnID retrieves a row from 'djmdSongSampler' as a DjmdSongSampler.

Generated from index 'djmd_song_sampler_rb_local_usn__i_d'.

func (*Client) DjmdSongSamplerBySamplerID

func (c *Client) DjmdSongSamplerBySamplerID(ctx context.Context, samplerID nulltype.NullString) ([]*DjmdSongSampler, error)

DjmdSongSamplerBySamplerID retrieves a row from 'djmdSongSampler' as a DjmdSongSampler.

Generated from index 'djmd_song_sampler__sampler_i_d'.

func (*Client) DjmdSongSamplerByUUID

func (c *Client) DjmdSongSamplerByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdSongSampler, error)

DjmdSongSamplerByUUID retrieves a row from 'djmdSongSampler' as a DjmdSongSampler.

Generated from index 'djmd_song_sampler__u_u_i_d'.

func (*Client) DjmdSongTagListByContentID

func (c *Client) DjmdSongTagListByContentID(ctx context.Context, contentID nulltype.NullString) ([]*DjmdSongTagList, error)

DjmdSongTagListByContentID retrieves a row from 'djmdSongTagList' as a DjmdSongTagList.

Generated from index 'djmd_song_tag_list__content_i_d'.

func (*Client) DjmdSongTagListByID

func (c *Client) DjmdSongTagListByID(ctx context.Context, id nulltype.NullString) (*DjmdSongTagList, error)

DjmdSongTagListByID retrieves a row from 'djmdSongTagList' as a DjmdSongTagList.

Generated from index 'sqlite_autoindex_djmdSongTagList_1'.

func (*Client) DjmdSongTagListByRbDataStatus

func (c *Client) DjmdSongTagListByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdSongTagList, error)

DjmdSongTagListByRbDataStatus retrieves a row from 'djmdSongTagList' as a DjmdSongTagList.

Generated from index 'djmd_song_tag_list_rb_data_status'.

func (*Client) DjmdSongTagListByRbLocalDataStatus

func (c *Client) DjmdSongTagListByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdSongTagList, error)

DjmdSongTagListByRbLocalDataStatus retrieves a row from 'djmdSongTagList' as a DjmdSongTagList.

Generated from index 'djmd_song_tag_list_rb_local_data_status'.

func (*Client) DjmdSongTagListByRbLocalDeleted

func (c *Client) DjmdSongTagListByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdSongTagList, error)

DjmdSongTagListByRbLocalDeleted retrieves a row from 'djmdSongTagList' as a DjmdSongTagList.

Generated from index 'djmd_song_tag_list_rb_local_deleted'.

func (*Client) DjmdSongTagListByRbLocalUsnID

func (c *Client) DjmdSongTagListByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdSongTagList, error)

DjmdSongTagListByRbLocalUsnID retrieves a row from 'djmdSongTagList' as a DjmdSongTagList.

Generated from index 'djmd_song_tag_list_rb_local_usn__i_d'.

func (*Client) DjmdSongTagListByUUID

func (c *Client) DjmdSongTagListByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdSongTagList, error)

DjmdSongTagListByUUID retrieves a row from 'djmdSongTagList' as a DjmdSongTagList.

Generated from index 'djmd_song_tag_list__u_u_i_d'.

func (*Client) DjmdSortByID

func (c *Client) DjmdSortByID(ctx context.Context, id nulltype.NullString) (*DjmdSort, error)

DjmdSortByID retrieves a row from 'djmdSort' as a DjmdSort.

Generated from index 'sqlite_autoindex_djmdSort_1'.

func (*Client) DjmdSortByRbDataStatus

func (c *Client) DjmdSortByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*DjmdSort, error)

DjmdSortByRbDataStatus retrieves a row from 'djmdSort' as a DjmdSort.

Generated from index 'djmd_sort_rb_data_status'.

func (*Client) DjmdSortByRbLocalDataStatus

func (c *Client) DjmdSortByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*DjmdSort, error)

DjmdSortByRbLocalDataStatus retrieves a row from 'djmdSort' as a DjmdSort.

Generated from index 'djmd_sort_rb_local_data_status'.

func (*Client) DjmdSortByRbLocalDeleted

func (c *Client) DjmdSortByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*DjmdSort, error)

DjmdSortByRbLocalDeleted retrieves a row from 'djmdSort' as a DjmdSort.

Generated from index 'djmd_sort_rb_local_deleted'.

func (*Client) DjmdSortByRbLocalUsnID

func (c *Client) DjmdSortByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*DjmdSort, error)

DjmdSortByRbLocalUsnID retrieves a row from 'djmdSort' as a DjmdSort.

Generated from index 'djmd_sort_rb_local_usn__i_d'.

func (*Client) DjmdSortByUUID

func (c *Client) DjmdSortByUUID(ctx context.Context, uuid nulltype.NullString) ([]*DjmdSort, error)

DjmdSortByUUID retrieves a row from 'djmdSort' as a DjmdSort.

Generated from index 'djmd_sort__u_u_i_d'.

func (*Client) GetDB

func (c *Client) GetDB() *sqlx.DB

func (*Client) GetSqlAbst

func (c *Client) GetSqlAbst() *sqlabst.SqlAbst

func (*Client) HotCueBanklistCueByHotCueBanklistID

func (c *Client) HotCueBanklistCueByHotCueBanklistID(ctx context.Context, hotCueBanklistID nulltype.NullString) ([]*HotCueBanklistCue, error)

HotCueBanklistCueByHotCueBanklistID retrieves a row from 'hotCueBanklistCue' as a HotCueBanklistCue.

Generated from index 'hot_cue_banklist_cue__hot_cue_banklist_i_d'.

func (*Client) HotCueBanklistCueByID

func (c *Client) HotCueBanklistCueByID(ctx context.Context, id nulltype.NullString) (*HotCueBanklistCue, error)

HotCueBanklistCueByID retrieves a row from 'hotCueBanklistCue' as a HotCueBanklistCue.

Generated from index 'sqlite_autoindex_hotCueBanklistCue_1'.

func (*Client) HotCueBanklistCueByRbCueCount

func (c *Client) HotCueBanklistCueByRbCueCount(ctx context.Context, rbCueCount nulltype.NullInt64) ([]*HotCueBanklistCue, error)

HotCueBanklistCueByRbCueCount retrieves a row from 'hotCueBanklistCue' as a HotCueBanklistCue.

Generated from index 'hot_cue_banklist_cue_rb_cue_count'.

func (*Client) HotCueBanklistCueByRbDataStatus

func (c *Client) HotCueBanklistCueByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*HotCueBanklistCue, error)

HotCueBanklistCueByRbDataStatus retrieves a row from 'hotCueBanklistCue' as a HotCueBanklistCue.

Generated from index 'hot_cue_banklist_cue_rb_data_status'.

func (*Client) HotCueBanklistCueByRbLocalDataStatus

func (c *Client) HotCueBanklistCueByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*HotCueBanklistCue, error)

HotCueBanklistCueByRbLocalDataStatus retrieves a row from 'hotCueBanklistCue' as a HotCueBanklistCue.

Generated from index 'hot_cue_banklist_cue_rb_local_data_status'.

func (*Client) HotCueBanklistCueByRbLocalDeleted

func (c *Client) HotCueBanklistCueByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*HotCueBanklistCue, error)

HotCueBanklistCueByRbLocalDeleted retrieves a row from 'hotCueBanklistCue' as a HotCueBanklistCue.

Generated from index 'hot_cue_banklist_cue_rb_local_deleted'.

func (*Client) HotCueBanklistCueByRbLocalUsnID

func (c *Client) HotCueBanklistCueByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*HotCueBanklistCue, error)

HotCueBanklistCueByRbLocalUsnID retrieves a row from 'hotCueBanklistCue' as a HotCueBanklistCue.

Generated from index 'hot_cue_banklist_cue_rb_local_usn__i_d'.

func (*Client) HotCueBanklistCueByUUID

func (c *Client) HotCueBanklistCueByUUID(ctx context.Context, uuid nulltype.NullString) ([]*HotCueBanklistCue, error)

HotCueBanklistCueByUUID retrieves a row from 'hotCueBanklistCue' as a HotCueBanklistCue.

Generated from index 'hot_cue_banklist_cue__u_u_i_d'.

func (*Client) ImageFileByID

func (c *Client) ImageFileByID(ctx context.Context, id nulltype.NullString) (*ImageFile, error)

ImageFileByID retrieves a row from 'imageFile' as a ImageFile.

Generated from index 'sqlite_autoindex_imageFile_1'.

func (*Client) ImageFileByRbDataStatus

func (c *Client) ImageFileByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*ImageFile, error)

ImageFileByRbDataStatus retrieves a row from 'imageFile' as a ImageFile.

Generated from index 'image_file_rb_data_status'.

func (*Client) ImageFileByRbFileHashDirty

func (c *Client) ImageFileByRbFileHashDirty(ctx context.Context, rbFileHashDirty nulltype.NullInt64) ([]*ImageFile, error)

ImageFileByRbFileHashDirty retrieves a row from 'imageFile' as a ImageFile.

Generated from index 'image_file_rb_file_hash_dirty'.

func (*Client) ImageFileByRbFileSizeDirty

func (c *Client) ImageFileByRbFileSizeDirty(ctx context.Context, rbFileSizeDirty nulltype.NullInt64) ([]*ImageFile, error)

ImageFileByRbFileSizeDirty retrieves a row from 'imageFile' as a ImageFile.

Generated from index 'image_file_rb_file_size_dirty'.

func (*Client) ImageFileByRbLocalDataStatus

func (c *Client) ImageFileByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*ImageFile, error)

ImageFileByRbLocalDataStatus retrieves a row from 'imageFile' as a ImageFile.

Generated from index 'image_file_rb_local_data_status'.

func (*Client) ImageFileByRbLocalDeleted

func (c *Client) ImageFileByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*ImageFile, error)

ImageFileByRbLocalDeleted retrieves a row from 'imageFile' as a ImageFile.

Generated from index 'image_file_rb_local_deleted'.

func (*Client) ImageFileByRbLocalDeletedRbInProgressRbLocalFileStatusRbProcessTypeRbPriority

func (c *Client) ImageFileByRbLocalDeletedRbInProgressRbLocalFileStatusRbProcessTypeRbPriority(ctx context.Context, rbLocalDeleted, rbInProgress, rbLocalFileStatus, rbProcessType, rbPriority nulltype.NullInt64) ([]*ImageFile, error)

ImageFileByRbLocalDeletedRbInProgressRbLocalFileStatusRbProcessTypeRbPriority retrieves a row from 'imageFile' as a ImageFile.

Generated from index 'image_file_rb_local_deleted_rb_in_progress_rb_local_file_status_rb_process_type_rb_priority'.

func (*Client) ImageFileByRbLocalUsnID

func (c *Client) ImageFileByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*ImageFile, error)

ImageFileByRbLocalUsnID retrieves a row from 'imageFile' as a ImageFile.

Generated from index 'image_file_rb_local_usn__i_d'.

func (*Client) ImageFileByTableNameTargetID

func (c *Client) ImageFileByTableNameTargetID(ctx context.Context, tableName, targetID nulltype.NullString) ([]*ImageFile, error)

ImageFileByTableNameTargetID retrieves a row from 'imageFile' as a ImageFile.

Generated from index 'image_file__table_name__target_i_d'.

func (*Client) ImageFileByTableNameTargetUUID

func (c *Client) ImageFileByTableNameTargetUUID(ctx context.Context, tableName, targetUUID nulltype.NullString) ([]*ImageFile, error)

ImageFileByTableNameTargetUUID retrieves a row from 'imageFile' as a ImageFile.

Generated from index 'image_file__table_name__target_u_u_i_d'.

func (*Client) ImageFileByTableNameTargetUUIDID

func (c *Client) ImageFileByTableNameTargetUUIDID(ctx context.Context, tableName, targetUUID, id nulltype.NullString) ([]*ImageFile, error)

ImageFileByTableNameTargetUUIDID retrieves a row from 'imageFile' as a ImageFile.

Generated from index 'image_file__table_name__target_u_u_i_d__i_d'.

func (*Client) ImageFileByUUID

func (c *Client) ImageFileByUUID(ctx context.Context, uuid nulltype.NullString) ([]*ImageFile, error)

ImageFileByUUID retrieves a row from 'imageFile' as a ImageFile.

Generated from index 'image_file__u_u_i_d'.

func (*Client) InsertAgentNotification

func (c *Client) InsertAgentNotification(ctx context.Context, an *AgentNotification) error

Insert inserts the AgentNotification to the database.

func (*Client) InsertAgentNotificationLog

func (c *Client) InsertAgentNotificationLog(ctx context.Context, anl *AgentNotificationLog) error

Insert inserts the AgentNotificationLog to the database.

func (*Client) InsertAgentRegistry

func (c *Client) InsertAgentRegistry(ctx context.Context, ar *AgentRegistry) error

Insert inserts the AgentRegistry to the database.

func (*Client) InsertCloudAgentRegistry

func (c *Client) InsertCloudAgentRegistry(ctx context.Context, car *CloudAgentRegistry) error

Insert inserts the CloudAgentRegistry to the database.

func (*Client) InsertContentActiveCensor

func (c *Client) InsertContentActiveCensor(ctx context.Context, cac *ContentActiveCensor) error

Insert inserts the ContentActiveCensor to the database.

func (*Client) InsertContentCue

func (c *Client) InsertContentCue(ctx context.Context, cc *ContentCue) error

Insert inserts the ContentCue to the database.

func (*Client) InsertContentFile

func (c *Client) InsertContentFile(ctx context.Context, cf *ContentFile) error

Insert inserts the ContentFile to the database.

func (*Client) InsertDjmdActiveCensor

func (c *Client) InsertDjmdActiveCensor(ctx context.Context, dac *DjmdActiveCensor) error

Insert inserts the DjmdActiveCensor to the database.

func (*Client) InsertDjmdAlbum

func (c *Client) InsertDjmdAlbum(ctx context.Context, da *DjmdAlbum) error

Insert inserts the DjmdAlbum to the database.

func (*Client) InsertDjmdArtist

func (c *Client) InsertDjmdArtist(ctx context.Context, da *DjmdArtist) error

Insert inserts the DjmdArtist to the database.

func (*Client) InsertDjmdCategory

func (c *Client) InsertDjmdCategory(ctx context.Context, dc *DjmdCategory) error

Insert inserts the DjmdCategory to the database.

func (*Client) InsertDjmdCloudProperty

func (c *Client) InsertDjmdCloudProperty(ctx context.Context, dcp *DjmdCloudProperty) error

Insert inserts the DjmdCloudProperty to the database.

func (*Client) InsertDjmdColor

func (c *Client) InsertDjmdColor(ctx context.Context, dc *DjmdColor) error

Insert inserts the DjmdColor to the database.

func (*Client) InsertDjmdContent

func (c *Client) InsertDjmdContent(ctx context.Context, dc *DjmdContent) error

Insert inserts the DjmdContent to the database.

func (*Client) InsertDjmdCue

func (c *Client) InsertDjmdCue(ctx context.Context, dc *DjmdCue) error

Insert inserts the DjmdCue to the database.

func (*Client) InsertDjmdDevice

func (c *Client) InsertDjmdDevice(ctx context.Context, dd *DjmdDevice) error

Insert inserts the DjmdDevice to the database.

func (*Client) InsertDjmdGenre

func (c *Client) InsertDjmdGenre(ctx context.Context, dg *DjmdGenre) error

Insert inserts the DjmdGenre to the database.

func (*Client) InsertDjmdHistory

func (c *Client) InsertDjmdHistory(ctx context.Context, dh *DjmdHistory) error

Insert inserts the DjmdHistory to the database.

func (*Client) InsertDjmdHotCueBanklist

func (c *Client) InsertDjmdHotCueBanklist(ctx context.Context, dhcb *DjmdHotCueBanklist) error

Insert inserts the DjmdHotCueBanklist to the database.

func (*Client) InsertDjmdKey

func (c *Client) InsertDjmdKey(ctx context.Context, dk *DjmdKey) error

Insert inserts the DjmdKey to the database.

func (*Client) InsertDjmdLabel

func (c *Client) InsertDjmdLabel(ctx context.Context, dl *DjmdLabel) error

Insert inserts the DjmdLabel to the database.

func (*Client) InsertDjmdMenuItem

func (c *Client) InsertDjmdMenuItem(ctx context.Context, dmi *DjmdMenuItem) error

Insert inserts the DjmdMenuItem to the database.

func (*Client) InsertDjmdMixerParam

func (c *Client) InsertDjmdMixerParam(ctx context.Context, dmp *DjmdMixerParam) error

Insert inserts the DjmdMixerParam to the database.

func (*Client) InsertDjmdMyTag

func (c *Client) InsertDjmdMyTag(ctx context.Context, dmt *DjmdMyTag) error

Insert inserts the DjmdMyTag to the database.

func (*Client) InsertDjmdPlaylist

func (c *Client) InsertDjmdPlaylist(ctx context.Context, dp *DjmdPlaylist) error

Insert inserts the DjmdPlaylist to the database.

func (*Client) InsertDjmdProperty

func (c *Client) InsertDjmdProperty(ctx context.Context, dp *DjmdProperty) error

Insert inserts the DjmdProperty to the database.

func (*Client) InsertDjmdRecommendLike

func (c *Client) InsertDjmdRecommendLike(ctx context.Context, drl *DjmdRecommendLike) error

Insert inserts the DjmdRecommendLike to the database.

func (*Client) InsertDjmdRelatedTrack

func (c *Client) InsertDjmdRelatedTrack(ctx context.Context, drt *DjmdRelatedTrack) error

Insert inserts the DjmdRelatedTrack to the database.

func (*Client) InsertDjmdSampler

func (c *Client) InsertDjmdSampler(ctx context.Context, ds *DjmdSampler) error

Insert inserts the DjmdSampler to the database.

func (*Client) InsertDjmdSongHistory

func (c *Client) InsertDjmdSongHistory(ctx context.Context, dsh *DjmdSongHistory) error

Insert inserts the DjmdSongHistory to the database.

func (*Client) InsertDjmdSongHotCueBanklist

func (c *Client) InsertDjmdSongHotCueBanklist(ctx context.Context, dshcb *DjmdSongHotCueBanklist) error

Insert inserts the DjmdSongHotCueBanklist to the database.

func (*Client) InsertDjmdSongMyTag

func (c *Client) InsertDjmdSongMyTag(ctx context.Context, dsmt *DjmdSongMyTag) error

Insert inserts the DjmdSongMyTag to the database.

func (*Client) InsertDjmdSongPlaylist

func (c *Client) InsertDjmdSongPlaylist(ctx context.Context, dsp *DjmdSongPlaylist) error

Insert inserts the DjmdSongPlaylist to the database.

func (*Client) InsertDjmdSongRelatedTrack

func (c *Client) InsertDjmdSongRelatedTrack(ctx context.Context, dsrt *DjmdSongRelatedTrack) error

Insert inserts the DjmdSongRelatedTrack to the database.

func (*Client) InsertDjmdSongSampler

func (c *Client) InsertDjmdSongSampler(ctx context.Context, dss *DjmdSongSampler) error

Insert inserts the DjmdSongSampler to the database.

func (*Client) InsertDjmdSongTagList

func (c *Client) InsertDjmdSongTagList(ctx context.Context, dstl *DjmdSongTagList) error

Insert inserts the DjmdSongTagList to the database.

func (*Client) InsertDjmdSort

func (c *Client) InsertDjmdSort(ctx context.Context, ds *DjmdSort) error

Insert inserts the DjmdSort to the database.

func (*Client) InsertHotCueBanklistCue

func (c *Client) InsertHotCueBanklistCue(ctx context.Context, hcbc *HotCueBanklistCue) error

Insert inserts the HotCueBanklistCue to the database.

func (*Client) InsertImageFile

func (c *Client) InsertImageFile(ctx context.Context, ifVal *ImageFile) error

Insert inserts the ImageFile to the database.

func (*Client) InsertSettingFile

func (c *Client) InsertSettingFile(ctx context.Context, sf *SettingFile) error

Insert inserts the SettingFile to the database.

func (*Client) InsertUUIDIDMap

func (c *Client) InsertUUIDIDMap(ctx context.Context, um *UUIDIDMap) error

Insert inserts the UUIDIDMap to the database.

func (*Client) RecentDjmdSongHistory

func (c *Client) RecentDjmdSongHistory(ctx context.Context, limit int) ([]*DjmdSongHistory, error)

func (*Client) SaveAgentNotification

func (c *Client) SaveAgentNotification(ctx context.Context, an *AgentNotification) error

Save saves the AgentNotification to the database.

func (*Client) SaveAgentNotificationLog

func (c *Client) SaveAgentNotificationLog(ctx context.Context, anl *AgentNotificationLog) error

Save saves the AgentNotificationLog to the database.

func (*Client) SaveAgentRegistry

func (c *Client) SaveAgentRegistry(ctx context.Context, ar *AgentRegistry) error

Save saves the AgentRegistry to the database.

func (*Client) SaveCloudAgentRegistry

func (c *Client) SaveCloudAgentRegistry(ctx context.Context, car *CloudAgentRegistry) error

Save saves the CloudAgentRegistry to the database.

func (*Client) SaveContentActiveCensor

func (c *Client) SaveContentActiveCensor(ctx context.Context, cac *ContentActiveCensor) error

Save saves the ContentActiveCensor to the database.

func (*Client) SaveContentCue

func (c *Client) SaveContentCue(ctx context.Context, cc *ContentCue) error

Save saves the ContentCue to the database.

func (*Client) SaveContentFile

func (c *Client) SaveContentFile(ctx context.Context, cf *ContentFile) error

Save saves the ContentFile to the database.

func (*Client) SaveDjmdActiveCensor

func (c *Client) SaveDjmdActiveCensor(ctx context.Context, dac *DjmdActiveCensor) error

Save saves the DjmdActiveCensor to the database.

func (*Client) SaveDjmdAlbum

func (c *Client) SaveDjmdAlbum(ctx context.Context, da *DjmdAlbum) error

Save saves the DjmdAlbum to the database.

func (*Client) SaveDjmdArtist

func (c *Client) SaveDjmdArtist(ctx context.Context, da *DjmdArtist) error

Save saves the DjmdArtist to the database.

func (*Client) SaveDjmdCategory

func (c *Client) SaveDjmdCategory(ctx context.Context, dc *DjmdCategory) error

Save saves the DjmdCategory to the database.

func (*Client) SaveDjmdCloudProperty

func (c *Client) SaveDjmdCloudProperty(ctx context.Context, dcp *DjmdCloudProperty) error

Save saves the DjmdCloudProperty to the database.

func (*Client) SaveDjmdColor

func (c *Client) SaveDjmdColor(ctx context.Context, dc *DjmdColor) error

Save saves the DjmdColor to the database.

func (*Client) SaveDjmdContent

func (c *Client) SaveDjmdContent(ctx context.Context, dc *DjmdContent) error

Save saves the DjmdContent to the database.

func (*Client) SaveDjmdCue

func (c *Client) SaveDjmdCue(ctx context.Context, dc *DjmdCue) error

Save saves the DjmdCue to the database.

func (*Client) SaveDjmdDevice

func (c *Client) SaveDjmdDevice(ctx context.Context, dd *DjmdDevice) error

Save saves the DjmdDevice to the database.

func (*Client) SaveDjmdGenre

func (c *Client) SaveDjmdGenre(ctx context.Context, dg *DjmdGenre) error

Save saves the DjmdGenre to the database.

func (*Client) SaveDjmdHistory

func (c *Client) SaveDjmdHistory(ctx context.Context, dh *DjmdHistory) error

Save saves the DjmdHistory to the database.

func (*Client) SaveDjmdHotCueBanklist

func (c *Client) SaveDjmdHotCueBanklist(ctx context.Context, dhcb *DjmdHotCueBanklist) error

Save saves the DjmdHotCueBanklist to the database.

func (*Client) SaveDjmdKey

func (c *Client) SaveDjmdKey(ctx context.Context, dk *DjmdKey) error

Save saves the DjmdKey to the database.

func (*Client) SaveDjmdLabel

func (c *Client) SaveDjmdLabel(ctx context.Context, dl *DjmdLabel) error

Save saves the DjmdLabel to the database.

func (*Client) SaveDjmdMenuItem

func (c *Client) SaveDjmdMenuItem(ctx context.Context, dmi *DjmdMenuItem) error

Save saves the DjmdMenuItem to the database.

func (*Client) SaveDjmdMixerParam

func (c *Client) SaveDjmdMixerParam(ctx context.Context, dmp *DjmdMixerParam) error

Save saves the DjmdMixerParam to the database.

func (*Client) SaveDjmdMyTag

func (c *Client) SaveDjmdMyTag(ctx context.Context, dmt *DjmdMyTag) error

Save saves the DjmdMyTag to the database.

func (*Client) SaveDjmdPlaylist

func (c *Client) SaveDjmdPlaylist(ctx context.Context, dp *DjmdPlaylist) error

Save saves the DjmdPlaylist to the database.

func (*Client) SaveDjmdProperty

func (c *Client) SaveDjmdProperty(ctx context.Context, dp *DjmdProperty) error

Save saves the DjmdProperty to the database.

func (*Client) SaveDjmdRecommendLike

func (c *Client) SaveDjmdRecommendLike(ctx context.Context, drl *DjmdRecommendLike) error

Save saves the DjmdRecommendLike to the database.

func (*Client) SaveDjmdRelatedTrack

func (c *Client) SaveDjmdRelatedTrack(ctx context.Context, drt *DjmdRelatedTrack) error

Save saves the DjmdRelatedTrack to the database.

func (*Client) SaveDjmdSampler

func (c *Client) SaveDjmdSampler(ctx context.Context, ds *DjmdSampler) error

Save saves the DjmdSampler to the database.

func (*Client) SaveDjmdSongHistory

func (c *Client) SaveDjmdSongHistory(ctx context.Context, dsh *DjmdSongHistory) error

Save saves the DjmdSongHistory to the database.

func (*Client) SaveDjmdSongHotCueBanklist

func (c *Client) SaveDjmdSongHotCueBanklist(ctx context.Context, dshcb *DjmdSongHotCueBanklist) error

Save saves the DjmdSongHotCueBanklist to the database.

func (*Client) SaveDjmdSongMyTag

func (c *Client) SaveDjmdSongMyTag(ctx context.Context, dsmt *DjmdSongMyTag) error

Save saves the DjmdSongMyTag to the database.

func (*Client) SaveDjmdSongPlaylist

func (c *Client) SaveDjmdSongPlaylist(ctx context.Context, dsp *DjmdSongPlaylist) error

Save saves the DjmdSongPlaylist to the database.

func (*Client) SaveDjmdSongRelatedTrack

func (c *Client) SaveDjmdSongRelatedTrack(ctx context.Context, dsrt *DjmdSongRelatedTrack) error

Save saves the DjmdSongRelatedTrack to the database.

func (*Client) SaveDjmdSongSampler

func (c *Client) SaveDjmdSongSampler(ctx context.Context, dss *DjmdSongSampler) error

Save saves the DjmdSongSampler to the database.

func (*Client) SaveDjmdSongTagList

func (c *Client) SaveDjmdSongTagList(ctx context.Context, dstl *DjmdSongTagList) error

Save saves the DjmdSongTagList to the database.

func (*Client) SaveDjmdSort

func (c *Client) SaveDjmdSort(ctx context.Context, ds *DjmdSort) error

Save saves the DjmdSort to the database.

func (*Client) SaveHotCueBanklistCue

func (c *Client) SaveHotCueBanklistCue(ctx context.Context, hcbc *HotCueBanklistCue) error

Save saves the HotCueBanklistCue to the database.

func (*Client) SaveImageFile

func (c *Client) SaveImageFile(ctx context.Context, ifVal *ImageFile) error

Save saves the ImageFile to the database.

func (*Client) SaveSettingFile

func (c *Client) SaveSettingFile(ctx context.Context, sf *SettingFile) error

Save saves the SettingFile to the database.

func (*Client) SaveUUIDIDMap

func (c *Client) SaveUUIDIDMap(ctx context.Context, um *UUIDIDMap) error

Save saves the UUIDIDMap to the database.

func (*Client) SettingFileByID

func (c *Client) SettingFileByID(ctx context.Context, id nulltype.NullString) (*SettingFile, error)

SettingFileByID retrieves a row from 'settingFile' as a SettingFile.

Generated from index 'sqlite_autoindex_settingFile_1'.

func (*Client) SettingFileByRbDataStatus

func (c *Client) SettingFileByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*SettingFile, error)

SettingFileByRbDataStatus retrieves a row from 'settingFile' as a SettingFile.

Generated from index 'setting_file_rb_data_status'.

func (*Client) SettingFileByRbFileHashDirty

func (c *Client) SettingFileByRbFileHashDirty(ctx context.Context, rbFileHashDirty nulltype.NullInt64) ([]*SettingFile, error)

SettingFileByRbFileHashDirty retrieves a row from 'settingFile' as a SettingFile.

Generated from index 'setting_file_rb_file_hash_dirty'.

func (*Client) SettingFileByRbFileSizeDirty

func (c *Client) SettingFileByRbFileSizeDirty(ctx context.Context, rbFileSizeDirty nulltype.NullInt64) ([]*SettingFile, error)

SettingFileByRbFileSizeDirty retrieves a row from 'settingFile' as a SettingFile.

Generated from index 'setting_file_rb_file_size_dirty'.

func (*Client) SettingFileByRbLocalDataStatus

func (c *Client) SettingFileByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*SettingFile, error)

SettingFileByRbLocalDataStatus retrieves a row from 'settingFile' as a SettingFile.

Generated from index 'setting_file_rb_local_data_status'.

func (*Client) SettingFileByRbLocalDeleted

func (c *Client) SettingFileByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*SettingFile, error)

SettingFileByRbLocalDeleted retrieves a row from 'settingFile' as a SettingFile.

Generated from index 'setting_file_rb_local_deleted'.

func (*Client) SettingFileByRbLocalUsnID

func (c *Client) SettingFileByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*SettingFile, error)

SettingFileByRbLocalUsnID retrieves a row from 'settingFile' as a SettingFile.

Generated from index 'setting_file_rb_local_usn__i_d'.

func (*Client) SettingFileByUUID

func (c *Client) SettingFileByUUID(ctx context.Context, uuid nulltype.NullString) ([]*SettingFile, error)

SettingFileByUUID retrieves a row from 'settingFile' as a SettingFile.

Generated from index 'setting_file__u_u_i_d'.

func (*Client) UUIDIDMapByID

func (c *Client) UUIDIDMapByID(ctx context.Context, id nulltype.NullString) (*UUIDIDMap, error)

UUIDIDMapByID retrieves a row from 'uuidIDMap' as a UUIDIDMap.

Generated from index 'sqlite_autoindex_uuidIDMap_1'.

func (*Client) UUIDIDMapByRbDataStatus

func (c *Client) UUIDIDMapByRbDataStatus(ctx context.Context, rbDataStatus nulltype.NullInt64) ([]*UUIDIDMap, error)

UUIDIDMapByRbDataStatus retrieves a row from 'uuidIDMap' as a UUIDIDMap.

Generated from index 'uuid_i_d_map_rb_data_status'.

func (*Client) UUIDIDMapByRbLocalDataStatus

func (c *Client) UUIDIDMapByRbLocalDataStatus(ctx context.Context, rbLocalDataStatus nulltype.NullInt64) ([]*UUIDIDMap, error)

UUIDIDMapByRbLocalDataStatus retrieves a row from 'uuidIDMap' as a UUIDIDMap.

Generated from index 'uuid_i_d_map_rb_local_data_status'.

func (*Client) UUIDIDMapByRbLocalDeleted

func (c *Client) UUIDIDMapByRbLocalDeleted(ctx context.Context, rbLocalDeleted nulltype.NullInt64) ([]*UUIDIDMap, error)

UUIDIDMapByRbLocalDeleted retrieves a row from 'uuidIDMap' as a UUIDIDMap.

Generated from index 'uuid_i_d_map_rb_local_deleted'.

func (*Client) UUIDIDMapByRbLocalUsnID

func (c *Client) UUIDIDMapByRbLocalUsnID(ctx context.Context, rbLocalUsn nulltype.NullInt64, id nulltype.NullString) ([]*UUIDIDMap, error)

UUIDIDMapByRbLocalUsnID retrieves a row from 'uuidIDMap' as a UUIDIDMap.

Generated from index 'uuid_i_d_map_rb_local_usn__i_d'.

func (*Client) UUIDIDMapByUUID

func (c *Client) UUIDIDMapByUUID(ctx context.Context, uuid nulltype.NullString) ([]*UUIDIDMap, error)

UUIDIDMapByUUID retrieves a row from 'uuidIDMap' as a UUIDIDMap.

Generated from index 'uuid_i_d_map__u_u_i_d'.

func (*Client) UpdateAgentNotification

func (c *Client) UpdateAgentNotification(ctx context.Context, an *AgentNotification) error

Update updates a AgentNotification in the database.

func (*Client) UpdateAgentNotificationLog

func (c *Client) UpdateAgentNotificationLog(ctx context.Context, anl *AgentNotificationLog) error

Update updates a AgentNotificationLog in the database.

func (*Client) UpdateAgentRegistry

func (c *Client) UpdateAgentRegistry(ctx context.Context, ar *AgentRegistry) error

Update updates a AgentRegistry in the database.

func (*Client) UpdateCloudAgentRegistry

func (c *Client) UpdateCloudAgentRegistry(ctx context.Context, car *CloudAgentRegistry) error

Update updates a CloudAgentRegistry in the database.

func (*Client) UpdateContentActiveCensor

func (c *Client) UpdateContentActiveCensor(ctx context.Context, cac *ContentActiveCensor) error

Update updates a ContentActiveCensor in the database.

func (*Client) UpdateContentCue

func (c *Client) UpdateContentCue(ctx context.Context, cc *ContentCue) error

Update updates a ContentCue in the database.

func (*Client) UpdateContentFile

func (c *Client) UpdateContentFile(ctx context.Context, cf *ContentFile) error

Update updates a ContentFile in the database.

func (*Client) UpdateDjmdActiveCensor

func (c *Client) UpdateDjmdActiveCensor(ctx context.Context, dac *DjmdActiveCensor) error

Update updates a DjmdActiveCensor in the database.

func (*Client) UpdateDjmdAlbum

func (c *Client) UpdateDjmdAlbum(ctx context.Context, da *DjmdAlbum) error

Update updates a DjmdAlbum in the database.

func (*Client) UpdateDjmdArtist

func (c *Client) UpdateDjmdArtist(ctx context.Context, da *DjmdArtist) error

Update updates a DjmdArtist in the database.

func (*Client) UpdateDjmdCategory

func (c *Client) UpdateDjmdCategory(ctx context.Context, dc *DjmdCategory) error

Update updates a DjmdCategory in the database.

func (*Client) UpdateDjmdCloudProperty

func (c *Client) UpdateDjmdCloudProperty(ctx context.Context, dcp *DjmdCloudProperty) error

Update updates a DjmdCloudProperty in the database.

func (*Client) UpdateDjmdColor

func (c *Client) UpdateDjmdColor(ctx context.Context, dc *DjmdColor) error

Update updates a DjmdColor in the database.

func (*Client) UpdateDjmdContent

func (c *Client) UpdateDjmdContent(ctx context.Context, dc *DjmdContent) error

Update updates a DjmdContent in the database.

func (*Client) UpdateDjmdCue

func (c *Client) UpdateDjmdCue(ctx context.Context, dc *DjmdCue) error

Update updates a DjmdCue in the database.

func (*Client) UpdateDjmdDevice

func (c *Client) UpdateDjmdDevice(ctx context.Context, dd *DjmdDevice) error

Update updates a DjmdDevice in the database.

func (*Client) UpdateDjmdGenre

func (c *Client) UpdateDjmdGenre(ctx context.Context, dg *DjmdGenre) error

Update updates a DjmdGenre in the database.

func (*Client) UpdateDjmdHistory

func (c *Client) UpdateDjmdHistory(ctx context.Context, dh *DjmdHistory) error

Update updates a DjmdHistory in the database.

func (*Client) UpdateDjmdHotCueBanklist

func (c *Client) UpdateDjmdHotCueBanklist(ctx context.Context, dhcb *DjmdHotCueBanklist) error

Update updates a DjmdHotCueBanklist in the database.

func (*Client) UpdateDjmdKey

func (c *Client) UpdateDjmdKey(ctx context.Context, dk *DjmdKey) error

Update updates a DjmdKey in the database.

func (*Client) UpdateDjmdLabel

func (c *Client) UpdateDjmdLabel(ctx context.Context, dl *DjmdLabel) error

Update updates a DjmdLabel in the database.

func (*Client) UpdateDjmdMenuItem

func (c *Client) UpdateDjmdMenuItem(ctx context.Context, dmi *DjmdMenuItem) error

Update updates a DjmdMenuItem in the database.

func (*Client) UpdateDjmdMixerParam

func (c *Client) UpdateDjmdMixerParam(ctx context.Context, dmp *DjmdMixerParam) error

Update updates a DjmdMixerParam in the database.

func (*Client) UpdateDjmdMyTag

func (c *Client) UpdateDjmdMyTag(ctx context.Context, dmt *DjmdMyTag) error

Update updates a DjmdMyTag in the database.

func (*Client) UpdateDjmdPlaylist

func (c *Client) UpdateDjmdPlaylist(ctx context.Context, dp *DjmdPlaylist) error

Update updates a DjmdPlaylist in the database.

func (*Client) UpdateDjmdProperty

func (c *Client) UpdateDjmdProperty(ctx context.Context, dp *DjmdProperty) error

Update updates a DjmdProperty in the database.

func (*Client) UpdateDjmdRecommendLike

func (c *Client) UpdateDjmdRecommendLike(ctx context.Context, drl *DjmdRecommendLike) error

Update updates a DjmdRecommendLike in the database.

func (*Client) UpdateDjmdRelatedTrack

func (c *Client) UpdateDjmdRelatedTrack(ctx context.Context, drt *DjmdRelatedTrack) error

Update updates a DjmdRelatedTrack in the database.

func (*Client) UpdateDjmdSampler

func (c *Client) UpdateDjmdSampler(ctx context.Context, ds *DjmdSampler) error

Update updates a DjmdSampler in the database.

func (*Client) UpdateDjmdSongHistory

func (c *Client) UpdateDjmdSongHistory(ctx context.Context, dsh *DjmdSongHistory) error

Update updates a DjmdSongHistory in the database.

func (*Client) UpdateDjmdSongHotCueBanklist

func (c *Client) UpdateDjmdSongHotCueBanklist(ctx context.Context, dshcb *DjmdSongHotCueBanklist) error

Update updates a DjmdSongHotCueBanklist in the database.

func (*Client) UpdateDjmdSongMyTag

func (c *Client) UpdateDjmdSongMyTag(ctx context.Context, dsmt *DjmdSongMyTag) error

Update updates a DjmdSongMyTag in the database.

func (*Client) UpdateDjmdSongPlaylist

func (c *Client) UpdateDjmdSongPlaylist(ctx context.Context, dsp *DjmdSongPlaylist) error

Update updates a DjmdSongPlaylist in the database.

func (*Client) UpdateDjmdSongRelatedTrack

func (c *Client) UpdateDjmdSongRelatedTrack(ctx context.Context, dsrt *DjmdSongRelatedTrack) error

Update updates a DjmdSongRelatedTrack in the database.

func (*Client) UpdateDjmdSongSampler

func (c *Client) UpdateDjmdSongSampler(ctx context.Context, dss *DjmdSongSampler) error

Update updates a DjmdSongSampler in the database.

func (*Client) UpdateDjmdSongTagList

func (c *Client) UpdateDjmdSongTagList(ctx context.Context, dstl *DjmdSongTagList) error

Update updates a DjmdSongTagList in the database.

func (*Client) UpdateDjmdSort

func (c *Client) UpdateDjmdSort(ctx context.Context, ds *DjmdSort) error

Update updates a DjmdSort in the database.

func (*Client) UpdateHotCueBanklistCue

func (c *Client) UpdateHotCueBanklistCue(ctx context.Context, hcbc *HotCueBanklistCue) error

Update updates a HotCueBanklistCue in the database.

func (*Client) UpdateImageFile

func (c *Client) UpdateImageFile(ctx context.Context, ifVal *ImageFile) error

Update updates a ImageFile in the database.

func (*Client) UpdateSettingFile

func (c *Client) UpdateSettingFile(ctx context.Context, sf *SettingFile) error

Update updates a SettingFile in the database.

func (*Client) UpdateUUIDIDMap

func (c *Client) UpdateUUIDIDMap(ctx context.Context, um *UUIDIDMap) error

Update updates a UUIDIDMap in the database.

func (*Client) UpsertAgentNotification

func (c *Client) UpsertAgentNotification(ctx context.Context, an *AgentNotification) error

Upsert performs an upsert for AgentNotification.

func (*Client) UpsertAgentNotificationLog

func (c *Client) UpsertAgentNotificationLog(ctx context.Context, anl *AgentNotificationLog) error

Upsert performs an upsert for AgentNotificationLog.

func (*Client) UpsertAgentRegistry

func (c *Client) UpsertAgentRegistry(ctx context.Context, ar *AgentRegistry) error

Upsert performs an upsert for AgentRegistry.

func (*Client) UpsertCloudAgentRegistry

func (c *Client) UpsertCloudAgentRegistry(ctx context.Context, car *CloudAgentRegistry) error

Upsert performs an upsert for CloudAgentRegistry.

func (*Client) UpsertContentActiveCensor

func (c *Client) UpsertContentActiveCensor(ctx context.Context, cac *ContentActiveCensor) error

Upsert performs an upsert for ContentActiveCensor.

func (*Client) UpsertContentCue

func (c *Client) UpsertContentCue(ctx context.Context, cc *ContentCue) error

Upsert performs an upsert for ContentCue.

func (*Client) UpsertContentFile

func (c *Client) UpsertContentFile(ctx context.Context, cf *ContentFile) error

Upsert performs an upsert for ContentFile.

func (*Client) UpsertDjmdActiveCensor

func (c *Client) UpsertDjmdActiveCensor(ctx context.Context, dac *DjmdActiveCensor) error

Upsert performs an upsert for DjmdActiveCensor.

func (*Client) UpsertDjmdAlbum

func (c *Client) UpsertDjmdAlbum(ctx context.Context, da *DjmdAlbum) error

Upsert performs an upsert for DjmdAlbum.

func (*Client) UpsertDjmdArtist

func (c *Client) UpsertDjmdArtist(ctx context.Context, da *DjmdArtist) error

Upsert performs an upsert for DjmdArtist.

func (*Client) UpsertDjmdCategory

func (c *Client) UpsertDjmdCategory(ctx context.Context, dc *DjmdCategory) error

Upsert performs an upsert for DjmdCategory.

func (*Client) UpsertDjmdCloudProperty

func (c *Client) UpsertDjmdCloudProperty(ctx context.Context, dcp *DjmdCloudProperty) error

Upsert performs an upsert for DjmdCloudProperty.

func (*Client) UpsertDjmdColor

func (c *Client) UpsertDjmdColor(ctx context.Context, dc *DjmdColor) error

Upsert performs an upsert for DjmdColor.

func (*Client) UpsertDjmdContent

func (c *Client) UpsertDjmdContent(ctx context.Context, dc *DjmdContent) error

Upsert performs an upsert for DjmdContent.

func (*Client) UpsertDjmdCue

func (c *Client) UpsertDjmdCue(ctx context.Context, dc *DjmdCue) error

Upsert performs an upsert for DjmdCue.

func (*Client) UpsertDjmdDevice

func (c *Client) UpsertDjmdDevice(ctx context.Context, dd *DjmdDevice) error

Upsert performs an upsert for DjmdDevice.

func (*Client) UpsertDjmdGenre

func (c *Client) UpsertDjmdGenre(ctx context.Context, dg *DjmdGenre) error

Upsert performs an upsert for DjmdGenre.

func (*Client) UpsertDjmdHistory

func (c *Client) UpsertDjmdHistory(ctx context.Context, dh *DjmdHistory) error

Upsert performs an upsert for DjmdHistory.

func (*Client) UpsertDjmdHotCueBanklist

func (c *Client) UpsertDjmdHotCueBanklist(ctx context.Context, dhcb *DjmdHotCueBanklist) error

Upsert performs an upsert for DjmdHotCueBanklist.

func (*Client) UpsertDjmdKey

func (c *Client) UpsertDjmdKey(ctx context.Context, dk *DjmdKey) error

Upsert performs an upsert for DjmdKey.

func (*Client) UpsertDjmdLabel

func (c *Client) UpsertDjmdLabel(ctx context.Context, dl *DjmdLabel) error

Upsert performs an upsert for DjmdLabel.

func (*Client) UpsertDjmdMenuItem

func (c *Client) UpsertDjmdMenuItem(ctx context.Context, dmi *DjmdMenuItem) error

Upsert performs an upsert for DjmdMenuItem.

func (*Client) UpsertDjmdMixerParam

func (c *Client) UpsertDjmdMixerParam(ctx context.Context, dmp *DjmdMixerParam) error

Upsert performs an upsert for DjmdMixerParam.

func (*Client) UpsertDjmdMyTag

func (c *Client) UpsertDjmdMyTag(ctx context.Context, dmt *DjmdMyTag) error

Upsert performs an upsert for DjmdMyTag.

func (*Client) UpsertDjmdPlaylist

func (c *Client) UpsertDjmdPlaylist(ctx context.Context, dp *DjmdPlaylist) error

Upsert performs an upsert for DjmdPlaylist.

func (*Client) UpsertDjmdProperty

func (c *Client) UpsertDjmdProperty(ctx context.Context, dp *DjmdProperty) error

Upsert performs an upsert for DjmdProperty.

func (*Client) UpsertDjmdRecommendLike

func (c *Client) UpsertDjmdRecommendLike(ctx context.Context, drl *DjmdRecommendLike) error

Upsert performs an upsert for DjmdRecommendLike.

func (*Client) UpsertDjmdRelatedTrack

func (c *Client) UpsertDjmdRelatedTrack(ctx context.Context, drt *DjmdRelatedTrack) error

Upsert performs an upsert for DjmdRelatedTrack.

func (*Client) UpsertDjmdSampler

func (c *Client) UpsertDjmdSampler(ctx context.Context, ds *DjmdSampler) error

Upsert performs an upsert for DjmdSampler.

func (*Client) UpsertDjmdSongHistory

func (c *Client) UpsertDjmdSongHistory(ctx context.Context, dsh *DjmdSongHistory) error

Upsert performs an upsert for DjmdSongHistory.

func (*Client) UpsertDjmdSongHotCueBanklist

func (c *Client) UpsertDjmdSongHotCueBanklist(ctx context.Context, dshcb *DjmdSongHotCueBanklist) error

Upsert performs an upsert for DjmdSongHotCueBanklist.

func (*Client) UpsertDjmdSongMyTag

func (c *Client) UpsertDjmdSongMyTag(ctx context.Context, dsmt *DjmdSongMyTag) error

Upsert performs an upsert for DjmdSongMyTag.

func (*Client) UpsertDjmdSongPlaylist

func (c *Client) UpsertDjmdSongPlaylist(ctx context.Context, dsp *DjmdSongPlaylist) error

Upsert performs an upsert for DjmdSongPlaylist.

func (*Client) UpsertDjmdSongRelatedTrack

func (c *Client) UpsertDjmdSongRelatedTrack(ctx context.Context, dsrt *DjmdSongRelatedTrack) error

Upsert performs an upsert for DjmdSongRelatedTrack.

func (*Client) UpsertDjmdSongSampler

func (c *Client) UpsertDjmdSongSampler(ctx context.Context, dss *DjmdSongSampler) error

Upsert performs an upsert for DjmdSongSampler.

func (*Client) UpsertDjmdSongTagList

func (c *Client) UpsertDjmdSongTagList(ctx context.Context, dstl *DjmdSongTagList) error

Upsert performs an upsert for DjmdSongTagList.

func (*Client) UpsertDjmdSort

func (c *Client) UpsertDjmdSort(ctx context.Context, ds *DjmdSort) error

Upsert performs an upsert for DjmdSort.

func (*Client) UpsertHotCueBanklistCue

func (c *Client) UpsertHotCueBanklistCue(ctx context.Context, hcbc *HotCueBanklistCue) error

Upsert performs an upsert for HotCueBanklistCue.

func (*Client) UpsertImageFile

func (c *Client) UpsertImageFile(ctx context.Context, ifVal *ImageFile) error

Upsert performs an upsert for ImageFile.

func (*Client) UpsertSettingFile

func (c *Client) UpsertSettingFile(ctx context.Context, sf *SettingFile) error

Upsert performs an upsert for SettingFile.

func (*Client) UpsertUUIDIDMap

func (c *Client) UpsertUUIDIDMap(ctx context.Context, um *UUIDIDMap) error

Upsert performs an upsert for UUIDIDMap.

type CloudAgentRegistry

type CloudAgentRegistry struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	Int1              nulltype.NullInt64  `json:"int1"`                 // int_1
	Int2              nulltype.NullInt64  `json:"int2"`                 // int_2
	Str1              nulltype.NullString `json:"str1"`                 // str_1
	Str2              nulltype.NullString `json:"str2"`                 // str_2
	Date1             *Time               `json:"date1"`                // date_1
	Date2             *Time               `json:"date2"`                // date_2
	Text1             nulltype.NullString `json:"text1"`                // text_1
	Text2             nulltype.NullString `json:"text2"`                // text_2
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

CloudAgentRegistry represents a row from 'cloudAgentRegistry'.

func (*CloudAgentRegistry) Deleted

func (car *CloudAgentRegistry) Deleted() bool

Deleted returns true when the CloudAgentRegistry has been marked for deletion from the database.

func (*CloudAgentRegistry) Exists

func (car *CloudAgentRegistry) Exists() bool

Exists returns true when the CloudAgentRegistry exists in the database.

type ConditionOperator

type ConditionOperator string
const (
	ConditionOperatorContains    ConditionOperator = "8"
	ConditionOperatorNotContains ConditionOperator = "9"
	ConditionOperatorEndsWith    ConditionOperator = "11"
)

type ContentActiveCensor

type ContentActiveCensor struct {
	ID                  nulltype.NullString `json:"id"`                    // ID
	ContentID           nulltype.NullString `json:"content_id"`            // ContentID
	ActiveCensors       nulltype.NullString `json:"active_censors"`        // ActiveCensors
	RbActivecensorCount nulltype.NullInt64  `json:"rb_activecensor_count"` // rb_activecensor_count
	UUID                nulltype.NullString `json:"uuid"`                  // UUID
	RbDataStatus        nulltype.NullInt64  `json:"rb_data_status"`        // rb_data_status
	RbLocalDataStatus   nulltype.NullInt64  `json:"rb_local_data_status"`  // rb_local_data_status
	RbLocalDeleted      nulltype.NullInt64  `json:"rb_local_deleted"`      // rb_local_deleted
	RbLocalSynced       nulltype.NullInt64  `json:"rb_local_synced"`       // rb_local_synced
	Usn                 nulltype.NullInt64  `json:"usn"`                   // usn
	RbLocalUsn          nulltype.NullInt64  `json:"rb_local_usn"`          // rb_local_usn
	CreatedAt           Time                `json:"created_at"`            // created_at
	UpdatedAt           Time                `json:"updated_at"`            // updated_at
	// contains filtered or unexported fields
}

ContentActiveCensor represents a row from 'contentActiveCensor'.

func (*ContentActiveCensor) Deleted

func (cac *ContentActiveCensor) Deleted() bool

Deleted returns true when the ContentActiveCensor has been marked for deletion from the database.

func (*ContentActiveCensor) Exists

func (cac *ContentActiveCensor) Exists() bool

Exists returns true when the ContentActiveCensor exists in the database.

type ContentCue

type ContentCue struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	ContentID         nulltype.NullString `json:"content_id"`           // ContentID
	Cues              nulltype.NullString `json:"cues"`                 // Cues
	RbCueCount        nulltype.NullInt64  `json:"rb_cue_count"`         // rb_cue_count
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

ContentCue represents a row from 'contentCue'.

func (*ContentCue) Deleted

func (cc *ContentCue) Deleted() bool

Deleted returns true when the ContentCue has been marked for deletion from the database.

func (*ContentCue) Exists

func (cc *ContentCue) Exists() bool

Exists returns true when the ContentCue exists in the database.

type ContentFile

type ContentFile struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	ContentID         nulltype.NullString `json:"content_id"`           // ContentID
	Path              nulltype.NullString `json:"path"`                 // Path
	Hash              nulltype.NullString `json:"hash"`                 // Hash
	Size              nulltype.NullInt64  `json:"size"`                 // Size
	RbLocalPath       nulltype.NullString `json:"rb_local_path"`        // rb_local_path
	RbInsyncHash      nulltype.NullString `json:"rb_insync_hash"`       // rb_insync_hash
	RbInsyncLocalUsn  nulltype.NullInt64  `json:"rb_insync_local_usn"`  // rb_insync_local_usn
	RbFileHashDirty   nulltype.NullInt64  `json:"rb_file_hash_dirty"`   // rb_file_hash_dirty
	RbLocalFileStatus nulltype.NullInt64  `json:"rb_local_file_status"` // rb_local_file_status
	RbInProgress      nulltype.NullInt64  `json:"rb_in_progress"`       // rb_in_progress
	RbProcessType     nulltype.NullInt64  `json:"rb_process_type"`      // rb_process_type
	RbTempPath        nulltype.NullString `json:"rb_temp_path"`         // rb_temp_path
	RbPriority        nulltype.NullInt64  `json:"rb_priority"`          // rb_priority
	RbFileSizeDirty   nulltype.NullInt64  `json:"rb_file_size_dirty"`   // rb_file_size_dirty
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

ContentFile represents a row from 'contentFile'.

func (*ContentFile) Deleted

func (cf *ContentFile) Deleted() bool

Deleted returns true when the ContentFile has been marked for deletion from the database.

func (*ContentFile) Exists

func (cf *ContentFile) Exists() bool

Exists returns true when the ContentFile exists in the database.

type DB

type DB interface {
	ExecContext(context.Context, string, ...interface{}) (sql.Result, error)
	QueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)
	QueryRowContext(context.Context, string, ...interface{}) *sql.Row
}

DB is the common interface for database operations that can be used with types from schema 'plaintext.db'.

This works with both database/sql.DB and database/sql.Tx.

type DjmdActiveCensor

type DjmdActiveCensor struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	ContentID         nulltype.NullString `json:"content_id"`           // ContentID
	InMsec            nulltype.NullInt64  `json:"in_msec"`              // InMsec
	OutMsec           nulltype.NullInt64  `json:"out_msec"`             // OutMsec
	Info              nulltype.NullInt64  `json:"info"`                 // Info
	ParameterList     nulltype.NullString `json:"parameter_list"`       // ParameterList
	ContentUUID       nulltype.NullString `json:"content_uuid"`         // ContentUUID
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdActiveCensor represents a row from 'djmdActiveCensor'.

func (*DjmdActiveCensor) Deleted

func (dac *DjmdActiveCensor) Deleted() bool

Deleted returns true when the DjmdActiveCensor has been marked for deletion from the database.

func (*DjmdActiveCensor) Exists

func (dac *DjmdActiveCensor) Exists() bool

Exists returns true when the DjmdActiveCensor exists in the database.

type DjmdAlbum

type DjmdAlbum struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	Name              nulltype.NullString `json:"name"`                 // Name
	AlbumArtistID     nulltype.NullString `json:"album_artist_id"`      // AlbumArtistID
	ImagePath         nulltype.NullString `json:"image_path"`           // ImagePath
	Compilation       nulltype.NullInt64  `json:"compilation"`          // Compilation
	SearchStr         nulltype.NullString `json:"search_str"`           // SearchStr
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdAlbum represents a row from 'djmdAlbum'.

func (*DjmdAlbum) Deleted

func (da *DjmdAlbum) Deleted() bool

Deleted returns true when the DjmdAlbum has been marked for deletion from the database.

func (*DjmdAlbum) Exists

func (da *DjmdAlbum) Exists() bool

Exists returns true when the DjmdAlbum exists in the database.

type DjmdArtist

type DjmdArtist struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	Name              nulltype.NullString `json:"name"`                 // Name
	SearchStr         nulltype.NullString `json:"search_str"`           // SearchStr
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdArtist represents a row from 'djmdArtist'.

func (*DjmdArtist) Deleted

func (da *DjmdArtist) Deleted() bool

Deleted returns true when the DjmdArtist has been marked for deletion from the database.

func (*DjmdArtist) Exists

func (da *DjmdArtist) Exists() bool

Exists returns true when the DjmdArtist exists in the database.

type DjmdCategory

type DjmdCategory struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	MenuItemID        nulltype.NullString `json:"menu_item_id"`         // MenuItemID
	Seq               nulltype.NullInt64  `json:"seq"`                  // Seq
	Disable           nulltype.NullInt64  `json:"disable"`              // Disable
	InfoOrder         nulltype.NullInt64  `json:"info_order"`           // InfoOrder
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdCategory represents a row from 'djmdCategory'.

func (*DjmdCategory) Deleted

func (dc *DjmdCategory) Deleted() bool

Deleted returns true when the DjmdCategory has been marked for deletion from the database.

func (*DjmdCategory) Exists

func (dc *DjmdCategory) Exists() bool

Exists returns true when the DjmdCategory exists in the database.

type DjmdCloudProperty

type DjmdCloudProperty struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	Reserved1         nulltype.NullString `json:"reserved1"`            // Reserved1
	Reserved2         nulltype.NullString `json:"reserved2"`            // Reserved2
	Reserved3         nulltype.NullString `json:"reserved3"`            // Reserved3
	Reserved4         nulltype.NullString `json:"reserved4"`            // Reserved4
	Reserved5         nulltype.NullString `json:"reserved5"`            // Reserved5
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdCloudProperty represents a row from 'djmdCloudProperty'.

func (*DjmdCloudProperty) Deleted

func (dcp *DjmdCloudProperty) Deleted() bool

Deleted returns true when the DjmdCloudProperty has been marked for deletion from the database.

func (*DjmdCloudProperty) Exists

func (dcp *DjmdCloudProperty) Exists() bool

Exists returns true when the DjmdCloudProperty exists in the database.

type DjmdColor

type DjmdColor struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	ColorCode         nulltype.NullInt64  `json:"color_code"`           // ColorCode
	SortKey           nulltype.NullInt64  `json:"sort_key"`             // SortKey
	Commnt            nulltype.NullString `json:"commnt"`               // Commnt
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdColor represents a row from 'djmdColor'.

func (*DjmdColor) Deleted

func (dc *DjmdColor) Deleted() bool

Deleted returns true when the DjmdColor has been marked for deletion from the database.

func (*DjmdColor) Exists

func (dc *DjmdColor) Exists() bool

Exists returns true when the DjmdColor exists in the database.

type DjmdContent

type DjmdContent struct {
	ID                nulltype.NullString  `json:"id"`                   // ID
	FolderPath        nulltype.NullString  `json:"folder_path"`          // FolderPath
	FileNameL         nulltype.NullString  `json:"file_name_l"`          // FileNameL
	FileNameS         nulltype.NullString  `json:"file_name_s"`          // FileNameS
	Title             nulltype.NullString  `json:"title"`                // Title
	ArtistID          nulltype.NullString  `json:"artist_id"`            // ArtistID
	AlbumID           nulltype.NullString  `json:"album_id"`             // AlbumID
	GenreID           nulltype.NullString  `json:"genre_id"`             // GenreID
	BPM               nulltype.NullInt64   `json:"bpm"`                  // BPM
	Length            nulltype.NullInt64   `json:"length"`               // Length
	TrackNo           nulltype.NullInt64   `json:"track_no"`             // TrackNo
	BitRate           nulltype.NullInt64   `json:"bit_rate"`             // BitRate
	BitDepth          nulltype.NullInt64   `json:"bit_depth"`            // BitDepth
	Commnt            nulltype.NullString  `json:"commnt"`               // Commnt
	FileType          nulltype.NullInt64   `json:"file_type"`            // FileType
	Rating            nulltype.NullInt64   `json:"rating"`               // Rating
	ReleaseYear       nulltype.NullInt64   `json:"release_year"`         // ReleaseYear
	RemixerID         nulltype.NullString  `json:"remixer_id"`           // RemixerID
	LabelID           nulltype.NullString  `json:"label_id"`             // LabelID
	OrgArtistID       nulltype.NullString  `json:"org_artist_id"`        // OrgArtistID
	KeyID             nulltype.NullString  `json:"key_id"`               // KeyID
	StockDate         nulltype.NullString  `json:"stock_date"`           // StockDate
	ColorID           nulltype.NullString  `json:"color_id"`             // ColorID
	DJPlayCount       nulltype.NullInt64   `json:"dj_play_count"`        // DJPlayCount
	ImagePath         nulltype.NullString  `json:"image_path"`           // ImagePath
	MasterDBID        nulltype.NullString  `json:"master_dbid"`          // MasterDBID
	MasterSongID      nulltype.NullString  `json:"master_song_id"`       // MasterSongID
	AnalysisDataPath  nulltype.NullString  `json:"analysis_data_path"`   // AnalysisDataPath
	SearchStr         nulltype.NullString  `json:"search_str"`           // SearchStr
	FileSize          nulltype.NullInt64   `json:"file_size"`            // FileSize
	DiscNo            nulltype.NullInt64   `json:"disc_no"`              // DiscNo
	ComposerID        nulltype.NullString  `json:"composer_id"`          // ComposerID
	Subtitle          nulltype.NullString  `json:"subtitle"`             // Subtitle
	SampleRate        nulltype.NullInt64   `json:"sample_rate"`          // SampleRate
	DisableQuantize   nulltype.NullInt64   `json:"disable_quantize"`     // DisableQuantize
	Analysed          nulltype.NullInt64   `json:"analysed"`             // Analysed
	ReleaseDate       nulltype.NullString  `json:"release_date"`         // ReleaseDate
	DateCreated       nulltype.NullString  `json:"date_created"`         // DateCreated
	ContentLink       nulltype.NullInt64   `json:"content_link"`         // ContentLink
	Tag               nulltype.NullString  `json:"tag"`                  // Tag
	ModifiedByRBM     nulltype.NullString  `json:"modified_by_rbm"`      // ModifiedByRBM
	HotCueAutoLoad    nulltype.NullString  `json:"hot_cue_auto_load"`    // HotCueAutoLoad
	DeliveryControl   nulltype.NullString  `json:"delivery_control"`     // DeliveryControl
	DeliveryComment   nulltype.NullString  `json:"delivery_comment"`     // DeliveryComment
	CueUpdated        nulltype.NullString  `json:"cue_updated"`          // CueUpdated
	AnalysisUpdated   nulltype.NullString  `json:"analysis_updated"`     // AnalysisUpdated
	TrackInfoUpdated  nulltype.NullString  `json:"track_info_updated"`   // TrackInfoUpdated
	Lyricist          nulltype.NullString  `json:"lyricist"`             // Lyricist
	ISRC              nulltype.NullString  `json:"isrc"`                 // ISRC
	SamplerTrackInfo  nulltype.NullInt64   `json:"sampler_track_info"`   // SamplerTrackInfo
	SamplerPlayOffset nulltype.NullInt64   `json:"sampler_play_offset"`  // SamplerPlayOffset
	SamplerGain       nulltype.NullFloat64 `json:"sampler_gain"`         // SamplerGain
	VideoAssociate    nulltype.NullString  `json:"video_associate"`      // VideoAssociate
	LyricStatus       nulltype.NullInt64   `json:"lyric_status"`         // LyricStatus
	ServiceID         nulltype.NullInt64   `json:"service_id"`           // ServiceID
	OrgFolderPath     nulltype.NullString  `json:"org_folder_path"`      // OrgFolderPath
	Reserved1         nulltype.NullString  `json:"reserved1"`            // Reserved1
	Reserved2         nulltype.NullString  `json:"reserved2"`            // Reserved2
	Reserved3         nulltype.NullString  `json:"reserved3"`            // Reserved3
	Reserved4         nulltype.NullString  `json:"reserved4"`            // Reserved4
	ExtInfo           nulltype.NullString  `json:"ext_info"`             // ExtInfo
	RbFileID          nulltype.NullString  `json:"rb_file_id"`           // rb_file_id
	DeviceID          nulltype.NullString  `json:"device_id"`            // DeviceID
	RbLocalFolderPath nulltype.NullString  `json:"rb_local_folder_path"` // rb_LocalFolderPath
	SrcID             nulltype.NullString  `json:"src_id"`               // SrcID
	SrcTitle          nulltype.NullString  `json:"src_title"`            // SrcTitle
	SrcArtistName     nulltype.NullString  `json:"src_artist_name"`      // SrcArtistName
	SrcAlbumName      nulltype.NullString  `json:"src_album_name"`       // SrcAlbumName
	SrcLength         nulltype.NullInt64   `json:"src_length"`           // SrcLength
	UUID              nulltype.NullString  `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64   `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64   `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64   `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64   `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64   `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64   `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                 `json:"created_at"`           // created_at
	UpdatedAt         Time                 `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdContent represents a row from 'djmdContent'.

func (*DjmdContent) Deleted

func (dc *DjmdContent) Deleted() bool

Deleted returns true when the DjmdContent has been marked for deletion from the database.

func (*DjmdContent) Exists

func (dc *DjmdContent) Exists() bool

Exists returns true when the DjmdContent exists in the database.

type DjmdCue

type DjmdCue struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	ContentID         nulltype.NullString `json:"content_id"`           // ContentID
	InMsec            nulltype.NullInt64  `json:"in_msec"`              // InMsec
	InFrame           nulltype.NullInt64  `json:"in_frame"`             // InFrame
	InMpegFrame       nulltype.NullInt64  `json:"in_mpeg_frame"`        // InMpegFrame
	InMpegAbs         nulltype.NullInt64  `json:"in_mpeg_abs"`          // InMpegAbs
	OutMsec           nulltype.NullInt64  `json:"out_msec"`             // OutMsec
	OutFrame          nulltype.NullInt64  `json:"out_frame"`            // OutFrame
	OutMpegFrame      nulltype.NullInt64  `json:"out_mpeg_frame"`       // OutMpegFrame
	OutMpegAbs        nulltype.NullInt64  `json:"out_mpeg_abs"`         // OutMpegAbs
	Kind              nulltype.NullInt64  `json:"kind"`                 // Kind
	Color             nulltype.NullInt64  `json:"color"`                // Color
	ColorTableIndex   nulltype.NullInt64  `json:"color_table_index"`    // ColorTableIndex
	ActiveLoop        nulltype.NullInt64  `json:"active_loop"`          // ActiveLoop
	Comment           nulltype.NullString `json:"comment"`              // Comment
	BeatLoopSize      nulltype.NullInt64  `json:"beat_loop_size"`       // BeatLoopSize
	CueMicrosec       nulltype.NullInt64  `json:"cue_microsec"`         // CueMicrosec
	InPointSeekInfo   nulltype.NullString `json:"in_point_seek_info"`   // InPointSeekInfo
	OutPointSeekInfo  nulltype.NullString `json:"out_point_seek_info"`  // OutPointSeekInfo
	ContentUUID       nulltype.NullString `json:"content_uuid"`         // ContentUUID
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdCue represents a row from 'djmdCue'.

func (*DjmdCue) Deleted

func (dc *DjmdCue) Deleted() bool

Deleted returns true when the DjmdCue has been marked for deletion from the database.

func (*DjmdCue) Exists

func (dc *DjmdCue) Exists() bool

Exists returns true when the DjmdCue exists in the database.

type DjmdDevice

type DjmdDevice struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	MasterDBID        nulltype.NullString `json:"master_dbid"`          // MasterDBID
	Name              nulltype.NullString `json:"name"`                 // Name
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdDevice represents a row from 'djmdDevice'.

func (*DjmdDevice) Deleted

func (dd *DjmdDevice) Deleted() bool

Deleted returns true when the DjmdDevice has been marked for deletion from the database.

func (*DjmdDevice) Exists

func (dd *DjmdDevice) Exists() bool

Exists returns true when the DjmdDevice exists in the database.

type DjmdGenre

type DjmdGenre struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	Name              nulltype.NullString `json:"name"`                 // Name
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdGenre represents a row from 'djmdGenre'.

func (*DjmdGenre) Deleted

func (dg *DjmdGenre) Deleted() bool

Deleted returns true when the DjmdGenre has been marked for deletion from the database.

func (*DjmdGenre) Exists

func (dg *DjmdGenre) Exists() bool

Exists returns true when the DjmdGenre exists in the database.

type DjmdHistory

type DjmdHistory struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	Seq               nulltype.NullInt64  `json:"seq"`                  // Seq
	Name              nulltype.NullString `json:"name"`                 // Name
	Attribute         nulltype.NullInt64  `json:"attribute"`            // Attribute
	ParentID          nulltype.NullString `json:"parent_id"`            // ParentID
	DateCreated       nulltype.NullString `json:"date_created"`         // DateCreated
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdHistory represents a row from 'djmdHistory'.

func (*DjmdHistory) Deleted

func (dh *DjmdHistory) Deleted() bool

Deleted returns true when the DjmdHistory has been marked for deletion from the database.

func (*DjmdHistory) Exists

func (dh *DjmdHistory) Exists() bool

Exists returns true when the DjmdHistory exists in the database.

type DjmdHotCueBanklist

type DjmdHotCueBanklist struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	Seq               nulltype.NullInt64  `json:"seq"`                  // Seq
	Name              nulltype.NullString `json:"name"`                 // Name
	ImagePath         nulltype.NullString `json:"image_path"`           // ImagePath
	Attribute         nulltype.NullInt64  `json:"attribute"`            // Attribute
	ParentID          nulltype.NullString `json:"parent_id"`            // ParentID
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdHotCueBanklist represents a row from 'djmdHotCueBanklist'.

func (*DjmdHotCueBanklist) Deleted

func (dhcb *DjmdHotCueBanklist) Deleted() bool

Deleted returns true when the DjmdHotCueBanklist has been marked for deletion from the database.

func (*DjmdHotCueBanklist) Exists

func (dhcb *DjmdHotCueBanklist) Exists() bool

Exists returns true when the DjmdHotCueBanklist exists in the database.

type DjmdKey

type DjmdKey struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	ScaleName         nulltype.NullString `json:"scale_name"`           // ScaleName
	Seq               nulltype.NullInt64  `json:"seq"`                  // Seq
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdKey represents a row from 'djmdKey'.

func (*DjmdKey) Deleted

func (dk *DjmdKey) Deleted() bool

Deleted returns true when the DjmdKey has been marked for deletion from the database.

func (*DjmdKey) Exists

func (dk *DjmdKey) Exists() bool

Exists returns true when the DjmdKey exists in the database.

type DjmdLabel

type DjmdLabel struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	Name              nulltype.NullString `json:"name"`                 // Name
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdLabel represents a row from 'djmdLabel'.

func (*DjmdLabel) Deleted

func (dl *DjmdLabel) Deleted() bool

Deleted returns true when the DjmdLabel has been marked for deletion from the database.

func (*DjmdLabel) Exists

func (dl *DjmdLabel) Exists() bool

Exists returns true when the DjmdLabel exists in the database.

type DjmdMenuItem

type DjmdMenuItem struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	Class             nulltype.NullInt64  `json:"class"`                // Class
	Name              nulltype.NullString `json:"name"`                 // Name
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdMenuItem represents a row from 'djmdMenuItems'.

func (*DjmdMenuItem) Deleted

func (dmi *DjmdMenuItem) Deleted() bool

Deleted returns true when the DjmdMenuItem has been marked for deletion from the database.

func (*DjmdMenuItem) Exists

func (dmi *DjmdMenuItem) Exists() bool

Exists returns true when the DjmdMenuItem exists in the database.

type DjmdMixerParam

type DjmdMixerParam struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	ContentID         nulltype.NullString `json:"content_id"`           // ContentID
	GainHigh          nulltype.NullInt64  `json:"gain_high"`            // GainHigh
	GainLow           nulltype.NullInt64  `json:"gain_low"`             // GainLow
	PeakHigh          nulltype.NullInt64  `json:"peak_high"`            // PeakHigh
	PeakLow           nulltype.NullInt64  `json:"peak_low"`             // PeakLow
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdMixerParam represents a row from 'djmdMixerParam'.

func (*DjmdMixerParam) Deleted

func (dmp *DjmdMixerParam) Deleted() bool

Deleted returns true when the DjmdMixerParam has been marked for deletion from the database.

func (*DjmdMixerParam) Exists

func (dmp *DjmdMixerParam) Exists() bool

Exists returns true when the DjmdMixerParam exists in the database.

type DjmdMyTag

type DjmdMyTag struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	Seq               nulltype.NullInt64  `json:"seq"`                  // Seq
	Name              nulltype.NullString `json:"name"`                 // Name
	Attribute         nulltype.NullInt64  `json:"attribute"`            // Attribute
	ParentID          nulltype.NullString `json:"parent_id"`            // ParentID
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdMyTag represents a row from 'djmdMyTag'.

func (*DjmdMyTag) Deleted

func (dmt *DjmdMyTag) Deleted() bool

Deleted returns true when the DjmdMyTag has been marked for deletion from the database.

func (*DjmdMyTag) Exists

func (dmt *DjmdMyTag) Exists() bool

Exists returns true when the DjmdMyTag exists in the database.

type DjmdPlaylist

type DjmdPlaylist struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	Seq               nulltype.NullInt64  `json:"seq"`                  // Seq
	Name              nulltype.NullString `json:"name"`                 // Name
	ImagePath         nulltype.NullString `json:"image_path"`           // ImagePath
	Attribute         nulltype.NullInt64  `json:"attribute"`            // Attribute
	ParentID          nulltype.NullString `json:"parent_id"`            // ParentID
	SmartList         nulltype.NullString `json:"smart_list"`           // SmartList
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdPlaylist represents a row from 'djmdPlaylist'.

func (*DjmdPlaylist) Deleted

func (dp *DjmdPlaylist) Deleted() bool

Deleted returns true when the DjmdPlaylist has been marked for deletion from the database.

func (*DjmdPlaylist) Exists

func (dp *DjmdPlaylist) Exists() bool

Exists returns true when the DjmdPlaylist exists in the database.

func (*DjmdPlaylist) IsSmartlist

func (dp *DjmdPlaylist) IsSmartlist() bool

IsSmartlist returns a bool whether the current playlist is a smartlist or not

func (*DjmdPlaylist) SmartlistNode

func (dp *DjmdPlaylist) SmartlistNode() *DjmdPlaylistNode

type DjmdPlaylistNode

type DjmdPlaylistNode struct {
	Id              string                       `xml:"Id,attr"`
	LogicalOperator LogicalOperator              `xml:"LogicalOperator,attr"`
	AutomaticUpdate string                       `xml:"AutomaticUpdate,attr"`
	Conditions      []*DjmdPlaylistNodeCondition `xml:"CONDITION"`
}

type DjmdPlaylistNodeCondition

type DjmdPlaylistNodeCondition struct {
	PropertyName PropertyName      `xml:"PropertyName,attr"`
	Operator     ConditionOperator `xml:"Operator,attr"`
	ValueUnit    string            `xml:"ValueUnit,attr"`
	ValueLeft    string            `xml:"ValueLeft,attr"`
	ValueRight   string            `xml:"ValueRight,attr"`
}

func (*DjmdPlaylistNodeCondition) ParseValueLeft

func (c *DjmdPlaylistNodeCondition) ParseValueLeft() string

ParseValueLeft returns the correctly parsed MyTag ID for the left value Rekordbox stores values as int32 in the DB, so high values will overflow into a negative value this helper function corrects the value back to it's int64 form so it can be used for proper querying

type DjmdProperty

type DjmdProperty struct {
	DBID           nulltype.NullString `json:"dbid"`             // DBID
	DBVersion      nulltype.NullString `json:"db_version"`       // DBVersion
	BaseDBDrive    nulltype.NullString `json:"base_db_drive"`    // BaseDBDrive
	CurrentDBDrive nulltype.NullString `json:"current_db_drive"` // CurrentDBDrive
	DeviceID       nulltype.NullString `json:"device_id"`        // DeviceID
	Reserved1      nulltype.NullString `json:"reserved1"`        // Reserved1
	Reserved2      nulltype.NullString `json:"reserved2"`        // Reserved2
	Reserved3      nulltype.NullString `json:"reserved3"`        // Reserved3
	Reserved4      nulltype.NullString `json:"reserved4"`        // Reserved4
	Reserved5      nulltype.NullString `json:"reserved5"`        // Reserved5
	CreatedAt      Time                `json:"created_at"`       // created_at
	UpdatedAt      Time                `json:"updated_at"`       // updated_at
	// contains filtered or unexported fields
}

DjmdProperty represents a row from 'djmdProperty'.

func (*DjmdProperty) Deleted

func (dp *DjmdProperty) Deleted() bool

Deleted returns true when the DjmdProperty has been marked for deletion from the database.

func (*DjmdProperty) Exists

func (dp *DjmdProperty) Exists() bool

Exists returns true when the DjmdProperty exists in the database.

type DjmdRecommendLike

type DjmdRecommendLike struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	ContentId1        nulltype.NullString `json:"content_id1"`          // ContentID1
	ContentId2        nulltype.NullString `json:"content_id2"`          // ContentID2
	LikeRate          nulltype.NullInt64  `json:"like_rate"`            // LikeRate
	DataCreatedH      nulltype.NullInt64  `json:"data_created_h"`       // DataCreatedH
	DataCreatedL      nulltype.NullInt64  `json:"data_created_l"`       // DataCreatedL
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdRecommendLike represents a row from 'djmdRecommendLike'.

func (*DjmdRecommendLike) Deleted

func (drl *DjmdRecommendLike) Deleted() bool

Deleted returns true when the DjmdRecommendLike has been marked for deletion from the database.

func (*DjmdRecommendLike) Exists

func (drl *DjmdRecommendLike) Exists() bool

Exists returns true when the DjmdRecommendLike exists in the database.

type DjmdRelatedTrack

type DjmdRelatedTrack struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	Seq               nulltype.NullInt64  `json:"seq"`                  // Seq
	Name              nulltype.NullString `json:"name"`                 // Name
	Attribute         nulltype.NullInt64  `json:"attribute"`            // Attribute
	ParentID          nulltype.NullString `json:"parent_id"`            // ParentID
	Criteria          nulltype.NullString `json:"criteria"`             // Criteria
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdRelatedTrack represents a row from 'djmdRelatedTracks'.

func (*DjmdRelatedTrack) Deleted

func (drt *DjmdRelatedTrack) Deleted() bool

Deleted returns true when the DjmdRelatedTrack has been marked for deletion from the database.

func (*DjmdRelatedTrack) Exists

func (drt *DjmdRelatedTrack) Exists() bool

Exists returns true when the DjmdRelatedTrack exists in the database.

type DjmdSampler

type DjmdSampler struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	Seq               nulltype.NullInt64  `json:"seq"`                  // Seq
	Name              nulltype.NullString `json:"name"`                 // Name
	Attribute         nulltype.NullInt64  `json:"attribute"`            // Attribute
	ParentID          nulltype.NullString `json:"parent_id"`            // ParentID
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdSampler represents a row from 'djmdSampler'.

func (*DjmdSampler) Deleted

func (ds *DjmdSampler) Deleted() bool

Deleted returns true when the DjmdSampler has been marked for deletion from the database.

func (*DjmdSampler) Exists

func (ds *DjmdSampler) Exists() bool

Exists returns true when the DjmdSampler exists in the database.

type DjmdSongHistory

type DjmdSongHistory struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	HistoryID         nulltype.NullString `json:"history_id"`           // HistoryID
	ContentID         nulltype.NullString `json:"content_id"`           // ContentID
	TrackNo           nulltype.NullInt64  `json:"track_no"`             // TrackNo
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdSongHistory represents a row from 'djmdSongHistory'.

func (*DjmdSongHistory) Deleted

func (dsh *DjmdSongHistory) Deleted() bool

Deleted returns true when the DjmdSongHistory has been marked for deletion from the database.

func (*DjmdSongHistory) Exists

func (dsh *DjmdSongHistory) Exists() bool

Exists returns true when the DjmdSongHistory exists in the database.

type DjmdSongHotCueBanklist

type DjmdSongHotCueBanklist struct {
	ID                 nulltype.NullString `json:"id"`                    // ID
	HotCueBanklistID   nulltype.NullString `json:"hot_cue_banklist_id"`   // HotCueBanklistID
	ContentID          nulltype.NullString `json:"content_id"`            // ContentID
	TrackNo            nulltype.NullInt64  `json:"track_no"`              // TrackNo
	CueID              nulltype.NullString `json:"cue_id"`                // CueID
	InMsec             nulltype.NullInt64  `json:"in_msec"`               // InMsec
	InFrame            nulltype.NullInt64  `json:"in_frame"`              // InFrame
	InMpegFrame        nulltype.NullInt64  `json:"in_mpeg_frame"`         // InMpegFrame
	InMpegAbs          nulltype.NullInt64  `json:"in_mpeg_abs"`           // InMpegAbs
	OutMsec            nulltype.NullInt64  `json:"out_msec"`              // OutMsec
	OutFrame           nulltype.NullInt64  `json:"out_frame"`             // OutFrame
	OutMpegFrame       nulltype.NullInt64  `json:"out_mpeg_frame"`        // OutMpegFrame
	OutMpegAbs         nulltype.NullInt64  `json:"out_mpeg_abs"`          // OutMpegAbs
	Color              nulltype.NullInt64  `json:"color"`                 // Color
	ColorTableIndex    nulltype.NullInt64  `json:"color_table_index"`     // ColorTableIndex
	ActiveLoop         nulltype.NullInt64  `json:"active_loop"`           // ActiveLoop
	Comment            nulltype.NullString `json:"comment"`               // Comment
	BeatLoopSize       nulltype.NullInt64  `json:"beat_loop_size"`        // BeatLoopSize
	CueMicrosec        nulltype.NullInt64  `json:"cue_microsec"`          // CueMicrosec
	InPointSeekInfo    nulltype.NullString `json:"in_point_seek_info"`    // InPointSeekInfo
	OutPointSeekInfo   nulltype.NullString `json:"out_point_seek_info"`   // OutPointSeekInfo
	HotCueBanklistUUID nulltype.NullString `json:"hot_cue_banklist_uuid"` // HotCueBanklistUUID
	UUID               nulltype.NullString `json:"uuid"`                  // UUID
	RbDataStatus       nulltype.NullInt64  `json:"rb_data_status"`        // rb_data_status
	RbLocalDataStatus  nulltype.NullInt64  `json:"rb_local_data_status"`  // rb_local_data_status
	RbLocalDeleted     nulltype.NullInt64  `json:"rb_local_deleted"`      // rb_local_deleted
	RbLocalSynced      nulltype.NullInt64  `json:"rb_local_synced"`       // rb_local_synced
	Usn                nulltype.NullInt64  `json:"usn"`                   // usn
	RbLocalUsn         nulltype.NullInt64  `json:"rb_local_usn"`          // rb_local_usn
	CreatedAt          Time                `json:"created_at"`            // created_at
	UpdatedAt          Time                `json:"updated_at"`            // updated_at
	// contains filtered or unexported fields
}

DjmdSongHotCueBanklist represents a row from 'djmdSongHotCueBanklist'.

func (*DjmdSongHotCueBanklist) Deleted

func (dshcb *DjmdSongHotCueBanklist) Deleted() bool

Deleted returns true when the DjmdSongHotCueBanklist has been marked for deletion from the database.

func (*DjmdSongHotCueBanklist) Exists

func (dshcb *DjmdSongHotCueBanklist) Exists() bool

Exists returns true when the DjmdSongHotCueBanklist exists in the database.

type DjmdSongMyTag

type DjmdSongMyTag struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	MyTagID           nulltype.NullString `json:"my_tag_id"`            // MyTagID
	ContentID         nulltype.NullString `json:"content_id"`           // ContentID
	TrackNo           nulltype.NullInt64  `json:"track_no"`             // TrackNo
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdSongMyTag represents a row from 'djmdSongMyTag'.

func (*DjmdSongMyTag) Deleted

func (dsmt *DjmdSongMyTag) Deleted() bool

Deleted returns true when the DjmdSongMyTag has been marked for deletion from the database.

func (*DjmdSongMyTag) Exists

func (dsmt *DjmdSongMyTag) Exists() bool

Exists returns true when the DjmdSongMyTag exists in the database.

type DjmdSongPlaylist

type DjmdSongPlaylist struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	PlaylistID        nulltype.NullString `json:"playlist_id"`          // PlaylistID
	ContentID         nulltype.NullString `json:"content_id"`           // ContentID
	TrackNo           nulltype.NullInt64  `json:"track_no"`             // TrackNo
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdSongPlaylist represents a row from 'djmdSongPlaylist'.

func (*DjmdSongPlaylist) Deleted

func (dsp *DjmdSongPlaylist) Deleted() bool

Deleted returns true when the DjmdSongPlaylist has been marked for deletion from the database.

func (*DjmdSongPlaylist) Exists

func (dsp *DjmdSongPlaylist) Exists() bool

Exists returns true when the DjmdSongPlaylist exists in the database.

type DjmdSongRelatedTrack

type DjmdSongRelatedTrack struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	RelatedTracksID   nulltype.NullString `json:"related_tracks_id"`    // RelatedTracksID
	ContentID         nulltype.NullString `json:"content_id"`           // ContentID
	TrackNo           nulltype.NullInt64  `json:"track_no"`             // TrackNo
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdSongRelatedTrack represents a row from 'djmdSongRelatedTracks'.

func (*DjmdSongRelatedTrack) Deleted

func (dsrt *DjmdSongRelatedTrack) Deleted() bool

Deleted returns true when the DjmdSongRelatedTrack has been marked for deletion from the database.

func (*DjmdSongRelatedTrack) Exists

func (dsrt *DjmdSongRelatedTrack) Exists() bool

Exists returns true when the DjmdSongRelatedTrack exists in the database.

type DjmdSongSampler

type DjmdSongSampler struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	SamplerID         nulltype.NullString `json:"sampler_id"`           // SamplerID
	ContentID         nulltype.NullString `json:"content_id"`           // ContentID
	TrackNo           nulltype.NullInt64  `json:"track_no"`             // TrackNo
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdSongSampler represents a row from 'djmdSongSampler'.

func (*DjmdSongSampler) Deleted

func (dss *DjmdSongSampler) Deleted() bool

Deleted returns true when the DjmdSongSampler has been marked for deletion from the database.

func (*DjmdSongSampler) Exists

func (dss *DjmdSongSampler) Exists() bool

Exists returns true when the DjmdSongSampler exists in the database.

type DjmdSongTagList

type DjmdSongTagList struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	ContentID         nulltype.NullString `json:"content_id"`           // ContentID
	TrackNo           nulltype.NullInt64  `json:"track_no"`             // TrackNo
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdSongTagList represents a row from 'djmdSongTagList'.

func (*DjmdSongTagList) Deleted

func (dstl *DjmdSongTagList) Deleted() bool

Deleted returns true when the DjmdSongTagList has been marked for deletion from the database.

func (*DjmdSongTagList) Exists

func (dstl *DjmdSongTagList) Exists() bool

Exists returns true when the DjmdSongTagList exists in the database.

type DjmdSort

type DjmdSort struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	MenuItemID        nulltype.NullString `json:"menu_item_id"`         // MenuItemID
	Seq               nulltype.NullInt64  `json:"seq"`                  // Seq
	Disable           nulltype.NullInt64  `json:"disable"`              // Disable
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

DjmdSort represents a row from 'djmdSort'.

func (*DjmdSort) Deleted

func (ds *DjmdSort) Deleted() bool

Deleted returns true when the DjmdSort has been marked for deletion from the database.

func (*DjmdSort) Exists

func (ds *DjmdSort) Exists() bool

Exists returns true when the DjmdSort exists in the database.

type ErrInsertFailed

type ErrInsertFailed struct {
	Err error
}

ErrInsertFailed is the insert failed error.

func (*ErrInsertFailed) Error

func (err *ErrInsertFailed) Error() string

Error satisfies the error interface.

func (*ErrInsertFailed) Unwrap

func (err *ErrInsertFailed) Unwrap() error

Unwrap satisfies the unwrap interface.

type ErrInvalidTime

type ErrInvalidTime string

ErrInvalidTime is the invalid Time error.

func (ErrInvalidTime) Error

func (err ErrInvalidTime) Error() string

Error satisfies the error interface.

type ErrUpdateFailed

type ErrUpdateFailed struct {
	Err error
}

ErrUpdateFailed is the update failed error.

func (*ErrUpdateFailed) Error

func (err *ErrUpdateFailed) Error() string

Error satisfies the error interface.

func (*ErrUpdateFailed) Unwrap

func (err *ErrUpdateFailed) Unwrap() error

Unwrap satisfies the unwrap interface.

type ErrUpsertFailed

type ErrUpsertFailed struct {
	Err error
}

ErrUpsertFailed is the upsert failed error.

func (*ErrUpsertFailed) Error

func (err *ErrUpsertFailed) Error() string

Error satisfies the error interface.

func (*ErrUpsertFailed) Unwrap

func (err *ErrUpsertFailed) Unwrap() error

Unwrap satisfies the unwrap interface.

type Error

type Error string

Error is an error.

const (
	// ErrAlreadyExists is the already exists error.
	ErrAlreadyExists Error = "already exists"
	// ErrDoesNotExist is the does not exist error.
	ErrDoesNotExist Error = "does not exist"
	// ErrMarkedForDeletion is the marked for deletion error.
	ErrMarkedForDeletion Error = "marked for deletion"
)

Error values.

func (Error) Error

func (err Error) Error() string

Error satisfies the error interface.

type HotCueBanklistCue

type HotCueBanklistCue struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	HotCueBanklistID  nulltype.NullString `json:"hot_cue_banklist_id"`  // HotCueBanklistID
	Cues              nulltype.NullString `json:"cues"`                 // Cues
	RbCueCount        nulltype.NullInt64  `json:"rb_cue_count"`         // rb_cue_count
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

HotCueBanklistCue represents a row from 'hotCueBanklistCue'.

func (*HotCueBanklistCue) Deleted

func (hcbc *HotCueBanklistCue) Deleted() bool

Deleted returns true when the HotCueBanklistCue has been marked for deletion from the database.

func (*HotCueBanklistCue) Exists

func (hcbc *HotCueBanklistCue) Exists() bool

Exists returns true when the HotCueBanklistCue exists in the database.

type ImageFile

type ImageFile struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	TableName         nulltype.NullString `json:"table_name"`           // TableName
	TargetUUID        nulltype.NullString `json:"target_uuid"`          // TargetUUID
	TargetID          nulltype.NullString `json:"target_id"`            // TargetID
	Path              nulltype.NullString `json:"path"`                 // Path
	Hash              nulltype.NullString `json:"hash"`                 // Hash
	Size              nulltype.NullInt64  `json:"size"`                 // Size
	RbLocalPath       nulltype.NullString `json:"rb_local_path"`        // rb_local_path
	RbInsyncHash      nulltype.NullString `json:"rb_insync_hash"`       // rb_insync_hash
	RbInsyncLocalUsn  nulltype.NullInt64  `json:"rb_insync_local_usn"`  // rb_insync_local_usn
	RbFileHashDirty   nulltype.NullInt64  `json:"rb_file_hash_dirty"`   // rb_file_hash_dirty
	RbLocalFileStatus nulltype.NullInt64  `json:"rb_local_file_status"` // rb_local_file_status
	RbInProgress      nulltype.NullInt64  `json:"rb_in_progress"`       // rb_in_progress
	RbProcessType     nulltype.NullInt64  `json:"rb_process_type"`      // rb_process_type
	RbTempPath        nulltype.NullString `json:"rb_temp_path"`         // rb_temp_path
	RbPriority        nulltype.NullInt64  `json:"rb_priority"`          // rb_priority
	RbFileSizeDirty   nulltype.NullInt64  `json:"rb_file_size_dirty"`   // rb_file_size_dirty
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

ImageFile represents a row from 'imageFile'.

func (*ImageFile) Deleted

func (ifVal *ImageFile) Deleted() bool

Deleted returns true when the ImageFile has been marked for deletion from the database.

func (*ImageFile) Exists

func (ifVal *ImageFile) Exists() bool

Exists returns true when the ImageFile exists in the database.

type LogicalOperator

type LogicalOperator string
const (
	LogicalOperatorAllOf LogicalOperator = "1"
	LogicalOperatorAnyOf LogicalOperator = "2"
)

type PropertyName

type PropertyName string
const (
	PropertyNameMyTag  PropertyName = "myTag"
	PropertyNameArtist PropertyName = "artist"
)

type SettingFile

type SettingFile struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	Path              nulltype.NullString `json:"path"`                 // Path
	Hash              nulltype.NullString `json:"hash"`                 // Hash
	Size              nulltype.NullInt64  `json:"size"`                 // Size
	RbLocalPath       nulltype.NullString `json:"rb_local_path"`        // rb_local_path
	RbInsyncHash      nulltype.NullString `json:"rb_insync_hash"`       // rb_insync_hash
	RbInsyncLocalUsn  nulltype.NullInt64  `json:"rb_insync_local_usn"`  // rb_insync_local_usn
	RbFileHashDirty   nulltype.NullInt64  `json:"rb_file_hash_dirty"`   // rb_file_hash_dirty
	RbFileSizeDirty   nulltype.NullInt64  `json:"rb_file_size_dirty"`   // rb_file_size_dirty
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

SettingFile represents a row from 'settingFile'.

func (*SettingFile) Deleted

func (sf *SettingFile) Deleted() bool

Deleted returns true when the SettingFile has been marked for deletion from the database.

func (*SettingFile) Exists

func (sf *SettingFile) Exists() bool

Exists returns true when the SettingFile exists in the database.

type Time

type Time struct {
	// contains filtered or unexported fields
}

Time is a SQLite3 Time that scans for the various timestamps values used by SQLite3 database drivers to store time.Time values.

func NewTime

func NewTime(t time.Time) Time

NewTime creates a time.

func (Time) Format

func (t Time) Format(layout string) string

Format formats the time.

func (*Time) Parse

func (t *Time) Parse(s string) error

Parse attempts to Parse string s to t.

func (*Time) Scan

func (t *Time) Scan(v interface{}) error

Scan satisfies the sql.Scanner interface.

func (Time) String

func (t Time) String() string

String satisfies the fmt.Stringer interface.

func (Time) Time

func (t Time) Time() time.Time

Time returns a time.Time.

func (Time) Value

func (t Time) Value() (driver.Value, error)

Value satisfies the sql/driver.Valuer interface.

type UUIDIDMap

type UUIDIDMap struct {
	ID                nulltype.NullString `json:"id"`                   // ID
	TableName         nulltype.NullString `json:"table_name"`           // TableName
	TargetUUID        nulltype.NullString `json:"target_uuid"`          // TargetUUID
	CurrentID         nulltype.NullString `json:"current_id"`           // CurrentID
	UUID              nulltype.NullString `json:"uuid"`                 // UUID
	RbDataStatus      nulltype.NullInt64  `json:"rb_data_status"`       // rb_data_status
	RbLocalDataStatus nulltype.NullInt64  `json:"rb_local_data_status"` // rb_local_data_status
	RbLocalDeleted    nulltype.NullInt64  `json:"rb_local_deleted"`     // rb_local_deleted
	RbLocalSynced     nulltype.NullInt64  `json:"rb_local_synced"`      // rb_local_synced
	Usn               nulltype.NullInt64  `json:"usn"`                  // usn
	RbLocalUsn        nulltype.NullInt64  `json:"rb_local_usn"`         // rb_local_usn
	CreatedAt         Time                `json:"created_at"`           // created_at
	UpdatedAt         Time                `json:"updated_at"`           // updated_at
	// contains filtered or unexported fields
}

UUIDIDMap represents a row from 'uuidIDMap'.

func (*UUIDIDMap) Deleted

func (um *UUIDIDMap) Deleted() bool

Deleted returns true when the UUIDIDMap has been marked for deletion from the database.

func (*UUIDIDMap) Exists

func (um *UUIDIDMap) Exists() bool

Exists returns true when the UUIDIDMap exists in the database.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL