Voedger Internals
  • Introduction
  • 💡Concepts
    • Event Sourcing & CQRS
    • Editions (deprecated)
      • Community Edition
      • Standart Edition
      • Standart Edition (v1)
  • 🚀Server
    • Overview (Server)
    • Design
      • Query Processor
      • API Gateway implementation
      • N1 Cluster
      • N3 Cluster
      • N5 Cluster
      • Orchestration
      • Sequences
      • Packages overview
        • sys
        • registry
    • Features
      • API Gateway
        • API v2
          • Conventions
            • API URL
            • HTTP methods and processors
            • Naming conventions
            • Query constraints
            • Error handling
          • Documents and records
            • Create document or record
            • Update document or record
            • Deactivate document or record
            • Read document or record
            • Read from CDoc collection
          • Queries
            • Read from query
          • Views
            • Read from view
          • Commands
            • Execute command
          • BLOBs
            • Create BLOB
            • Read BLOB
          • Temporary BLOBs
            • Create temporary BLOB
            • Read temporary BLOB
          • Schemas
            • List app workspaces
            • List workspace roles
            • Read workspace role schema
        • API v1
          • API Conventions
          • BLOBs
      • Admin Endpoint
      • Clusters
        • Bootstrap
        • Monitoring
        • Secure prometheus and grafana
        • Alerting
        • Maintenance
          • SELECT, UPDATE
      • VVMs
      • Applications
        • Deploy Application
        • Sidecar Applications
      • AuthNZ
        • Issue Principal Token
        • Refresh Principal Token
        • Enrich Principal Token
        • ACL Rules
        • Global Roles
      • Data types
        • Core types
        • Small integers
        • Uniques With Multiple Fields
        • Verifiable Fields
      • Workspaces
        • Create Workspace
        • Deactivate Workspace
        • See also (Workspaces)
      • Invites
        • Invite to Workspace
        • Join Workspace
        • Leave Workspace
        • Cancel sent Invite
        • Cancel accepted Invite
        • Update Invite roles
      • Users
        • Create a new user
        • Change user password
        • Send Email
        • Reset password
        • Change Email
      • Notifications
        • Heartbeats
      • Devices
        • Create a new device
        • Join device to workspace
      • Jobs
      • DMBS Drivers
        • AmazonDB Driver
      • Frozen
        • Ephemeral Storage
        • Storage Extensions
  • 🛠️Framework
    • Overview (Framework)
    • Features
      • vpm
      • vpm init
      • vpm tidy
      • vpm baseline
      • vpm orm
      • vpm build
      • API for testing
  • Development
    • Requirements Management
    • Requirements Management (Overview)
Powered by GitBook
On this page
  • General-purpose data types
  • Voedger-specific data types
  • Addressed issues

Was this helpful?

Edit on GitHub
  1. 🚀Server
  2. Features
  3. Data types

Core types

General-purpose data types

Data Type (sql-2016)
Aliases
Description

character varying [(n)]

varchar [(n)], text [(n)]

variable-length character string of n bytes: 1..65535, def. 255

binary varying [(n)]

varbinary [(n)], bytes [(n)]

variable-length binary data of n bytes: is 1..65535, def. 255

bigint

int64

signed eight-byte integer

integer

int, int32

signed four-byte integer

smallint

int16

signed two-byte integer

tinyint

int8

signed one-byte integer

real

float, float32

single precision floating-point number (4 bytes)

double precision

float64

double precision floating-point number (8 bytes)

timestamp

date and time (no time zone)

boolean

bool

logical Boolean (true/false)

binary large object

blob

binary data

Voedger-specific data types

Data Type (voedger)
Aliases
Description

currency

money

currency amount, accurate to a ten-thousandth of the units

qualified name

qname

package and entity

record

record inherited from crecord/orecord/wrecord

Addressed issues

PreviousData typesNextSmall integers

Last updated 19 days ago

Was this helpful?

VSQL Types