Hi everybody,
the bean configuration changed as tcpAllowOthers now does not need the argument true afterwards.
http://www.h2database.com/html/tutorial.html
<bean id = "org.h2.tools.Server"
class="org.h2.tools.Server"
factory-method="createTcpServer"
init-method="start"
destroy-method="stop">
<constructor-arg value="-tcp,-tcpAllowOthers,true,-tcpPort,8043" />
</bean>
Please change the last line in your tutorial
from:
<constructor-arg value="-tcp,-tcpAllowOthers,true,-tcpPort,8043" />
to:
<constructor-arg value="-tcp,-tcpAllowOthers,-tcpPort,8043" />
Thanks a lot
Eric
--
You received this message because you are subscribed to the Google Groups "H2 Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email to h2-database...@googlegroups.com.
To post to this group, send email to h2-da...@googlegroups.com.
Visit this group at http://groups.google.com/group/h2-database?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.