* fcl-db: cosmetic

git-svn-id: trunk@28314 -
This commit is contained in:
reiniero 2014-08-05 10:30:23 +00:00
parent 6e27aaebbb
commit bd37d804fc

View File

@ -525,10 +525,12 @@ begin
end;
// Parses string-formatted date into TDateTime value
// Expected format: '2013-12-31 ' (without ')
Function ParseSQLiteDate(S : ShortString) : TDateTime;
Var
Year, Month, Day : Integer;
begin
Result:=0;
If TryStrToInt(NextWord(S,'-'),Year) then
@ -538,6 +540,7 @@ begin
end;
// Parses string-formatted time into TDateTime value
// Expected format '23:59:59.999' (without ')
Function ParseSQLiteTime(S : ShortString; Interval: boolean) : TDateTime;
Var