ProcessMIX Guide
  • Platform Overview
    • Introduction
    • Platform Purpose
    • Main Concepts
      • Organization Structure
      • Visual Language
      • Project Development Environment (IDE)
      • Deployment and Integration
      • Administration and Troubleshooting
    • First Steps
    • Change Log
      • 5.0.0
      • 5.0.5
      • 5.0.5.1
      • 5.0.5.2
      • 5.0.5.3
      • 5.0.5.4
  • Language Reference Guide
    • Overview
    • Data Structures and Types
      • Core Types (pdk.core)
      • Dictionary (pdk.asset.dictionary)
      • Scorecard (pdk.asset.scorecard)
      • Blockchain (pdk.blockchain)
      • Exceptions (pdk.ex)
      • Input/Output (pdk.io)
      • JSON Web Token (pdk.jwt)
      • Networking (pdk.net)
      • HTTP (pdk.net.http)
      • SOAP/Web Services (pdk.net.soap)
      • XML/DOM (pdk.net.xml)
      • S3 (pdk.s3)
      • SQL (pdk.sql)
      • Postgres (pdk.db.postgre)
      • Util (pdk.util)
      • Default Data Structure Field Values
    • Flows
      • Variables
        • Local Flow Variables
        • Node Variables
      • Flow Node Types
        • Core Nodes
          • In
          • Out
          • Assign
          • If
          • Switch
          • Iterator
          • Function Call
          • Subflow
          • Raise Exception
          • Exception Handler
          • Validator
        • Connector Nodes
          • Database Begin Transaction
          • Database Commit Transaction
          • Database Rollback Transaction
          • Database Query Executor
          • EVM Blockchain Functions
          • EVM Blockchain Smart Contract Functions
          • REST Service Executor
          • SOAP Service Executor
          • S3 Connector
          • SMB Connector
      • Expressions
      • Built-In Functions
        • Expression functions
          • pdk.util.Any
          • pdk.util.Array
          • pdk.util.Blockchain
          • pdk.util.Cast
          • pdk.util.Codec
          • pdk.util.Crypto
          • pdk.util.Date
          • pdk.util.File
          • pdk.util.Json
          • pdk.util.JWT
          • pdk.util.Map
          • pdk.util.Math
          • pdk.util.String
          • pdk.util.Util
        • Node functions
          • pdk.flow.Any
          • pdk.flow.Array
          • pdk.flow.File
          • pdk.flow.JsonArray
          • pdk.flow.JsonObject
          • pdk.flow.HttpRequest
          • pdk.flow.HttpResponse
          • pdk.flow.Logger
          • pdk.flow.Map
          • pdk.flow.Xml
            • pdk.flow.xml.XmlAttr
            • pdk.flow.xml.XmlElement
            • pdk.flow.xml.XmlNode
            • pdk.flow.xml.XmlDocument
            • pdk.flow.xml.XmlDocumentType
            • pdk.flow.xml.XmlDOMConfiguration
            • pdk.flow.xml.XmlDOMImplementation
            • pdk.flow.xml.XmlProcessingInstruction
            • pdk.flow.xml.XmlTypeInfo
            • pdk.flow.xml.XmlCharacterData
            • pdk.flow.xml.XmlText
            • pdk.flow.xml.XmlNamedNodeMap
          • pdk.node.BlockchainEth
          • pdk.node.S3
          • pdk.node.Smb
      • Exceptions
        • Checked Exceptions
        • Runtime Exceptions
    • Assets
      • Dictionary
      • Decision Table
      • Scorecard
      • PMML
    • Connectors
      • DB Connector
        • Prepared Query
        • Dynamic Query
        • Query input parameters
        • Stored Procedure
      • REST Connector
      • SOAP Connector
      • S3 Connector
      • SMB Connector
      • EVM Blockchain Connector
    • Global Variables
    • Appendices
      • Overview of Database Transactions
      • Reserved Words
  • Project Development Environment (IDE)
    • Project Explorer Panel
    • Flow Builder
    • Flow Node Editor
    • Data Structure Builder
    • Connector Builders
      • REST Connector Builder
      • SOAP Connector Builder
      • DB (Database) Connector Builder
      • EVM Blockchain Connectors Builder
      • S3 Connector Builder
    • Asset Builders
      • Dictionary Builder
      • Decision Table Builder
      • Scorecard Builder
      • PMML Asset Builder
    • Global Variables Panel
    • Expression Editor
    • Project Deployment and Execution
    • Cron Expression Generator
    • Test Helper
    • Debugging the Project
    • DB transactions
    • Team Collaboration Tools
      • Version Control
      • Conflict Resolver
    • Selectors
    • Error Panel
    • Local History
  • Home and Administration Guide
    • Organization and Subscription
    • Organization Team
    • Repositories and Projects
    • Environments
    • Deployments
    • Database Provisioning
    • Roles and Permissions
  • Logs and Troubleshooting
    • Request/Call Logs
    • Deployment Logs
    • Application Logs
  • Appendix: Example Project
    • Risk Mitigation Solution
Powered by GitBook
On this page
  • PGpoint
  • PGbox
  • PGcircle
  • PGinterval
  • PGline
  • PGlseg
  • PGmoney
  • PGpath
  • PGpolygon
  1. Language Reference Guide
  2. Data Structures and Types

Postgres (pdk.db.postgre)

Contains structures that maps to PostgreSQL datatypes according to driver specification

PreviousSQL (pdk.sql)NextUtil (pdk.util)

Last updated 6 months ago

PGpoint

It maps to the point datatype in org.postgresql.

Properties:

  • x ::

  • y ::

Superstructures: <-


PGbox

This represents the box datatype within org.postgresql.

Properties:

  • point1 ::

  • point2 ::

Superstructures: <-


PGcircle

This represents org.postgresql's circle datatype, consisting of a point and a radius.

Properties:


PGinterval

This implements a class that handles the PostgreSQL interval type.

Properties:


PGline

This implements a line represented by the linear equation Ax + By + C = 0.

Properties:


PGlseg

This implements a lseg (line segment) consisting of two points.

Properties:


PGmoney

This implements a class that handles the PostgreSQL money and cash types.

Properties:


PGpath

This implements a path (a multiple segmented line, which may be closed).

Properties:


PGpolygon

This implements the polygon datatype within PostgreSQL.

Properties:

center ::

radius ::

Superstructures: <-

years ::

months ::

days ::

hours ::

minutes ::

wholeSeconds ::

microSeconds ::

Superstructures: <-

a ::

b ::

c ::

Superstructures: <-

point1 ::

point2 ::

Superstructures: <-

amount ::

Superstructures: <-

points :: <>

Superstructures: <-

points :: <>

Superstructures: <-

pdk.db.postgre.PGpoint
pdk.db.postgre.PGpoint
pdk.db.postgre.PGpoint
Any
pdk.db.postgre.PGpoint
pdk.db.postgre.PGpoint
Any
Any
Any
Any
Any
Any
PGpoint
Any
PGpoint
Any
pdk.core.Float
pdk.core.Float
Object
Object
pdk.core.Float
Object
pdk.core.Integer
pdk.core.Integer
pdk.core.Integer
pdk.core.Integer
pdk.core.Integer
pdk.core.Integer
pdk.core.Integer
Object
pdk.core.Float
pdk.core.Float
pdk.core.Float
Object
Object
pdk.core.Float
Object
pdk.core.Array
Object
pdk.core.Array
Object