|
-
May 23rd, 2001, 07:29 AM
#1
Text search in .dbf file
Hi there, I am developing an application where I need to search the plain text in .dbf file can you help me for this ?
Thanks,
SS
-
May 23rd, 2001, 08:13 PM
#2
Re: Text search in .dbf file
Maybe you can use ADO Recordset. This is small example
set rec = new ADODB.Recordset
rec.Open ..connection string..
rec.MoveFirst
rec.Find "Field1 = ' " & MySeekString & " ' "
After this code Recordset rec focus on needed row.
Andy Tower
-
May 24th, 2001, 07:12 AM
#3
Re: Text search in .dbf file
Thanks Tower,
It works,
The only thing is create a dsn file with foxpro driver as flat format and then we can consider it as an object like table, it works.
SS.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|