pstmt = conn.prepareStatement("select ordernumber,datetime,price,dayofmoney from zujie where ordernumber= "+ cdName + " ") rs=pstmt.executeQuery() if(rs!=Null && rs.next()){ String datetime = rs.getString(2) java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat ("yyyy-MM-dd") Date date = new Date() String date1=formatter.format(date) ParsePosition pos = new ParsePosition(0) ParsePosition pos1 = new ParsePosition(0) Date dt1=formatter.parse(datetime,pos) Date dt2=formatter.parse(date1,pos1) Long l = (dt2.getTime()-dt1.getTime())/(3600*24*1000)+1 double price = rs.getDouble(3) double dayofmoney=rs.getDouble(4) double dayofmoneybuy=dayofmoney*l double otherMoney = price-dayofmoneybuy request.setAttribute("price", price) request.setAttribute("l", l) request.setAttribute("dayofmoney", dayofmoneybuy) request.setAttribute("otherMoney", otherMoney)
標(biāo)簽: prepareStatement ordernumber dayofmoney datetime
上傳時(shí)間: 2013-12-14
上傳用戶:zsjinju
線程描述。主程序創(chuàng)建兩個(gè)線程myThread1 和 myThread2 ,每個(gè)線程打印一句話。使用pthread_create(&id,Null,(void *) thread,Null)完成。 先定義每個(gè)線程的執(zhí)行體,然后在main中創(chuàng)建幾個(gè)線程,最后主線程序等待子線程序結(jié)束后再退出。 2、創(chuàng)建兩個(gè)線程,分別向線程傳遞如下兩種類型的參數(shù)
標(biāo)簽: myThread1 myThread2 線程 程序
上傳時(shí)間: 2016-12-14
上傳用戶:米卡
/* 在這里我們連接 "destroy" 事件到一個(gè)信號(hào)處理函數(shù)。 * 對(duì)這個(gè)窗口調(diào)用 gtk_widget_destroy() 函數(shù)或在 "delete_event" 回調(diào)函數(shù)中返回 FALSE 值 * 都會(huì)觸發(fā)這個(gè)事件。*/ g_signal_connect (G_OBJECT (window), "destroy", G_CALLBACK (destroy), Null) /* 設(shè)置窗口邊框的寬度。*/ gtk_container_set_border_width (GTK_CONTAINER (window), 10) /* 創(chuàng)建一個(gè)標(biāo)簽為 "Hello World" 的新按鈕。*/ button = gtk_button_new_with_label ("hello world") /* 當(dāng)按鈕收到 "clicked" 信號(hào)時(shí)會(huì)調(diào)用 hello() 函數(shù),并將Null傳給 * 它作為參數(shù)。hello() 函數(shù)在前面定義了。*/ g_signal_connect (G_OBJECT (button), "clicked", G_CALLBACK (hello), Null)
標(biāo)簽: gtk_widget_destroy delete_event destroy FALS
上傳時(shí)間: 2016-12-26
上傳用戶:zsjinju
遠(yuǎn)程抄表系統(tǒng)的客戶端程序 安徽六安項(xiàng)目-客戶端程序 0 開發(fā)環(huán)境 Delphi 7.0 所需控件 mxOutlookBar 數(shù) 據(jù) 庫 Sybase 11.5 1 04-12-17 根據(jù)安徽六安項(xiàng)目需求開發(fā)。 2 04-12-31 基本功能模塊定義完畢。 05-01-10 開發(fā)基本完畢。 3 05-3月下旬 六安現(xiàn)場(chǎng)調(diào)試、測(cè)試、試運(yùn)行、正式運(yùn)行。 4 05-07-19 更改可以遠(yuǎn)方調(diào)試DSP參數(shù),新增加 50 - 59號(hào)指令。 更改數(shù)據(jù)庫結(jié)構(gòu) alter table tx_BianTai add fd_DspMaxU decimal(6,2) Null, fd_DspMinU decimal(6,2) Null, fd_DspMaxT decimal(6,2) Null, fd_DspMinT decimal(6,2) Null, fd_DspMaxXB decimal(6,2) Null, fd_DspTQTime decimal(6,2) Null, //投切間隔 fd_DspLQTime decimal(6,2) Null //冷卻時(shí)間 更改一些小細(xì)節(jié),比如:密碼驗(yàn)證模塊等等。 5 05-07-19
標(biāo)簽: mxOutlookBar Delphi Sybase 11.5
上傳時(shí)間: 2016-12-31
上傳用戶:kbnswdifs
#include<stdio.h> #include<string.h> #include<limits.h> #include<unistd.h> #include<sys/types.h> #define PROMPT_STRING "[myshell]$" #define QUIT_STRING "exit\n" static char inbuf[MAX_CANON] char * g_ptr char * g_lim extern void yylex() int main (void){ for( ){ if(fputs(PROMPT_STRING,stdout)==EOF) continue if(fgets(inbuf,MAX_CANON,stdin)==Null) continue if(strcmp(inbuf,QUIT_STRING)==0) break g_ptr = inbuf g_lim = inbuf + strlen(inbuf) yylex() } return 0 }
標(biāo)簽: include gt lt limits
上傳時(shí)間: 2016-12-31
上傳用戶:colinal
MS Visual Studio .NET.rar frame.CombinedTransformationMatrix = frame.TransformationMatrix * parentMatrix if (frame.FrameSibling != Null) { UpdateFrameMatrices((FrameDerived)frame.FrameSibling, parentMatrix) } if (frame.FrameFirstChild != Null) { UpdateFrameMatrices((FrameDerived)frame.FrameFirstChild, frame.CombinedTransformationMatrix) }
標(biāo)簽: CombinedTransformationMatrix frame TransformationMatrix Visual
上傳時(shí)間: 2017-01-01
上傳用戶:daguda
在很多項(xiàng)目中,特別是信息系統(tǒng),查詢功能占了項(xiàng)目的大部分;同時(shí)查詢條件的組合要求豐富,因此實(shí)現(xiàn)起來變得復(fù)雜。一般情況下,我們只會(huì)實(shí)現(xiàn)有限的條件查詢,如一個(gè)表的某幾個(gè)重要的字段或者甚至所有的字段;當(dāng)然,常規(guī)的情況下客戶是足夠用的,但一些高級(jí)的應(yīng)用,如((字段1>10) or (字段2=5)) and 字段3 is not Null) 這種復(fù)雜的條件組合,就不一定適合了,通常如果是固定幾種組合模式,這樣我們還可以在后臺(tái)用語言(java、c#等)實(shí)現(xiàn),要是條件組合是動(dòng)態(tài)的,那么實(shí)現(xiàn)起來就相當(dāng)麻煩了。 因此為了實(shí)現(xiàn)動(dòng)態(tài)的條件組合,總結(jié)了之前一些項(xiàng)目經(jīng)驗(yàn),寫了一個(gè)高級(jí)組合查詢控件的原型,
標(biāo)簽: 項(xiàng)目
上傳時(shí)間: 2017-01-07
上傳用戶:xiaodu1124
.NET平臺(tái)下專題地圖實(shí)現(xiàn)的C#代碼 private void 點(diǎn)密度圖ToolStripMenuItem_Click(object sender, EventArgs e) { //獲取當(dāng)前圖層 ,并把它設(shè)置成IGeoFeatureLayer的實(shí)例 IMap pMap = axMapControl1.Map ILayer pLayer = pMap.get_Layer(0) as IFeatureLayer IFeatureLayer pFeatureLayer = pLayer as IFeatureLayer IGeoFeatureLayer pGeoFeatureLayer = pLayer as IGeoFeatureLayer //獲取圖層上的feature IFeatureClass pFeatureClass = pFeatureLayer.FeatureClass IFeatureCursor pFeatureCursor = pFeatureClass.Search(Null, false) IFeature pFeature = pFeatureCursor.NextFeature()
標(biāo)簽: ToolStripMenuItem_Click EventArgs private object
上傳時(shí)間: 2013-11-27
上傳用戶:xlcky
#include<stdlib.h> #include "dos.h" #include "graphics.h" #include "math.h" #define PI 3.1415926 #define Null 0 #include<stdio.h> #include<string.h>
標(biāo)簽: include graphics define stdlib
上傳時(shí)間: 2013-12-29
上傳用戶:王者A
//JDBC驅(qū)動(dòng)器名稱(JDBC-ODBC橋) private String strDBDriver = "sun.jdbc.odbc.JdbcOdbcDriver" //數(shù)據(jù)庫的URL地址 private String strUrl = "jdbc:odbc:atm1" //指定要訪問的數(shù)據(jù)庫名稱 private String strDBName = "atm1" //數(shù)據(jù)庫用戶名稱 private String strUserName = "testUser" //數(shù)據(jù)庫用戶密碼 private String strPassWord = "12345" //數(shù)據(jù)庫連接對(duì)象,初始化為空 private Connection conTemp = Null //連接的容器對(duì)象,初始化為空 private Statement stmtTemp = Null //結(jié)果集對(duì)象,初始化為空 private ResultSet rsTemp = Null //操作記錄行數(shù) private int intOperateNum
標(biāo)簽: JdbcOdbcDriver strDBDriver JDBC-ODBC private
上傳時(shí)間: 2017-02-08
上傳用戶:songrui
蟲蟲下載站版權(quán)所有 京ICP備2021023401號(hào)-1