#1 2016-08-11 10:40:10

jbroussia
Member
From: France
Registered: 2011-04-09
Posts: 74

Default values for columns ?

Hi,

Is it possible to set a default value when defining properties in TSQLRecord descendants (meaning that if I omit a property in a query, the default value should be used) ?
Or should I use the RDBMS to do it ?

Thanks.

Offline

#2 2016-08-11 10:45:48

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

Re: Default values for columns ?

If you just override the object constructor and set the fields with the default values, it should work as expected.
No need to tweak the RDBMS.

ORM is always starting from object, not from relational model.
And mORMot ORM is expected to work on non RDBMS systems, which do not have such "default values".

Offline

#3 2016-08-11 11:42:35

jbroussia
Member
From: France
Registered: 2011-04-09
Posts: 74

Re: Default values for columns ?

OK thanks, I still have to convert my way of thinking to the ORM way !

Offline

#4 2021-11-27 10:23:02

edwinsn
Member
Registered: 2010-07-02
Posts: 1,215

Re: Default values for columns ?

Setting default field values in the constructor only works for **new rows**, but not an existing row with missing field(s).
For the latter, you might need to take the "override TSQLRecord.InitializeTable then run TSQLRest.UpdateField() to put some default value when the field is detected as missing." approach, which is not very convenient, as described in https://synopse.info/forum/viewtopic.php?id=5469

Last edited by edwinsn (2021-11-27 10:55:49)


Delphi XE4 Pro on Windows 7 64bit.
Lazarus trunk built with fpcupdelux on Windows with cross-compile for Linux 64bit.

Offline

#5 2021-11-27 11:26:09

edwinsn
Member
Registered: 2010-07-02
Posts: 1,215

Re: Default values for columns ?

@ab,

Maybe it's worth to add new property called TSQLPropInfo.DefaultValue and use that proper when constructing the SQL for adding the column in the db?

SQLite itself supports the `default` clause for the `alter table` statement, something like:

alter table t1 add column status integer default 100

Delphi XE4 Pro on Windows 7 64bit.
Lazarus trunk built with fpcupdelux on Windows with cross-compile for Linux 64bit.

Offline

#6 2021-11-27 12:04:29

edwinsn
Member
Registered: 2010-07-02
Posts: 1,215

Re: Default values for columns ?

ok, quite easy if you know how to do it, here is a working example might might be helpful for others:

class procedure TSQLMyTable.InitializeTable(Server: TSQLRestServer; const FieldName: RawUTF8; Options:
    TSQLInitializeTableOptions);
begin
  inherited;
  // the engine is adding the missing MyField1 field, we need to update the db table for this field to
  // have the default value, because the mORMot engine has no direct support for 'default field value'
  // see: https://synopse.info/forum/viewtopic.php?id=5469
  if (FieldName = 'MyField1') then
    UpdateDefaultValueForCardTextSourceProp(Server);
end;

class procedure TSQLMyTable.UpdateDefaultValueForCardTextSourceProp(const aServer: TSQLRestServer);
var
  sql: RawUTF8;
begin
  sql := FormatUtf8('UPDATE % SET MyField1 = % WHERE MyField1 IS NULL',
    [self.SQLTableName, cDefaultValueForMyField1]);
  aServer.Execute(sql);
end;

Delphi XE4 Pro on Windows 7 64bit.
Lazarus trunk built with fpcupdelux on Windows with cross-compile for Linux 64bit.

Offline

Board footer

Powered by FluxBB