28

我是 Postgresql 的新手,我正在使用 WCF 服务。
这是我的代码片段:

$.ajax({
    url: '../Services/AuctionEntryServices.svc/InsertAuctionDetails',
    data: JSON.stringify({ "objAuctionEntryEntity": {
        "AuctionNO": '',          
        "AuctionDate": $('[Id$="lblAuctionDateVal"]').text(),
        "TraderID": $('[Id$="ddlTraderName"] option:selected').val(),
        "Grade": $('[Id$="ddlGrade"] option:selected').val(),
        "Varity": $('[Id$="ddlVarity"] option:selected').val(), 
        "QuntityInAuction": $('#txtQuantityForAuction').val(),
        "AuctionRate": $('#txtAuctionRate').val(),
        "BrokerID": a[0],
        "IsSold": $('#chlIsSold').is(':checked'),
        "CreatedBy": $.parseJSON(GetCookie('Admin_User_In_Mandi')).UserID,
        "UpdatedBy": $.parseJSON(GetCookie('Admin_User_In_Mandi')).UserID,
        "CreationDate": GetCurrentDate().toMSJSON(),
        "IsActive": true,
        "AuctionTransaction": arrAuctionTransaction,
        "MandiID": $.parseJSON(GetCookie('Admin_User_In_Mandi')).MandiID,
        "FarmerID": _ownerid,
        "AuctionNO": _auctionno,
        "AmmanatPattiID": _ammantpattiid,
        "ToTraderID": b[0],
        "ToTraderName": $('#txtOtherBuyerNameEN').val(),
        "ToTraderName_HI": $('#txtOtherBuyerNameHI').val()
    }
}),
    type: 'POST',
    contentType: 'application/json',
    dataType: 'json'              
});

这里:

$('[Id$="lblAuctionDateVal"]').text() = "20/8/2013 14:52:49" 

我这个字段的数据类型是timestamp without time zone.
如何将此字符串转换为timestamp without time zone数据类型?

4

2 回答 2

43

timestamp(= )的字符串表示timestamp without time zone取决于您的语言环境设置。因此,为避免歧义导致数据错误或 Postgres 产生异常,您有两种选择:

1.)使用ISO 8601 格式,它适用于任何语言环境或DateStyle设置:

'2013-08-20 14:52:49'

您可能必须显式转换字符串文字,其中数据类型无法从上下文派生,具体取决于用例:

'2013-08-20 14:52:49'::timestamp

2.)将字符串转换为timestamp使用to_timestamp()匹配的模板模式:

to_timestamp('20/8/2013 14:52:49', 'DD/MM/YYYY hh24:mi:ss')

timestamptz假设当前时区设置,这将返回。通常(如在分配中)类型被相应地强制。对于timestamp,这意味着时间偏移被截断并且您得到期望值。同样,如果目标类型不能从上下文派生,您可能必须显式转换:

to_timestamp('20/8/2013 14:52:49', 'DD/MM/YYYY hh24:mi:ss')::timestamp

由于这只是去除了时间偏移,因此会产生预期值。或者使用AT TIME ZONE带有您选择的时区的构造:

to_timestamp('20/8/2013 14:52:49', 'DD/MM/YYYY hh24:mi:ss') AT TIME ZONE 'UTC'

虽然目标时区与您当前的timezone设置相同,但不会发生任何转换。否则,生成的时间戳将相应地转置。进一步阅读:

于 2013-09-20T14:42:48.693 回答
27

要将字符串转换为没有时区的时间戳,对于 Postgresql,我使用上面的

SELECT to_timestamp('23-11-1986 09:30:00', 'DD-MM-YYYY hh24:mi:ss')::timestamp without time zone;
于 2014-06-22T18:11:30.050 回答