Skip to content

PostgreSQL

PostgreSQL, often simply Postgres, is an open source object-relational database management system (RDBMS) known for its robustness, reliability, feature-richness. and standards compliance. As a database server, its primary function is to store data securely, supporting best practices, and to allow for retrieval at the request of other software applications, whether on the same host or running on another host across a network. It is a powerful and reliable database management system suitable for a wide range of applications, from small projects to enterprise-level systems.

Key features of PostgreSQL:

  • ACID Compliance
  • Advanced Data Types
  • MVCC
  • Rich Indexing
  • Extensible
  • Full-text Search
  • Internationalization
  • Programming Interfaces
  • Procedural Languages
  • Foreign Data Wrappers
  • Replication
  • Robustness
  • Community Support
  • Cross Platform

PostgreSQL is widely used in a variety of applications from small systems where robustness and data integrity are critical, to large applications with complex data workloads and high user concurrency requirements.

Actions:

  • Insert: Create a new row in a table in specified schema.
  • Update: Update rows found based on the given where clause entries.
  • Delete: Delete rows found based on the given where clause entries.
  • SQL query: Executes the given SQL statement.

Connect with PostgreSQL:

  1. Go to Mation and navigate to My Apps and Add a new connection choosing PostrgeSQL from the list. PostgreSQL_01.jpg PostgreSQL_02.jpg
  2. Fill in the PostgreSQL version field with the version that you are using. PostgreSQL_03.jpg
  3. Fill in the host address field with the Postgres host address (URL without protocol).
  4. Fill in the port field with the Postgres port.
  5. Select whether to use SSL or not.
  6. Fill in the database name field with the Postgres database name.
  7. Fill in the database username field with the Postgres username.
  8. Fill in the password field with the Postgres password.
  9. Click the Submit button on Mation.
  10. Your PostgreSQL connection is now established. PostgreSQL_04.jpg
  11. Start using your new PostgreSQL connection with Mation.