Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 2 of 2 total
Thread EDB and local tables
Mon, Jan 5 2009 10:03 AMPermanent Link

durumdara
Hi!

I trying to port our application to EDB.
Sometimes in DBISAM we used two databases.
One for the normal tables, and queries, and one for local tables (datasets). These
datasets, as like kbmMemTable, or ClientDataSet are used for local, temporary tables, to
store other datas, or datas for cached updates.

I wanna ask that can I replace these tables without speed problems?
For example: sometimes I used these tables to make operations quickly in the client's
machine, and later rewrite the result to the server.

As I see that is not working simply in EDB. The temp. or memory tables are created in the
server, if server mode needed.
But it is slow for quick operations.

What do you thinking about this problem? I need to use kbmMemTable for this?

Thanks:
  dd
Wed, Jan 7 2009 8:53 AMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

<< I wanna ask that can I replace these tables without speed problems? For
example: sometimes I used these tables to make operations quickly in the
client's machine, and later rewrite the result to the server.

As I see that is not working simply in EDB. The temp. or memory tables are
created in the server, if server mode needed. But it is slow for quick
operations.

What do you thinking about this problem? I need to use kbmMemTable for
this? >>

Just use a local session for accessing the local tables, and a remote
session for accessing the remote tables.  Your problem is that you're trying
to use the remote session to create local tables.

--
Tim Young
Elevate Software
www.elevatesoft.com

Image