Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 4 of 4 total
Thread 3 questions about Delphi 2005 and DBISAM
Thu, Sep 14 2006 11:27 PMPermanent Link

king
Hi, I have been using Delphi 6 and DBISAM 3.24 for a couple of years,
and my company start developing new products by Delphi 2005, I am
totally new to this, I have a few questions here.

1. Are there any DB UI components to use. I used to use InfoPower
(TwwDBEdit, TwwDBLookupCombo ......)

2. I was using TDBISAMTable, TDBISAMDatabase in D6, are there any
similar components I could install in Delphi 2005?

3. Is it a must to use SQL command to manipulate data? I could use some
delphi code to do so in D6, eg.

with aTable do
  while not Eof do
  begin
    if FieldByName('aField').isNull then
    begin
      Edit;
      FieldByName('aField').AsString := 'aValue';
      Post;
    end;

    next;
  end;


Sorry for my ugly English and thanks for your answers.
Fri, Sep 15 2006 3:27 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

king


Just download and install the DBISAM version for D2006, (buy) install the infopower components and keep on as though you're still in D6.

I've "upgraded" to D2006 and there's little or no difference for DBISAM.

Roy Lambert
Fri, Sep 15 2006 5:37 AMPermanent Link

king
Thanks so much, I will try.

Roy Lambert wrote:
> king
>
>
> Just download and install the DBISAM version for D2006, (buy) install the infopower components and keep on as though you're still in D6.
>
> I've "upgraded" to D2006 and there's little or no difference for DBISAM.
>
> Roy Lambert
>
Fri, Sep 15 2006 3:42 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com


<< 1. Are there any DB UI components to use. I used to use InfoPower
(TwwDBEdit, TwwDBLookupCombo ......) >>

I believe you can still use InfoPower with Delphi 2005.

<< 2. I was using TDBISAMTable, TDBISAMDatabase in D6, are there any similar
components I could install in Delphi 2005? >>

Sure, just download and install the DBISAM for Borland Developer Studio
(Delphi 2005) version and you'll be all set.

<< 3. Is it a must to use SQL command to manipulate data? I could use some
delphi code to do so in D6, eg. >>

Sure, the code works exactly the same with both D6 and D2005.

--
Tim Young
Elevate Software
www.elevatesoft.com

Image