oracle

package
v0.0.0-...-61f4137 Latest Latest
Warning

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

Go to latest
Published: Jun 24, 2018 License: MIT Imports: 8 Imported by: 0

Documentation

Overview

Package oracle contains the types for schema 'django'.

Package oracle contains the types for schema 'django'.

Package oracle contains the types for schema 'django'.

Package oracle contains the types for schema 'django'.

Package oracle contains the types for schema 'django'.

Package oracle contains the types for schema 'django'.

Package oracle contains the types for schema 'django'.

Package oracle contains the types for schema 'django'.

Package oracle contains the types for schema 'django'.

Package oracle contains the types for schema 'django'.

Package oracle contains the types for schema 'django'.

Index

Constants

This section is empty.

Variables

View Source
var XOLog = func(string, ...interface{}) {}

XOLog provides the log func used by generated queries.

Functions

This section is empty.

Types

type AuthGroup

type AuthGroup struct {
	ID   float64        // id
	Name sql.NullString // name
	// contains filtered or unexported fields
}

AuthGroup represents a row from 'django.auth_group'.

func AuthGroupByID

func AuthGroupByID(db XODB, id float64) (*AuthGroup, error)

AuthGroupByID retrieves a row from 'django.auth_group' as a AuthGroup.

Generated from index 'sys_c004961'.

func AuthGroupByName

func AuthGroupByName(db XODB, name sql.NullString) (*AuthGroup, error)

AuthGroupByName retrieves a row from 'django.auth_group' as a AuthGroup.

Generated from index 'sys_c004962'.

func (*AuthGroup) Delete

func (ag *AuthGroup) Delete(db XODB) error

Delete deletes the AuthGroup from the database.

func (*AuthGroup) Deleted

func (ag *AuthGroup) Deleted() bool

Deleted provides information if the AuthGroup has been deleted from the database.

func (*AuthGroup) Exists

func (ag *AuthGroup) Exists() bool

Exists determines if the AuthGroup exists in the database.

func (*AuthGroup) Insert

func (ag *AuthGroup) Insert(db XODB) error

Insert inserts the AuthGroup to the database.

func (*AuthGroup) Save

func (ag *AuthGroup) Save(db XODB) error

Save saves the AuthGroup to the database.

func (*AuthGroup) Update

func (ag *AuthGroup) Update(db XODB) error

Update updates the AuthGroup in the database.

type AuthGroupPermission

type AuthGroupPermission struct {
	ID           float64 // id
	GroupID      float64 // group_id
	PermissionID float64 // permission_id
	// contains filtered or unexported fields
}

AuthGroupPermission represents a row from 'django.auth_group_permissions'.

func AuthGroupPermissionByGroupIDPermissionID

func AuthGroupPermissionByGroupIDPermissionID(db XODB, groupID float64, permissionID float64) (*AuthGroupPermission, error)

AuthGroupPermissionByGroupIDPermissionID retrieves a row from 'django.auth_group_permissions' as a AuthGroupPermission.

Generated from index 'auth_gr_group_id_0cd325b0_uniq'.

func AuthGroupPermissionByID

func AuthGroupPermissionByID(db XODB, id float64) (*AuthGroupPermission, error)

AuthGroupPermissionByID retrieves a row from 'django.auth_group_permissions' as a AuthGroupPermission.

Generated from index 'sys_c004966'.

func AuthGroupPermissionsByGroupID

func AuthGroupPermissionsByGroupID(db XODB, groupID float64) ([]*AuthGroupPermission, error)

AuthGroupPermissionsByGroupID retrieves a row from 'django.auth_group_permissions' as a AuthGroupPermission.

Generated from index 'auth_group_permissions_0e9922a'.

func AuthGroupPermissionsByPermissionID

func AuthGroupPermissionsByPermissionID(db XODB, permissionID float64) ([]*AuthGroupPermission, error)

AuthGroupPermissionsByPermissionID retrieves a row from 'django.auth_group_permissions' as a AuthGroupPermission.

Generated from index 'auth_group_permissions_837a862'.

func (*AuthGroupPermission) AuthGroup

func (agp *AuthGroupPermission) AuthGroup(db XODB) (*AuthGroup, error)

AuthGroup returns the AuthGroup associated with the AuthGroupPermission's GroupID (group_id).

Generated from foreign key 'd8d9bb561f901fa4368b2f47ec4595'.

func (*AuthGroupPermission) AuthPermission

func (agp *AuthGroupPermission) AuthPermission(db XODB) (*AuthPermission, error)

AuthPermission returns the AuthPermission associated with the AuthGroupPermission's PermissionID (permission_id).

Generated from foreign key 'd3a8e8b82f849f85dde3b6bfffe8d7'.

func (*AuthGroupPermission) Delete

func (agp *AuthGroupPermission) Delete(db XODB) error

Delete deletes the AuthGroupPermission from the database.

func (*AuthGroupPermission) Deleted

func (agp *AuthGroupPermission) Deleted() bool

Deleted provides information if the AuthGroupPermission has been deleted from the database.

func (*AuthGroupPermission) Exists

func (agp *AuthGroupPermission) Exists() bool

Exists determines if the AuthGroupPermission exists in the database.

func (*AuthGroupPermission) Insert

func (agp *AuthGroupPermission) Insert(db XODB) error

Insert inserts the AuthGroupPermission to the database.

func (*AuthGroupPermission) Save

func (agp *AuthGroupPermission) Save(db XODB) error

Save saves the AuthGroupPermission to the database.

func (*AuthGroupPermission) Update

func (agp *AuthGroupPermission) Update(db XODB) error

Update updates the AuthGroupPermission in the database.

type AuthPermission

type AuthPermission struct {
	ID            float64        // id
	Name          sql.NullString // name
	ContentTypeID float64        // content_type_id
	Codename      sql.NullString // codename
	// contains filtered or unexported fields
}

AuthPermission represents a row from 'django.auth_permission'.

func AuthPermissionByContentTypeIDCodename

func AuthPermissionByContentTypeIDCodename(db XODB, contentTypeID float64, codename sql.NullString) (*AuthPermission, error)

AuthPermissionByContentTypeIDCodename retrieves a row from 'django.auth_permission' as a AuthPermission.

Generated from index 'content_type_id_01ab375a_uniq'.

func AuthPermissionByID

func AuthPermissionByID(db XODB, id float64) (*AuthPermission, error)

AuthPermissionByID retrieves a row from 'django.auth_permission' as a AuthPermission.

Generated from index 'sys_c004959'.

func AuthPermissionsByContentTypeID

func AuthPermissionsByContentTypeID(db XODB, contentTypeID float64) ([]*AuthPermission, error)

AuthPermissionsByContentTypeID retrieves a row from 'django.auth_permission' as a AuthPermission.

Generated from index 'auth_permission_417f1b1c'.

func (*AuthPermission) Delete

func (ap *AuthPermission) Delete(db XODB) error

Delete deletes the AuthPermission from the database.

func (*AuthPermission) Deleted

func (ap *AuthPermission) Deleted() bool

Deleted provides information if the AuthPermission has been deleted from the database.

func (*AuthPermission) DjangoContentType

func (ap *AuthPermission) DjangoContentType(db XODB) (*DjangoContentType, error)

DjangoContentType returns the DjangoContentType associated with the AuthPermission's ContentTypeID (content_type_id).

Generated from foreign key 'cca0f0681577d4054ed10f5351689a'.

func (*AuthPermission) Exists

func (ap *AuthPermission) Exists() bool

Exists determines if the AuthPermission exists in the database.

func (*AuthPermission) Insert

func (ap *AuthPermission) Insert(db XODB) error

Insert inserts the AuthPermission to the database.

func (*AuthPermission) Save

func (ap *AuthPermission) Save(db XODB) error

Save saves the AuthPermission to the database.

func (*AuthPermission) Update

func (ap *AuthPermission) Update(db XODB) error

Update updates the AuthPermission in the database.

type AuthUser

type AuthUser struct {
	ID          float64        // id
	Password    sql.NullString // password
	LastLogin   time.Time      // last_login
	IsSuperuser float64        // is_superuser
	Username    sql.NullString // username
	FirstName   sql.NullString // first_name
	LastName    sql.NullString // last_name
	Email       sql.NullString // email
	IsStaff     float64        // is_staff
	IsActive    float64        // is_active
	DateJoined  time.Time      // date_joined
	// contains filtered or unexported fields
}

AuthUser represents a row from 'django.auth_user'.

func AuthUserByID

func AuthUserByID(db XODB, id float64) (*AuthUser, error)

AuthUserByID retrieves a row from 'django.auth_user' as a AuthUser.

Generated from index 'sys_c004976'.

func AuthUserByUsername

func AuthUserByUsername(db XODB, username sql.NullString) (*AuthUser, error)

AuthUserByUsername retrieves a row from 'django.auth_user' as a AuthUser.

Generated from index 'sys_c004977'.

func (*AuthUser) Delete

func (au *AuthUser) Delete(db XODB) error

Delete deletes the AuthUser from the database.

func (*AuthUser) Deleted

func (au *AuthUser) Deleted() bool

Deleted provides information if the AuthUser has been deleted from the database.

func (*AuthUser) Exists

func (au *AuthUser) Exists() bool

Exists determines if the AuthUser exists in the database.

func (*AuthUser) Insert

func (au *AuthUser) Insert(db XODB) error

Insert inserts the AuthUser to the database.

func (*AuthUser) Save

func (au *AuthUser) Save(db XODB) error

Save saves the AuthUser to the database.

func (*AuthUser) Update

func (au *AuthUser) Update(db XODB) error

Update updates the AuthUser in the database.

type AuthUserGroup

type AuthUserGroup struct {
	ID      float64 // id
	UserID  float64 // user_id
	GroupID float64 // group_id
	// contains filtered or unexported fields
}

AuthUserGroup represents a row from 'django.auth_user_groups'.

func AuthUserGroupByID

func AuthUserGroupByID(db XODB, id float64) (*AuthUserGroup, error)

AuthUserGroupByID retrieves a row from 'django.auth_user_groups' as a AuthUserGroup.

Generated from index 'sys_c004981'.

func AuthUserGroupByUserIDGroupID

func AuthUserGroupByUserIDGroupID(db XODB, userID float64, groupID float64) (*AuthUserGroup, error)

AuthUserGroupByUserIDGroupID retrieves a row from 'django.auth_user_groups' as a AuthUserGroup.

Generated from index 'auth_use_user_id_94350c0c_uniq'.

func AuthUserGroupsByGroupID

func AuthUserGroupsByGroupID(db XODB, groupID float64) ([]*AuthUserGroup, error)

AuthUserGroupsByGroupID retrieves a row from 'django.auth_user_groups' as a AuthUserGroup.

Generated from index 'auth_user_groups_0e939a4f'.

func AuthUserGroupsByUserID

func AuthUserGroupsByUserID(db XODB, userID float64) ([]*AuthUserGroup, error)

AuthUserGroupsByUserID retrieves a row from 'django.auth_user_groups' as a AuthUserGroup.

Generated from index 'auth_user_groups_e8701ad4'.

func (*AuthUserGroup) AuthGroup

func (aug *AuthUserGroup) AuthGroup(db XODB) (*AuthGroup, error)

AuthGroup returns the AuthGroup associated with the AuthUserGroup's GroupID (group_id).

Generated from foreign key 'd4df5aa43b7a11d5087657477980dd'.

func (*AuthUserGroup) AuthUser

func (aug *AuthUserGroup) AuthUser(db XODB) (*AuthUser, error)

AuthUser returns the AuthUser associated with the AuthUserGroup's UserID (user_id).

Generated from foreign key 'd881e738ee2c423d0ae87ce23de220'.

func (*AuthUserGroup) Delete

func (aug *AuthUserGroup) Delete(db XODB) error

Delete deletes the AuthUserGroup from the database.

func (*AuthUserGroup) Deleted

func (aug *AuthUserGroup) Deleted() bool

Deleted provides information if the AuthUserGroup has been deleted from the database.

func (*AuthUserGroup) Exists

func (aug *AuthUserGroup) Exists() bool

Exists determines if the AuthUserGroup exists in the database.

func (*AuthUserGroup) Insert

func (aug *AuthUserGroup) Insert(db XODB) error

Insert inserts the AuthUserGroup to the database.

func (*AuthUserGroup) Save

func (aug *AuthUserGroup) Save(db XODB) error

Save saves the AuthUserGroup to the database.

func (*AuthUserGroup) Update

func (aug *AuthUserGroup) Update(db XODB) error

Update updates the AuthUserGroup in the database.

type AuthUserUserPermission

type AuthUserUserPermission struct {
	ID           float64 // id
	UserID       float64 // user_id
	PermissionID float64 // permission_id
	// contains filtered or unexported fields
}

AuthUserUserPermission represents a row from 'django.auth_user_user_permissions'.

func AuthUserUserPermissionByID

func AuthUserUserPermissionByID(db XODB, id float64) (*AuthUserUserPermission, error)

AuthUserUserPermissionByID retrieves a row from 'django.auth_user_user_permissions' as a AuthUserUserPermission.

Generated from index 'sys_c004985'.

func AuthUserUserPermissionByUserIDPermissionID

func AuthUserUserPermissionByUserIDPermissionID(db XODB, userID float64, permissionID float64) (*AuthUserUserPermission, error)

AuthUserUserPermissionByUserIDPermissionID retrieves a row from 'django.auth_user_user_permissions' as a AuthUserUserPermission.

Generated from index 'auth_use_user_id_14a6b632_uniq'.

func AuthUserUserPermissionsByPermissionID

func AuthUserUserPermissionsByPermissionID(db XODB, permissionID float64) ([]*AuthUserUserPermission, error)

AuthUserUserPermissionsByPermissionID retrieves a row from 'django.auth_user_user_permissions' as a AuthUserUserPermission.

Generated from index 'auth_user_user_permissions8afe'.

func AuthUserUserPermissionsByUserID

func AuthUserUserPermissionsByUserID(db XODB, userID float64) ([]*AuthUserUserPermission, error)

AuthUserUserPermissionsByUserID retrieves a row from 'django.auth_user_user_permissions' as a AuthUserUserPermission.

Generated from index 'auth_user_user_permissions1cca'.

func (*AuthUserUserPermission) AuthPermission

func (auup *AuthUserUserPermission) AuthPermission(db XODB) (*AuthPermission, error)

AuthPermission returns the AuthPermission associated with the AuthUserUserPermission's PermissionID (permission_id).

Generated from foreign key 'd86aa2ae91c20ae0c7ed11fa07e6da'.

func (*AuthUserUserPermission) AuthUser

func (auup *AuthUserUserPermission) AuthUser(db XODB) (*AuthUser, error)

AuthUser returns the AuthUser associated with the AuthUserUserPermission's UserID (user_id).

Generated from foreign key 'd9da0966de759042d839a70a2bd885'.

func (*AuthUserUserPermission) Delete

func (auup *AuthUserUserPermission) Delete(db XODB) error

Delete deletes the AuthUserUserPermission from the database.

func (*AuthUserUserPermission) Deleted

func (auup *AuthUserUserPermission) Deleted() bool

Deleted provides information if the AuthUserUserPermission has been deleted from the database.

func (*AuthUserUserPermission) Exists

func (auup *AuthUserUserPermission) Exists() bool

Exists determines if the AuthUserUserPermission exists in the database.

func (*AuthUserUserPermission) Insert

func (auup *AuthUserUserPermission) Insert(db XODB) error

Insert inserts the AuthUserUserPermission to the database.

func (*AuthUserUserPermission) Save

func (auup *AuthUserUserPermission) Save(db XODB) error

Save saves the AuthUserUserPermission to the database.

func (*AuthUserUserPermission) Update

func (auup *AuthUserUserPermission) Update(db XODB) error

Update updates the AuthUserUserPermission in the database.

type DjangoAdminLog

type DjangoAdminLog struct {
	ID            float64         // id
	ActionTime    time.Time       // action_time
	ObjectID      sql.NullString  // object_id
	ObjectRepr    sql.NullString  // object_repr
	ActionFlag    float64         // action_flag
	ChangeMessage sql.NullString  // change_message
	ContentTypeID sql.NullFloat64 // content_type_id
	UserID        float64         // user_id
	// contains filtered or unexported fields
}

DjangoAdminLog represents a row from 'django.django_admin_log'.

func DjangoAdminLogByID

func DjangoAdminLogByID(db XODB, id float64) (*DjangoAdminLog, error)

DjangoAdminLogByID retrieves a row from 'django.django_admin_log' as a DjangoAdminLog.

Generated from index 'sys_c005002'.

func DjangoAdminLogsByContentTypeID

func DjangoAdminLogsByContentTypeID(db XODB, contentTypeID sql.NullFloat64) ([]*DjangoAdminLog, error)

DjangoAdminLogsByContentTypeID retrieves a row from 'django.django_admin_log' as a DjangoAdminLog.

Generated from index 'django_admin_log_417f1b1c'.

func DjangoAdminLogsByUserID

func DjangoAdminLogsByUserID(db XODB, userID float64) ([]*DjangoAdminLog, error)

DjangoAdminLogsByUserID retrieves a row from 'django.django_admin_log' as a DjangoAdminLog.

Generated from index 'django_admin_log_e8701ad4'.

func (*DjangoAdminLog) AuthUser

func (dal *DjangoAdminLog) AuthUser(db XODB) (*AuthUser, error)

AuthUser returns the AuthUser associated with the DjangoAdminLog's UserID (user_id).

Generated from foreign key 'e3cca4fe721a3e54da54a29c371971'.

func (*DjangoAdminLog) Delete

func (dal *DjangoAdminLog) Delete(db XODB) error

Delete deletes the DjangoAdminLog from the database.

func (*DjangoAdminLog) Deleted

func (dal *DjangoAdminLog) Deleted() bool

Deleted provides information if the DjangoAdminLog has been deleted from the database.

func (*DjangoAdminLog) DjangoContentType

func (dal *DjangoAdminLog) DjangoContentType(db XODB) (*DjangoContentType, error)

DjangoContentType returns the DjangoContentType associated with the DjangoAdminLog's ContentTypeID (content_type_id).

Generated from foreign key 'd66d09ff3188e34f6a42ff99b3e0eb'.

func (*DjangoAdminLog) Exists

func (dal *DjangoAdminLog) Exists() bool

Exists determines if the DjangoAdminLog exists in the database.

func (*DjangoAdminLog) Insert

func (dal *DjangoAdminLog) Insert(db XODB) error

Insert inserts the DjangoAdminLog to the database.

func (*DjangoAdminLog) Save

func (dal *DjangoAdminLog) Save(db XODB) error

Save saves the DjangoAdminLog to the database.

func (*DjangoAdminLog) Update

func (dal *DjangoAdminLog) Update(db XODB) error

Update updates the DjangoAdminLog in the database.

type DjangoContentType

type DjangoContentType struct {
	ID       float64        // id
	AppLabel sql.NullString // app_label
	Model    sql.NullString // model
	// contains filtered or unexported fields
}

DjangoContentType represents a row from 'django.django_content_type'.

func DjangoContentTypeByAppLabelModel

func DjangoContentTypeByAppLabelModel(db XODB, appLabel sql.NullString, model sql.NullString) (*DjangoContentType, error)

DjangoContentTypeByAppLabelModel retrieves a row from 'django.django_content_type' as a DjangoContentType.

Generated from index 'django_app_label_76bd3d3b_uniq'.

func DjangoContentTypeByID

func DjangoContentTypeByID(db XODB, id float64) (*DjangoContentType, error)

DjangoContentTypeByID retrieves a row from 'django.django_content_type' as a DjangoContentType.

Generated from index 'sys_c004955'.

func (*DjangoContentType) Delete

func (dct *DjangoContentType) Delete(db XODB) error

Delete deletes the DjangoContentType from the database.

func (*DjangoContentType) Deleted

func (dct *DjangoContentType) Deleted() bool

Deleted provides information if the DjangoContentType has been deleted from the database.

func (*DjangoContentType) Exists

func (dct *DjangoContentType) Exists() bool

Exists determines if the DjangoContentType exists in the database.

func (*DjangoContentType) Insert

func (dct *DjangoContentType) Insert(db XODB) error

Insert inserts the DjangoContentType to the database.

func (*DjangoContentType) Save

func (dct *DjangoContentType) Save(db XODB) error

Save saves the DjangoContentType to the database.

func (*DjangoContentType) Update

func (dct *DjangoContentType) Update(db XODB) error

Update updates the DjangoContentType in the database.

type DjangoMigration

type DjangoMigration struct {
	ID      float64        // id
	App     sql.NullString // app
	Name    sql.NullString // name
	Applied time.Time      // applied
	// contains filtered or unexported fields
}

DjangoMigration represents a row from 'django.django_migrations'.

func DjangoMigrationByID

func DjangoMigrationByID(db XODB, id float64) (*DjangoMigration, error)

DjangoMigrationByID retrieves a row from 'django.django_migrations' as a DjangoMigration.

Generated from index 'sys_c004953'.

func (*DjangoMigration) Delete

func (dm *DjangoMigration) Delete(db XODB) error

Delete deletes the DjangoMigration from the database.

func (*DjangoMigration) Deleted

func (dm *DjangoMigration) Deleted() bool

Deleted provides information if the DjangoMigration has been deleted from the database.

func (*DjangoMigration) Exists

func (dm *DjangoMigration) Exists() bool

Exists determines if the DjangoMigration exists in the database.

func (*DjangoMigration) Insert

func (dm *DjangoMigration) Insert(db XODB) error

Insert inserts the DjangoMigration to the database.

func (*DjangoMigration) Save

func (dm *DjangoMigration) Save(db XODB) error

Save saves the DjangoMigration to the database.

func (*DjangoMigration) Update

func (dm *DjangoMigration) Update(db XODB) error

Update updates the DjangoMigration in the database.

type DjangoSession

type DjangoSession struct {
	SessionKey  string         // session_key
	SessionData sql.NullString // session_data
	ExpireDate  time.Time      // expire_date
	// contains filtered or unexported fields
}

DjangoSession represents a row from 'django.django_session'.

func DjangoSessionBySessionKey

func DjangoSessionBySessionKey(db XODB, sessionKey string) (*DjangoSession, error)

DjangoSessionBySessionKey retrieves a row from 'django.django_session' as a DjangoSession.

Generated from index 'sys_c005007'.

func DjangoSessionsByExpireDate

func DjangoSessionsByExpireDate(db XODB, expireDate time.Time) ([]*DjangoSession, error)

DjangoSessionsByExpireDate retrieves a row from 'django.django_session' as a DjangoSession.

Generated from index 'django_session_de54fa62'.

func (*DjangoSession) Delete

func (ds *DjangoSession) Delete(db XODB) error

Delete deletes the DjangoSession from the database.

func (*DjangoSession) Deleted

func (ds *DjangoSession) Deleted() bool

Deleted provides information if the DjangoSession has been deleted from the database.

func (*DjangoSession) Exists

func (ds *DjangoSession) Exists() bool

Exists determines if the DjangoSession exists in the database.

func (*DjangoSession) Insert

func (ds *DjangoSession) Insert(db XODB) error

Insert inserts the DjangoSession to the database.

func (*DjangoSession) Save

func (ds *DjangoSession) Save(db XODB) error

Save saves the DjangoSession to the database.

func (*DjangoSession) Update

func (ds *DjangoSession) Update(db XODB) error

Update updates the DjangoSession in the database.

type ScannerValuer

type ScannerValuer interface {
	sql.Scanner
	driver.Valuer
}

ScannerValuer is the common interface for types that implement both the database/sql.Scanner and sql/driver.Valuer interfaces.

type Slice

type Slice []ScannerValuer

Slice is a slice of ScannerValuers.

type StringSlice

type StringSlice []string

StringSlice is a slice of strings.

func (*StringSlice) Scan

func (ss *StringSlice) Scan(src interface{}) error

Scan satisfies the sql.Scanner interface for StringSlice.

func (StringSlice) Value

func (ss StringSlice) Value() (driver.Value, error)

Value satisfies the driver.Valuer interface for StringSlice.

type XODB

type XODB interface {
	Exec(string, ...interface{}) (sql.Result, error)
	Query(string, ...interface{}) (*sql.Rows, error)
	QueryRow(string, ...interface{}) *sql.Row
}

XODB is the common interface for database operations that can be used with types from schema 'django'.

This should work with database/sql.DB and database/sql.Tx.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL