计算机语言 时间,甲骨文将ISO日期到计算机的语言环境日期/时间
我插入到一個Oracle數(shù)據(jù)庫表使用下列插入字符串(約 - 有140列,所以我不會顯示所有):甲骨文將ISO日期到計算機的語言環(huán)境日期/時間
“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;
}
插入到我的數(shù)據(jù)庫中的日期值現(xiàn)在返回為“1/31/2010 12:00:00 AM”。
我不完全確定為什么......我有什么選擇?我需要只是代碼格式的轉(zhuǎn)換,我正在給回ISO
問候,
肖恩·安德森
與50位技術(shù)專家面對面20年技術(shù)見證,附贈技術(shù)全景圖總結(jié)
以上是生活随笔為你收集整理的计算机语言 时间,甲骨文将ISO日期到计算机的语言环境日期/时间的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 自学计算机二级office用什么书,暑假
- 下一篇: 计算机硬件常见问题及修复,pc机输入输出