LTable

scalation.database.table.LTable
See theLTable companion class
object LTable

The LTable companion object provides factory methods for creating linkable-tables. Supported domains/data-types are 'D'ouble, 'I'nt, 'L'ong, 'S'tring, and 'T'imeNum.

Attributes

Companion
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
LTable.type

Members list

Inherited
  • Not inherited
  • Mirror

Type members

Inherited and Abstract types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Value members

Concrete methods

def apply(name: String, schema: String, domain_: String, key: String): LTable

Create a linkable-table given convenient string specifications.

Create a linkable-table given convenient string specifications.

Value parameters

domain_

the domains/data-types for attributes ('D', 'I', 'L', 'S', 'X', 'T')

key

the attributes forming the primary key

name

the name of the linkable-table

schema

the attributes for the linkable-table

Attributes

def apply(name: String, tab: Table): LTable

Create a new empty linkable-table with the same schema as an existing table.

Create a new empty linkable-table with the same schema as an existing table.

Value parameters

name

the name of the new linkable-table

tab

the existing table

Attributes