Re: BindAddress via JDBC

2011-10-26 Thread Thomas Mueller
Hi,

I see... I guess in this case there is no other way than to manually set the
address. It's a bit unfortunate, maybe it could be solved in some way. If
somebody has an idea - patches are always welcome.

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 h2-database@googlegroups.com.
To unsubscribe from this group, send email to 
h2-database+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.



Re: BindAddress via JDBC

2011-10-22 Thread beetle
If I don't set it, communication from my app to the local H2 db uses the 
company network, which is required for startup. However, upon disconnecting 
(losing wireless coverage) which happens on occasion, subsequent calls to the 
db errored out during development. If this should fail over by default, then 
maybe my implementation is not letting go properly. I'm still learning and 
wouldn't be surprised if I've built some pieces improperly. 

-- 
You received this message because you are subscribed to the Google Groups H2 
Database group.
To post to this group, send email to h2-database@googlegroups.com.
To unsubscribe from this group, send email to 
h2-database+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.



Re: BindAddress via JDBC

2011-10-20 Thread Thomas Mueller
Hi,

I wonder why you need to set the property...

 As my application must be able to function off-network, I cannot be bound
to the company IP

By default, the listener is bound to all available network adapters, meaning
you should not need to set this property. What happens if you don't set the
property? Or do you set it just for security?

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 h2-database@googlegroups.com.
To unsubscribe from this group, send email to 
h2-database+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.



Re: BindAddress via JDBC

2011-10-14 Thread Noel Grandin

System.setProperty(h2.bindAddress, 127.0.0.1);

On 13 October 2011 21:44:41, beetle wrote:
 Hmm, pehaps adding it as a straight property in the config is not
 appropriate, so i tried adding it to the URL as such:

 property name=connection.urljdbc:h2:C:\journal\H2DB
 \HNDLDATA;IFEXISTS=TRUE;AUTO_SERVER=TRUE;DB_CLOSE_DELAY=5;BINDADDRESS=127.0.0.1/
 property

 however, this throws the following error msg:
 org.h2.jdbc.JdbcSQLException: Unsupported connection setting
 BINDADDRESS.  I guess this parameter cannot be set on the URL string
 like the other H2 params?

 So, how can I get this recognized?



-- 
You received this message because you are subscribed to the Google Groups H2 
Database group.
To post to this group, send email to h2-database@googlegroups.com.
To unsubscribe from this group, send email to 
h2-database+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.



Re: BindAddress via JDBC

2011-10-14 Thread beetle

Ahhh, thank you Noel.  I had conveniently (or inconveniently)
forgotten that this was a JVM property when I read thru the
documentation.  Setting this directly as listed above just prior to
creating my session object worked as advertised.  Sometimes we just
need someone to point out the obvious for us to see it.  :)  Thanks
again

-- 
You received this message because you are subscribed to the Google Groups H2 
Database group.
To post to this group, send email to h2-database@googlegroups.com.
To unsubscribe from this group, send email to 
h2-database+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.



Re: BindAddress via JDBC

2011-10-13 Thread beetle
Hmm, pehaps adding it as a straight property in the config is not
appropriate, so i tried adding it to the URL as such:

property name=connection.urljdbc:h2:C:\journal\H2DB
\HNDLDATA;IFEXISTS=TRUE;AUTO_SERVER=TRUE;DB_CLOSE_DELAY=5;BINDADDRESS=127.0.0.1/
property

however, this throws the following error msg:
org.h2.jdbc.JdbcSQLException: Unsupported connection setting
BINDADDRESS.  I guess this parameter cannot be set on the URL string
like the other H2 params?

So, how can I get this recognized?

-- 
You received this message because you are subscribed to the Google Groups H2 
Database group.
To post to this group, send email to h2-database@googlegroups.com.
To unsubscribe from this group, send email to 
h2-database+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.