Tech

Resolving Postgres – ERROR: prepared statement “S_1” already exists

PostgreSQL is a popular relational database system, frequently used in applications. While working with PostgreSQL, you may come across the error message, “ERROR: prepared statement ‘S_1’ already exists.” This error occurs when you attempt to prepare a statement with the same name as an existing prepared statement in the current session. One effective solution to…

Micronaut

Dealing with JSONB data Type in Micronaut

Introduction If you’re working with Micronaut and PostgreSQL, you’ve likely encountered the challenge of handling JSONB data types in your Micronaut entities. This blog aims to provide you with a clear solution to efficiently save and retrieve JSONB data within your Micronaut application. The JSONB Challenge As per the official documentation, you might have come…