Some time ago, I started a new Java app wich function was to provide access to a remote DB, to browse, sort, filter and operate with some registers. To test it out, I was using a PostgreSQL DB located in my PC and then I finished the Java app. Everything was fine so I was about to rent a hosting service only for my DB, to provide real service. The thing is that I haven't found any hosting company who provides direct DB access through JDBC f.e. For security reasons they don't permit that.
Does anyone know a hosting service wich allows PostgreSQL + direct DB access? If not, the other way to do it is to create a WS in php f.e., to connect to the DB and then make my Java app to use that WS. But thats A LOT of extra work (I have many procedures) and I have little time.
Thx in advance.