Re: [api-dev] SDB query

2005-03-07 Thread Stephan Wunderlich
Hi Indukamar,
I am new to the OOo UNO APIs. I was trying to connect
to the SDB from OOo using Java. But I could not find
the com.sun.star.sdb.RowSet class in any JARs supplied
with the standard installation of OOo. Can anyone
please point  me to the place where I can find it? I
downloaded the SDK, the documentation and all, but
could not find a reference which points to where I can
find it.
css.sdb.RowSet is a Service and the jar files only contain types, so you 
won't find a class file, corresponding to this service anywhere.

To get an idea how database access works using the OOo-UNO-API you might 
want to have a look at the corresponding developers guide chapter

http://api.openoffice.org/docs/DevelopersGuide/Database/Database.htm
Hope that helps
Regards
Stephan
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: [api-dev] SDB query

2005-03-07 Thread Michael Hoennig
Hi Menon,

 I am new to the OOo UNO APIs. I was trying to connect
 to the SDB from OOo using Java. But I could not find
 the com.sun.star.sdb.RowSet class in any JARs supplied

RowSet is not a Java class, it is an UNO service.  You should read at
least the first chapter of the Developers Guide to get aquainted with UNO
concets.  Implementations of UNO services are not created using Java new,
but by a factory method of the UNO runtime.

Michael

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]