On Wed, Nov 13, 2024 at 5:42 AM Deepthi Prasad <
[email protected]> wrote:
> Hi
>
> I have an issue while constructing connection url from the application.
>
> MQBjAHBvc3RncmVzcWw this is a valid connection string. I want to find out
> decoded value of this. But I m ending up in special characters like in
> 1�c�postgresql
>
> Please help me to decode correctly.
>
>
The first character in the string ("1") is the connection (or connection
group) identifier.
The second character ("c") is the type of connection (c = connection, g =
connection group).
The final set of characters ("postgresql") represents the name of the data
source where the connection/group is located - looks like you have a
PostgreSQL database.
-Nick