• 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

using Cloudscape

 
Ranch Hand
Posts: 115
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I got the following message when starting cloudscape SQL:
C:\>cloudscape -isql
ij version 4.0 (c) 1997-2001 Informix Software, Inc.
WARNING 01J01: Database 'CloudscapeDB' not created, connection made to existing
database instead.
CONNECTION0* - jdbc:cloudscape:CloudscapeDB;create=true
* = current connection
I dont understand why the database is not created. Are there any settings for configuration of Cloudscape?
Please help!!
Thanks.
 
Ranch Hand
Posts: 63
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That means that everything is OK. You started cloudscape successfully and there is no need to created again.
you can test it :
create table firsttable (blabla integer);
insert into table firsttable values (2);
select * from testtable;
 
Meng Tan
Ranch Hand
Posts: 115
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks.
Just another question:
How do u see a list of databases that is in Cloudscape?
What command do u use?
 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi ,
Cloudscape has its own GUI called cloudview in which you can see the database , list of tables, their columns etc. cloudview can be run using dos prompt
Chetna
 
reply
    Bookmark Topic Watch Topic
  • New Topic