Re: [Lazarus] locate command for dBase

2023-05-26 Thread wkitty42--- via lazarus

On 5/26/23 7:31 AM, Michael Van Canneyt via lazarus wrote:

On Fri, 26 May 2023, wkitty42--- via lazarus wrote:
i don't see where you did a seek to the record you are trying to get to... 
granted, it has been a long while since i did anything with FPC/Lazarus or an 
dBase databases but it would seem there should be an obvious seek action... 
maybe...


the locate() is a seek action.



a... i thought it just located whatever is being sought and one still needed 
to actually seek to the record...



But without more info/code it is difficult to give an answer to the OP's
question.


agreed :)

--
 NOTE: No off-list assistance is given without prior approval.
   *Please keep mailing list traffic on the list where it belongs!*
--
___
lazarus mailing list
lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus


Re: [Lazarus] locate command for dBase

2023-05-26 Thread Michael Van Canneyt via lazarus



On Fri, 26 May 2023, wkitty42--- via lazarus wrote:


On 5/25/23 8:12 PM, john Ward via lazarus wrote:

   if
   temp.Locate('temp_no', (tempid),[loPartialkey])
   then
   begin

     showmessage('we found the field or Partial' + tempid);
     showmessage('current temp_no is ');
     tno := temp.FieldbyName('temp_no').asString;
    showmessage('tempno is = ' + tno);
     end;
The above code, executes the 'then', shows me what was searched for BUT 

when a
data field is displayed, the original record is pointed to, NOT a record 
further 

in the database.



i don't see where you did a seek to the record you are trying to get to... 
granted, it has been a long while since i did anything with FPC/Lazarus or an 
dBase databases but it would seem there should be an obvious seek action... 
maybe...


the locate() is a seek action.

But without more info/code it is difficult to give an answer to the OP's
question.

Michael.-- 
___
lazarus mailing list
lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus


Re: [Lazarus] locate command for dBase

2023-05-26 Thread wkitty42--- via lazarus

On 5/25/23 8:12 PM, john Ward via lazarus wrote:

   if
   temp.Locate('temp_no', (tempid),[loPartialkey])
   then
   begin

     showmessage('we found the field or Partial' + tempid);
     showmessage('current temp_no is ');
     tno := temp.FieldbyName('temp_no').asString;
    showmessage('tempno is = ' + tno);
     end;
The above code, executes the 'then', shows me what was searched for BUT when a
data field is displayed, the original record is pointed to, NOT a record further 
in the database.



i don't see where you did a seek to the record you are trying to get to... 
granted, it has been a long while since i did anything with FPC/Lazarus or an 
dBase databases but it would seem there should be an obvious seek action... maybe...



--
 NOTE: No off-list assistance is given without prior approval.
   *Please keep mailing list traffic on the list where it belongs!*
--
___
lazarus mailing list
lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus