pgvector-cobol
COBOL bindings and examples for pgvector, letting legacy COBOL systems interact with PostgreSQL as a vector database.
About this tool
title: pgvector-cobol slug: pgvector-cobol brand: pgvector brand_logo: https://avatars.githubusercontent.com/u/101229709 category: sdks-libraries tags:
- sdk
- pgvector
- vector-store
- cobol
- postgresql
- embeddings source_url: https://github.com/pgvector/pgvector-cobol license: MIT featured: false images:
- https://opengraph.githubassets.com/1/pgvector/pgvector-cobol
Overview
pgvector-cobol provides COBOL examples and bindings for the pgvector PostgreSQL extension, enabling legacy COBOL applications (via Open Cobol ESQL) to store and query vector embeddings in PostgreSQL.
Features
-
COBOL examples for pgvector
- Sample COBOL code showing how to work with pgvector from COBOL programs.
- Includes a complete example program (
example.cbl).
-
Open Cobol ESQL support
- Designed to work with Open Cobol ESQL.
- Uses embedded SQL (
EXEC SQL ... END-EXEC) within COBOL.
-
Extension management
- Example for enabling the
vectorextension in PostgreSQL:EXEC SQL CREATE EXTENSION IF NOT EXISTS vector END-EXEC.
- Example for enabling the
-
Schema definition for vectors
- Example of creating a table with a
vectorcolumn type:EXEC SQL CREATE TABLE items ( id bigserial PRIMARY KEY, embedding vector(3) ) END-EXEC.
- Demonstrates usage of fixed-dimension vectors (e.g., dimension 3).
- Example of creating a table with a
-
Inserting vector data
- Shows how to assign vector values to COBOL variables and insert them into PostgreSQL:
- Move JSON-like array strings (e.g.,
"[1,2,3]") into COBOL variables. - Insert multiple embeddings into the
vectorcolumn via embedded SQL.
- Move JSON-like array strings (e.g.,
- Shows how to assign vector values to COBOL variables and insert them into PostgreSQL:
-
Vector similarity search
- Example query to retrieve nearest neighbors using pgvector distance operator
<->:ORDER BY embedding <-> :EMBEDDING LIMIT 5
- Demonstrates selecting the nearest item ID into a COBOL variable.
- Example query to retrieve nearest neighbors using pgvector distance operator
-
Reference example program
example.cblshows end-to-end flow: enabling extension, creating table, inserting vectors, and querying nearest neighbors.
-
Open-source license
- Released under the MIT license.
Getting Started
- Install and configure Open Cobol ESQL.
- Enable the
vectorextension in your PostgreSQL database from COBOL using:EXEC SQL CREATE EXTENSION IF NOT EXISTS vector END-EXEC.
- Follow the
README.mdandexample.cblin the repository to:- Define tables with
vectorcolumns. - Insert embedding data from COBOL variables.
- Run nearest neighbor queries with pgvector operators.
- Define tables with
Pricing
- pgvector-cobol is an open-source project released under the MIT license and is free to use.
Loading more......
Information
Categories
Tags
Similar Products
6 result(s)Crystal language client for pgvector, providing idiomatic Crystal access to vector operations in PostgreSQL.
.NET (C#, F#, Visual Basic) library for pgvector that exposes vector storage and similarity queries on PostgreSQL to .NET applications.
Elixir wrapper and examples for pgvector, integrating PostgreSQL-based vector search into Elixir ecosystems like Phoenix.
Erlang client and examples for pgvector, providing tools to run vector operations against PostgreSQL from Erlang systems.
Gleam language client and examples for pgvector, allowing Gleam applications to perform vector similarity search using PostgreSQL.
Haskell bindings and examples for pgvector, enabling Haskell applications to treat PostgreSQL as a vector database.