日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

计算机语言 时间,甲骨文将ISO日期到计算机的语言环境日期/时间

發布時間:2025/3/19 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 计算机语言 时间,甲骨文将ISO日期到计算机的语言环境日期/时间 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

我插入到一個Oracle數據庫表使用下列插入字符串(約 - 有140列,所以我不會顯示所有):甲骨文將ISO日期到計算機的語言環境日期/時間

“INSERT INTO AMS_ASSET_CS_IFACEOUT VALUES('abcdef','abcdef',to_date('2010-01-31','YYYY-MM-DD'),...)“

然后幾秒鐘后,我運行以下代碼片段:

///

/// Function: GetRecord

/// Description: Creates a new AMS-Asset and populates the

/// properties of this asset by evaluating properties provided

/// by the OracleDataReader.

///

/// One record of information from the open connection.

/// A fully created AMS-Asset record.

private static AmsAsset GetRecord(OracleDataReader reader)

{

AmsAsset newRecord = new AmsAsset();

for (int propertyIndex = 0; propertyIndex < reader.FieldCount; propertyIndex++)

{

string propertyName = reader.GetName(propertyIndex).ToLower();

string propertyValue = reader.GetValue(propertyIndex).ToString();

int propertyValueAsInteger = 0;

bool isPropertyAnInteger = Int32.TryParse(propertyValue, out propertyValueAsInteger);

if (isPropertyAnInteger)

{

newRecord.GetType().GetProperty(propertyName).SetValue(newRecord, propertyValueAsInteger, null);

}

else

{

newRecord.GetType().GetProperty(propertyName).SetValue(newRecord, propertyValue, null);

}

}

return newRecord;

}

插入到我的數據庫中的日期值現在返回為“1/31/2010 12:00:00 AM”。

我不完全確定為什么......我有什么選擇?我需要只是代碼格式的轉換,我正在給回ISO

問候,

肖恩·安德森

與50位技術專家面對面20年技術見證,附贈技術全景圖

總結

以上是生活随笔為你收集整理的计算机语言 时间,甲骨文将ISO日期到计算机的语言环境日期/时间的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。