Re: ADO DBASE Seek
From: Paolo Mancini (paolo.mancini_at_email.it)
Date: 11/24/04
- Next message: Paolo Mancini: "Re: Using Result Sets From Oracle Stored Procedures"
- Previous message: Talmaier Gábor: "Using Result Sets From Oracle Stored Procedures"
- In reply to: Willi Kühnis: "ADO DBASE Seek"
- Next in thread: Willi Kühnis: "Re: ADO DBASE Seek"
- Reply: Willi Kühnis: "Re: ADO DBASE Seek"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Wed, 24 Nov 2004 17:21:21 +0100
Ciao Willi,
from the Delphi Help "NOTE: The VCL Seek method is a direct implementation
of the Seek method for the ADO Recordset object. At the time of this
writing, this method is only supported for use with Microsoft Access2000 and
the Jet 4 provider. "...
Hope It Helps,
Paolo Mancini
"Willi Kühnis" <wkuehnis@bluewin.ch> ha scritto nel messaggio
news:41a4820f$1@newsgroups.borland.com...
> Hi,
> I have a DBASE-Tables with .MDX-Index. (on the ID)
> The table has about 120'000 records.
> I want to use ADO (with ODBC-driver)
>
> What's the fastest way to search some values?
>
>
> I think, with tADOTable and seek, but It never finds the correct record. I
> think, it don't set the Index .
>
> myADOTab:= TADOTable.Create(Application);
> myADOTab.CursorLocation := clUseServer;
> myADOTab.Connection := myConnection;
> myADOTab.TableName := 'NAMEN';
> myADOTab.indexName := 'ID';
> myADOTab.Active := true;
>
>
> what's wrong in this code?
>
>
> Thanks a lot
>
>
- Next message: Paolo Mancini: "Re: Using Result Sets From Oracle Stored Procedures"
- Previous message: Talmaier Gábor: "Using Result Sets From Oracle Stored Procedures"
- In reply to: Willi Kühnis: "ADO DBASE Seek"
- Next in thread: Willi Kühnis: "Re: ADO DBASE Seek"
- Reply: Willi Kühnis: "Re: ADO DBASE Seek"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|