#1 2022-03-06 04:47:28

Chate
Member
Registered: 2022-03-06
Posts: 4

UpdateField and WHERE clause

Am trying to implement UpdateField on selected records in an SQLLite database. Have selected the required records with CreateAndFillPrepare then use the result, as a TSQLRecordClass, to Update a single field on many records.

The result is that all records in the DB are changed rather than just the ones selected. The declaration advises "Update one field in one or several members, depending on a WHERE clause".

May I ask how I insert that WHERE clause so the UpdateField works the way I want it to?

var
linksSelected: TSQLRecord;

.........

linksSelected :=
  LinkMstr.CreateAndFillPrepare(ORM_Database, '(' +
  ORMFLINKS_LINKLEVEL + '>=? AND ' + ORMFLINKS_LINKTGT + '>=?)',
  [minlevel, minID]);

  ORM_Database.UpdateField(linksSelected.RecordClass,
    ORMFLINKS_URFLAGS, 0, ORMFLINKS_URFLAGS, 1);


Mormot declaration
function UpdateField(Table: TSQLRecordClass; const WhereFieldName: RawUTF8; const WhereFieldValue: array of const; const FieldName: RawUTF8; const FieldValue: array of const): boolean; overload; virtual;
Update one field in one or several members, depending on a WHERE clause

Offline

#2 2022-03-06 16:09:45

dcoun
Member
From: Crete, Greece
Registered: 2020-02-18
Posts: 392

Re: UpdateField and WHERE clause

I believe it works like the following:

UpdateField(linksSelected.RecordClass,'field1_to_match_in_where>=? AND  field2_to_match_in_where>=?',[field1_value,field2_value],'Field_to_update',[value_to_put_to_update_field])

I am not sure if the WhereFieldName can have more than one fields in the where expression in Mormot1

Offline

#3 2022-03-06 18:17:26

ab
Administrator
From: France
Registered: 2010-06-21
Posts: 14,272
Website

Re: UpdateField and WHERE clause

Yes, dcount is right: CreateAndFillPrepare and UpdateField are uncorrelated.

You need to explicitly put the condition within the "where" clause of the UpdateField().

Online

#4 2022-03-06 22:04:43

Chate
Member
Registered: 2022-03-06
Posts: 4

Re: UpdateField and WHERE clause

Many thanks for your assistance. Am currently running 1.18 so will update to Mormot2 if more than 1 fields not supported.

Offline

#5 2022-03-07 02:11:25

Chate
Member
Registered: 2022-03-06
Posts: 4

Re: UpdateField and WHERE clause

Have determined only one field may be in the Where expression in both 1.18 and 2. Handy if all records with a single condition are to be changed however I need to have multiple conditions so will revert to CreateAndFillPrepare and loop through the selected results. Was hoping UpdateField would handle multiple conditions as it would be so much faster than looping.

Have also determined that the Where condition does not need the >=? either it just needs the field name.

implementation of UpdateField with arrays starts with:

  if (length(FieldValue)<>1) or (WhereFieldName='') or (length(WhereFieldValue)<>1) then
    exit;

Offline

#6 2022-03-07 07:22:36

ab
Administrator
From: France
Registered: 2010-06-21
Posts: 14,272
Website

Re: UpdateField and WHERE clause

You are right: there is no such WHERE clause here.

So a dual Retrive + UpdateField(IDs: array of TID) is the way to go here.

Online

#7 2022-03-07 08:55:05

Chate
Member
Registered: 2022-03-06
Posts: 4

Re: UpdateField and WHERE clause

Had considered that approach but since there could be many affected records, 624 in one case of the DB I am currently working with have not proceeded. Have resolved by using the Execute method and inserting the SQL, works exactly as I need.

Thanks for a great product.

Offline

#8 2022-03-07 09:11:20

ab
Administrator
From: France
Registered: 2010-06-21
Posts: 14,272
Website

Re: UpdateField and WHERE clause

Our ORM is not fully featured, mainly because it is not tied to SQL, but also works with NoSQL like MongoDB or our in-memory engine, so the ORM methods are not 100% aligned to the SQL possibilities.
In practice, the limitation to a single field location for update comes from the current state of our in-memory engine.

So yes, fallback to direct SQL is the way to go for such dedicated cases.

Online

Board footer

Powered by FluxBB