alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (SQLTypes.dot)

This example Scala source code file (SQLTypes.dot) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

binarystringtype, characterstringtype, characterstringtype, charactertype, datatype, datatype, datetimetype, datetimetype, int, int, numerictype, stringtype, timestamptype, timetype

The Scala SQLTypes.dot source code

digraph SQLTypes {
  node [shape = record]
  DataType [label = "{DataType|nullable: Boolean}"]
  StringType [label = "{StringType|maxLength: Int}"]
  CharacterStringType [label = "{CharacterStringType|encoding: String}"]
  CharacterType [label = "{CharacterType|length: Int}"]
  CharacterVaryingType [label = "{CharacterVaryingType|length: Int}"]
  CharacterLargeObjectType [label = "CharacterLargeObjectType"]
  BinaryStringType [label = "BinaryStringType"]
  BinaryType [label = "{BinaryType|length: Int}"]
  BinaryVaryingType [label = "{BinaryVaryingType|length: Int}"]
  BinaryLargeObjectType [label = "BinaryLargeObjectType"]
  BooleanType [label = "BooleanType"]
  NumericType [label = "{NumericType|precisionRadix: Int\nprecision: Int}"]
  ExactNumericType [label = "{ExactNumericType|scale: Int}"]
  ApproximateNumericType [label = "ApproximateNumericType"]
  DateTimeType [label = "DateTimeType"]
  TimeType [label = "{TimeType|precisionRadix: Int\nsecondScale: Int}"]
  TimeWithoutTimezoneType [label = "TimeWithoutTimezoneType"]
  TimeWithTimezoneType [label = "TimeWithTimezoneType"]
  TimestampType [label = "{TimestampType|precisionRadix: Int\nsecondScale: Int}"]
  TimestampWithoutTimezoneType [label = "TimestampWithoutTimezoneType"]
  TimestampWithTimezoneType [label = "TimestampWithTimezoneType"]
  DateType [label = "DateType"]
  IntervalType [label = "{IntervalType|precisionRadix: Int\nsecondScale: Int}"]
  StringType -> DataType
  BooleanType -> DataType
  NumericType -> DataType
  DateTimeType -> DataType
  IntervalType -> DataType
  CharacterStringType -> StringType
  BinaryStringType -> StringType
  ExactNumericType -> NumericType
  ApproximateNumericType -> NumericType
  TimeType -> DateTimeType
  TimestampType -> DateTimeType
  DateType -> DateTimeType
  CharacterType -> CharacterStringType
  CharacterVaryingType -> CharacterStringType
  CharacterLargeObjectType -> CharacterStringType
  BinaryType -> BinaryStringType
  BinaryVaryingType -> BinaryStringType
  BinaryLargeObjectType -> BinaryStringType
  TimeWithoutTimezoneType -> TimeType
  TimeWithTimezoneType -> TimeType
  TimestampWithoutTimezoneType -> TimestampType
  TimestampWithTimezoneType -> TimestampType
}

Other Scala examples (source code examples)

Here is a short list of links related to this Scala SQLTypes.dot source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.