Hi Debora, 


are you using JBoss? If yes, you need to configure JBoss to allow remote access 
to the hsqldb. 



Find hsqldb-ds.xml in your deployment directory of jboss (server/default/deploy)



You need to change some parts in this file to:



      <!-- for tcp connection, allowing other processes to use the hsqldb

      database. This requires the org.jboss.jdbc.HypersonicDatabase mbean.-->

      <connection-url>jdbc:hsqldb:hsql://localhost:1701</connection-url>



uncomment this:

      <!-- 
<connection-url>jdbc:hsqldb:${jboss.server.data.dir}${/}hypersonic${/}localDB</connection-url>
  -->



and activate this mbean



   <!-- This mbean should be used only when using tcp connections. Uncomment

   when the tcp based connection-url is used. -->

   <mbean code="org.jboss.jdbc.HypersonicDatabase" 

     name="jboss:service=Hypersonic">

     <attribute name="Port">1701</attribute>

     <attribute name="Silent">true</attribute>

     <attribute name="Database">default</attribute>

     <attribute name="Trace">false</attribute>

     <attribute name="No_system_exit">true</attribute>

   </mbean>





now you should be able to create your schema. you can connect with tools likd 
dbvisualizer to this database now too. 



If you run in any problems - just post :)



Cheers 

Harald
--
Harald Weyhing
_________________________________________________________
Reply to the post : http://galaxy.andromda.org/forum/viewtopic.php?p=1109#1109
Posting to http://forum.andromda.org/ is preferred over posting to the mailing 
list!


-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
a projector? How fast can you ride your desk chair down the office luge track?
If you want to score the big prize, get to know the little guy.  
Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20
_______________________________________________
Andromda-user mailing list
Andromda-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/andromda-user

Reply via email to