Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 4 of 4 total
Thread Two databases x one session
Tue, Apr 18 2006 4:38 PMPermanent Link

"Jose Eduardo Helminsky"
Hi everyone

I need to read some information from database1 and store it into database2.
I am using remote sessions (a default session created internally by DBISAM).

Current database: database1

TMyTable.DatabaseName := 'database2';
TMyTable.TableName := 't1';
TMyTable.Open;    <---------- Here I receive an Access Violation at server
side with #11279 error

My doubt: Is it a bug ? Or I need another session to connect with another
database ?

Delphi 6 SP2 with DBISAM 4.22 Build 4 C/S Windows 2003 (server) and XP
(client)

Eduardo

Wed, Apr 19 2006 8:38 AMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Eduardo,

<< I need to read some information from database1 and store it into
database2.  I am using remote sessions (a default session created internally
by DBISAM).

Current database: database1

TMyTable.DatabaseName := 'database2';
TMyTable.TableName := 't1';
TMyTable.Open;    <---------- Here I receive an Access Violation at server
side with #11279 error

My doubt: Is it a bug ? Or I need another session to connect with another
database ? >>

Could you send me an example of this ?  There's got to be more to this than
what you've posted, since that is a pretty common operation and AFAIK there
were no issues with AVs in 4.22 B4 with this type of operation.

--
Tim Young
Elevate Software
www.elevatesoft.com

Wed, Apr 19 2006 1:40 PMPermanent Link

"Jose Eduardo Helminsky"
Tim

Sent to your e-mail an small project to reproduce the problem.

Eduardo

Thu, Apr 20 2006 5:43 AMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Eduardo,

<< Sent to your e-mail an small project to reproduce the problem. >>

Got it.  The problem is caused by two things - a live result and the usage
of an embedded path in the query:

SELECT * FROM "MyDatabase\MyTable"

--
Tim Young
Elevate Software
www.elevatesoft.com

Image