TOraQuery without Session

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
Myhel
Posts: 2
Joined: Sun 01 Oct 2006 17:21

TOraQuery without Session

Post by Myhel » Sun 01 Oct 2006 17:31

Can I work with TOraquery without connection?
Like with proprty CursorLocation = clUseClient in ADODataSet, or in ADO.Net

for example:

OraSession.Connect;
OraQuery.Open;
OraQuery.Session := nil;
OraSession.Disconnect;

..some changes..

OraQuery.OraSession := OraSession;
OraSession.Connect;
OraQuery.Post; or OraQuery.ApplyChanges;
OraQuery.Session := nil;
OraSession.Disconnect;

Challenger
Devart Team
Posts: 925
Joined: Thu 17 Nov 2005 10:53

Post by Challenger » Mon 02 Oct 2006 11:51

We have implemented such functionality in the new version of ODAC (ODAC 6.00). It will be released in the near future.
Last edited by Challenger on Mon 02 Oct 2006 12:35, edited 1 time in total.

jfudickar
Posts: 202
Joined: Fri 10 Mar 2006 13:03
Location: Oberursel / Germany

Post by jfudickar » Mon 02 Oct 2006 12:02

Hi,

could you give us some informations about new features, which will be implemented in ODAC 6.00?? :lol:

Greetings and thanks
Jens

Challenger
Devart Team
Posts: 925
Joined: Thu 17 Nov 2005 10:53

Post by Challenger » Mon 02 Oct 2006 14:28

Full list of features will be announced when the beta version released. We plan to release it in about a month.

jfudickar
Posts: 202
Joined: Fri 10 Mar 2006 13:03
Location: Oberursel / Germany

Post by jfudickar » Wed 01 Nov 2006 15:52

Hi,

one month later 8)

Any news :lol:

Greetings
Jens

Challenger
Devart Team
Posts: 925
Joined: Thu 17 Nov 2005 10:53

Post by Challenger » Fri 03 Nov 2006 14:40

We are working on the new version. And we are going to release Beta version soon.

jfudickar
Posts: 202
Joined: Fri 10 Mar 2006 13:03
Location: Oberursel / Germany

Post by jfudickar » Wed 13 Dec 2006 18:22

If you aren't able to release the beta version, what about some infos about the upcomming release :?:

Greetings
Jens

MarkF
Posts: 211
Joined: Thu 02 Mar 2006 14:55

Post by MarkF » Sat 16 Dec 2006 00:47

Cool! Is the idea here to be able to close the session, but still have the dataset be able to display data? That will be a very nice addition. Unless there's already a way to do it? Looking forward to the new version!

Post Reply