Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 7 of 7 total
Thread Elevetedb Unicode and Data Abstract Vinci in Delphi2009
Mon, Feb 16 2009 9:24 AMPermanent Link

"Friedrich Westermann"
Hello,
is someone using this combination of components sucefull?
i have a lot of problems with it and don't think it's a problem from
Elevate.

Thanks Fritz
Mon, Feb 16 2009 3:18 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Friedrich,

<< is someone using this combination of components sucefull?  i have a lot
of problems with it and don't think it's a problem from Elevate. >>

What are the basic functionality issues that you're having problems with ?

--
Tim Young
Elevate Software
www.elevatesoft.com

Tue, Feb 17 2009 4:08 AMPermanent Link

"Friedrich Westermann"
Tim Young [Elevate Software] wrote:

> Friedrich,
>
> What are the basic functionality issues that you're having problems
> with ?

Hello Tim,

mostly all Smile

the DAElevateDBDrv from Remobjects is not tested i think Frown
All fields are treaded as readonly , but this i have found a way and
fixed it,
but i have not found a way to set the correct autoincvalue for fields
like
"ID"  INTEGER GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT
BY 1) NOT NULL

there must be a way for returning the lastautinc value or a
"genearator" to call

Greetings Fritz
Tue, Feb 17 2009 9:32 AMPermanent Link

"Friedrich Westermann"
Hello Tim,

after a lot of debuging on the Data abstract part, i have found a way
that it should work, but now i have a problem:

If a client inserts a new row his identy-column gets a value in
negative Range. Thats all ok but in the server part i have to change
the value of the identy-column to a valid value for the actual Table.

i have the table an the column but now the Question:
Is there a way tu receive a new value for a identity column via script?
I need these value for returning to the Client and also for change the
value in the server part
I have not found anything in the Docs.

Thanks
Fritz
Tue, Feb 17 2009 1:50 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Friedrich,

<< Is there a way tu receive a new value for a identity column via script?
>>

Sure, like this:

SCRIPT (OUT LastIdentity INTEGER)
BEGIN
  DECLARE TempStmt STATEMENT;

  PREPARE TempStmt FROM 'INSERT INTO MyTable VALUES (?, ?)';
  EXECUTE TempStmt USING LastIdentity, 'Test';
END

INSERT statements automatically use INOUT parameter types so that you can
retrieve their values after the insert in the same parameters that were
passed in.

--
Tim Young
Elevate Software
www.elevatesoft.com

Tue, Jul 20 2010 9:06 PMPermanent Link

Rick Wheeler

Hi Fritz, what has been your experience with ElevateDB and Data Abstract? We are currently trialling Data Abstract and would like to make it work with ElevateDB. However the initial testing comes up with an error:

Access violation in module DAElevateDBDrv.dad. Read of Address 00000000.

So it looks to me like it is not really available even though it is in the list?

Thanks
Rick.


"Friedrich Westermann" wrote:

Hello,
is someone using this combination of components sucefull?
i have a lot of problems with it and don't think it's a problem from
Elevate.

Thanks Fritz
Wed, Jul 21 2010 5:27 AMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Rick,

Per email: checking this out and will see what's going on later this week.

--
Tim Young
Elevate Software
www.elevatesoft.com
Image