Delphi 关于日期时间转字符的调用函数

Delphi 关于日期时间转字符的调用函数,在Delphi11.3/12里调试通过

--日期时间转字符

function DateTimeToSQLStr(InpDateTime: TDateTime;
    IsParadox: Boolean = False; IsIncludeMSecond: Boolean = False): string;
var
    sDate: string;
    sTime: string;
begin
    sDate := DateToSQLStr(InpDateTime, IsParadox);
    System.Delete(sDate, Length(sDate), 1);
    sTime := Copy(TimeToSQLStr(InpDateTime, IsIncludeMSecond), 2, MaxInt);
    Result := sDate+ STR_SPACE+ sTime;

end;

--日期转字符

function DateToSQLStr(InpDate: TDateTime; IsParadox: Boolean = False): string;
var
    nYear: Word;
    nMonth: Word;
    nDay: Word;
begin
    if (not IsParadox) then
        Result := FormatDateTime(SQL_DATE_FORMAT, InpDate)

    else
    begin
        DecodeDate(InpDate, nYear, nMonth, nDay);
        Result := Copy(SQL_MONTH_STRING, (nMonth- 1)* 3+ 1, 3);
        Result := Format(SQL_PARADOX_DATE_FORMAT, [nDay, Result, nYear]);

    end;

    Result := QuotedStr(Result);

end;

--时间转字符

function TimeToSQLStr(InpTime: TDateTime;
    IsIncludeMSecond: Boolean = False): string;
var
    sTime: string;
begin
    sTime := SQL_TIME_FORMAT;

    if (IsIncludeMSecond) then
        sTime := sTime+ SQL_MSEC_FORMAT;

    Result := QuotedStr(FormatDateTime(sTime, InpTime));

end;
 

  • 10
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值