Postgresql and sql

Hey there. I have been lost in the ocean of backend options today, and am really impressed by Parse.
I’m a sql guy so would like to use sql in the backend. Is this possible? I mean:

1 - create tables by hand (and indexes, and pk, fk, triggers, etc.) and use those tables in Parse?
2 - makes queries using sql instead of learning a new dialect? for instance, send a sql query through rest api endpoint?

Thanks.

2 Likes

You can use Postgresql as database, but it is not recommended to create the tables by yourself and there is currently no way to write the sql queries yourself.

1 Like

ok, thanks for your help.

1 Like

Hi,

Offtopic

Can you show how you connected to postgres with parse server?

I’m not able to connect with this URL.

const DB_URL_PROD = "postgres://parse:[email protected]:5433/parse"

let parse = new ParseServer({
  appId: "impressionserver",
  masterKey: "impressionserver",
  appName: "ImpressionServer",
  cloud: "./cloud/main",
  databaseURI: DB_URL_PROD,
1 Like

Hello,

Is there any way I could use the pgvector and embedding column in Parse Server with regard to pgsql?

Thanks v much.

1 Like