Hi, > But if I replace TCP server with PG server and try to access it > remotely using org.postgresql.Driver/jdbc:postgresql://myserver:myport/ > mem:logs, it didn't work. I wonder if a special jdbc url is required > or it's simply impossible to access in-memory db remotely by PG > server ?
It looks like the PostgreSQL JDBC driver truncates the database URL at the ":" (it removes the ":" and everything afterwards) - which means it is not possible to access an in-memory database. It would be possible to create a special workaround for this PostgreSQL driver behavior, but I'm not sure if it's worth it. What is your use case? Regards, Thomas -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
