Settings and activity
6 results found
-
23 votesAbdollah Nouri supported this idea ·
-
68 votesAbdollah Nouri supported this idea ·
-
82 votes
An error occurred while saving the comment -
201 votesAbdollah Nouri supported this idea ·
-
43 votesAbdollah Nouri supported this idea ·
-
47 votesAbdollah Nouri supported this idea ·
I save ini settings in database blob field. it is easy
ini: TMemIniFile;
sl: TStringList;
st: TMemoryStream;
st := TMemoryStream.Create;
sl := TStringList.Create;
ini.WriteString('Section','indent','value');
ini.GetStrings(sl);
sl.SaveToStream(st);
qry.ParamByName('ini_content').LoadFromStream(st,ftBlob);
qry.Exeute;
You can create simple function and use it.