Settings and activity
6 results found
-
23 votes
Abdollah Nouri supported this idea ·
-
68 votes
Abdollah Nouri supported this idea ·
-
82 votes
An error occurred while saving the comment -
201 votes
Abdollah Nouri supported this idea ·
-
43 votes
Abdollah Nouri supported this idea ·
-
47 votes
Abdollah 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.