• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Query abt Cloudscape

 
Ranch Hand
Posts: 643
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi
i want to use Cloudscape database with entity bean.
I dont know anything Cloudscape.
Like oracle how will i create table inside Cloudscape?
Is there any console for Cloudscape where i can fire sql queries to create,update and delete table?
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi

Just registered & saw your post.

I guess you can get a console for cloudscape by (not sure about it, try the help of it)

>cloudscape -isql

Ah... the Java Doc for J2EE_SDK-version_1.3 also describe this option ... you may look to it.

/kenneth
 
Ranch Hand
Posts: 50
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can I see the Cloudscape database contents where CMP/BMP entity beans are persisted in a GUI way?


You can definitely see those persisted tables in a GUI way. After the release of J2EE 1.3 Cloudscape database was acquired by IBM. Thats why Sun stopped bundling Cloudscape alongwith J2EE kit.

If you�ve configured J2EE_HOME system variable properly following command will give you Cloudscape database contents in GUI way. You may save following command in some batch file like cloudview.bat.

java -classpath "%classpath%";%J2EE_HOME%\lib\jhall.jar;%J2EE_HOME%\lib\cloudscape\cloudclient.jar;%J2EE_HOME%\lib\cloudscape\RmiJdbc.jar;%J2EE_HOME%\lib\cloudscape\cloudview.jar COM.cloudscape.tools.cview %J2EE_HOME%\cloudscape\CloudscapeDB
 
reply
    Bookmark Topic Watch Topic
  • New Topic