Installing components under Lazarus 0.9.29

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
99Percent
Posts: 48
Joined: Tue 13 Sep 2005 05:34

Installing components under Lazarus 0.9.29

Post by 99Percent » Wed 14 Jul 2010 06:05

You can compile and install the Unidac components with Lazarus 0.9.29 (SVN 26610) using FPC 2.4.3

The only compilation error is in line 4282 in the file MemData.pas

simply change:

Code: Select all

if TryStrToDateTime(V, d) then 
to

Code: Select all

if TryStrToDateTime(AnsiString(V), d) then 
And all the components will compile and install fine.

bork
Devart Team
Posts: 649
Joined: Fri 12 Mar 2010 07:55

Post by bork » Wed 14 Jul 2010 14:57

Hello

Thank you for the information. This fix will be included in one of the next builds/versions of UniDAC.

99Percent
Posts: 48
Joined: Tue 13 Sep 2005 05:34

Post by 99Percent » Wed 14 Jul 2010 23:28

Also bumped into the following when using a TUniquery having a SQL property set at design time that creates parameters:

Code: Select all

Streaming error
Unable to stream FMNota:TFMNota.
Abstract method called

Path to failed Instance:
TFMNota.UQSelectArt.ParamData.Value
I have no idea how to fix this, so I decided to set the SQL property at runtime, and it works without problems (so far lol).

bork
Devart Team
Posts: 649
Joined: Fri 12 Mar 2010 07:55

Post by bork » Fri 16 Jul 2010 08:40

Hello

Thank you for the information again. As soon as we will add compatibility with Lazarus 0.9.29 we certainly will fix it.

sibu
Posts: 2
Joined: Mon 25 Apr 2011 15:40

Post by sibu » Mon 25 Apr 2011 15:48

im getting same error using an OraQuery on Lazarus 0.9.30 released on March 28 2011. One year so far no fixes.

AlexP
Devart Team
Posts: 5530
Joined: Tue 10 Aug 2010 11:35

Post by AlexP » Thu 28 Apr 2011 07:56

Hello,

I could not reproduce the problem.
I have tested it on Lazarus 0.9.30 and FPC 2.4.2
Please send a complete small sample to alexp*devart*com to demonstrate the problem, or provide more detailed information about it.

sibu
Posts: 2
Joined: Mon 25 Apr 2011 15:40

Post by sibu » Fri 29 Apr 2011 17:44

AlexP wrote:Hello,

I could not reproduce the problem.
I have tested it on Lazarus 0.9.30 and FPC 2.4.2
Please send a complete small sample to alexp*devart*com to demonstrate the problem, or provide more detailed information about it.
email send with some screenshots. let me know thanks

Post Reply