c中如何取得當前時間後,把當前時間和資料庫中的時間做判斷,比如資料庫中date的值為當前時

2022-05-26 19:45:20 字數 2109 閱讀 5715

1樓:匿名使用者

直接比大小即可。

datetime date = datetime.parse(rs["資料庫裡資源"].tostring());

if(date>datetime.now)......

還是不放心的話轉換成ticks,例如datetime.now.ticks,那個是1970-1-1到現在的毫秒數

2樓:桓笑容

datetime.now這個是獲取執行的伺服器時間,資料庫時間就不需要我教你獲取了。

然後把資料庫時間用datetime.parse轉換成日期型別,就可以直接做》《的比較了。

當然,你這裡都只給了日期,所以同一天的時候,可能結果就不一樣了所以建議是把datetime.now.tostring("yyyy-mm-dd")之後再裝換成時間型別,再和資料庫時間做比較,這樣就一致了。

因為還有時間差,也就是時分秒的差別

3樓:芭比狐

得到資料庫的時間,然後

if(時間》datetime.now)

4樓:匿名使用者

sql:datediff(day,'','')

c# 獲取資料庫中晚於當前時間的資料

5樓:陽光的雷咩咩

兩種寫法,一是引數查詢(建議這種,你可以查一下),二是拼接sql:

datetime today=datetime.now.date.adddays(1);

string sql =

"select risetime from suntime where risetime > '"

+ today.tostring()

+ "'";

6樓:匿名使用者

你用的什麼資料庫

where risetime >= 當前時間

當前時間的取值 與使用的資料庫 和定義的欄位型別有關

7樓:齊天大聖程式猿

樓上正解,例如sql的話你這樣寫就行了

select risetime from suntime where risetime>getdate()

c# 獲取sql資料庫中的時間並與當前日期計算差值怎麼寫?

8樓:匿名使用者

假定那個欄位是mydate,資料庫為sql server

select datediff(day,mydate,getdate()) from tablename

這個sql的結果取出來就是你要的天數了。

9樓:改天罡

datediff(dd,'20070101',getdate())

急求,c#獲取當前日期和時間如何存入sql資料庫欄位型別為date和time(7)表內?

10樓:匿名使用者

你的sql語句有問題吧,應該這樣,你的表是table_1吧:

"insert into table_1(time,date)values('"+currnettime.tostring("hh:mm:

ss")+"','"+currnettime.tostring("yyy-mm-dd")+"')"

c#我想獲得操作當前頁面的時間,並把它存入資料庫,應該怎麼辦

11樓:匿名使用者

語法很簡單:datetime.now.tostring();//這就是獲取當前時間

按照你說的應該是:this.txtname.text=datetime.now.tostring();//txtname是你textbox的名字。

最後把這個文字框的值插入資料庫就ok了。

c#如何將時間存入資料庫?如何從資料庫讀出所存時間與當前時間做比較?? 15

12樓:

資料庫有date型別,和c#的datetime型別是可以對應的;讀出時間進行比較是個「操作」問題,你可以把程式中的時間交給資料庫去執行sql比較,也可以把資料庫時間讀到記憶體中做<=比較,取決於具體需要。

c語言如何取得系統時間,如何用C語言獲取當前系統時間?

time t ttime 距1900年1月1日的秒數char str 80 struct tm sttm 時間結構,格式請見其它回答time timer sttm localtime ttime strftime str,sizeof str y m d sttm 格式化時間 printf str ...

c中如何得到登陸使用者的IP,C 怎樣得到當前使用者的使用者名稱和IP地址

request.userhostaddress獲得的是請求頁面的客戶端的ip 如果你是從本地開啟頁面的話就肯定得到是本機地址 除非你從區域網上開啟 string clienthostname context.request.userhostname.tostring string clientipa...

c中如何把string型別轉化為datatime

我這裡有種思路 剛學到得,希望對你有用,拋磚引玉 string converttime 2012 12 12 13 00 21 872 datetime mdate1 datetime.parseexact converttime,yyyy mm dd hh mm ss fff null conve...