freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

基于arcgis公交車輛軌跡查詢畢業(yè)設(shè)計-資料下載頁

2025-02-26 08:33本頁面
  

【正文】 PUT datatype=string/Parameter Parameter id=@xb type=INPUT datatype=string/Parameter Parameter id=@sfzh type=INPUT datatype=string/Parameter Parameter id=@zhiwei type=INPUT datatype=string/Parameter Parameter id=@DriverNo type=INPUT datatype=string/Parameter Parameter id=@lxdz type=INPUT datatype=string/Parameter Parameter id=@lxdh type=INPUT datatype=string/Parameter /Sql ! 按人員 id查找人員信息并更新人員信息 Sql id=GetUpdateStaff_information type=sql desc=按人員 id 查找人員信息并更新人員信息 returntype= resultmap= parametermapp= Value select * from RenYuan where (ryid = @ryid)/Value Parameter id=@ryid type=INPUT datatype=string/Parameter /Sql ! 更新指定條員工信息 Sql id=UpdateStaff_information type=sql desc=更新指定條員工信息 returntype= resultmap= parameter= Value UPDATE RenYuan SET 26 ryid=@ryid,xlid=@xlid,cdid=@cdid,rybh=@rybh,rymc=@rymc,pysx=@pysx,xb=@xb,sfzh=@sfzh, zhiwei=@zhiwei,DriverNo=@DriverNo,lxdz=@lxdz,lxdh=@lxdh WHERE (ryid=@ryid)/Value Parameter id=@ryid type=INPUT datatype=string/Parameter Parameter id=@xlid type=INPUT datatype=string/Parameter Parameter id=@cdid type=INPUT datatype=string/Parameter Parameter id=@rybh type=INPUT datatype=string/Parameter Parameter id=@rymc type=INPUT datatype=string/Parameter Parameter id=@pysx type=INPUT datatype=string/Parameter Parameter id=@xb type=INPUT datatype=string/Parameter Parameter id=@sfzh type=INPUT datatype=string/Parameter Parameter id=@zhiwei type=INPUT datatype=string/Parameter Parameter id=@DriverNo type=INPUT datatype=string/Parameter Parameter id=@lxdz type=INPUT datatype=string/Parameter Parameter id=@lxdh type=INPUT datatype=string/Parameter /Sql ! 刪除員工信息 Sql id=DeleteStaff_information type=sql desc= 刪 除 員 工 信 息 returntype= resultmap= parametermapp= Valuedelete RenYuan where (ryid = @ryid)/Value Parameter id=@ryid type=INPUT datatype=string/Parameter /Sql ! 查詢所有站點信息 Sql id=GetAllZw_information type=sql desc=查詢所有站點信息 returntype= resultmap= parametermapp= Valueselect zwid AS 站點 id,zm as 站點名稱 ,zwh as 站點號 ,zwgpsx as 站點橫坐標(biāo) , zwgpsy as 站點縱坐標(biāo) from ZD/Value /Sql ! 按路線 id信息查找線路信息 Sql id=Getxlid_information type=sql desc=按路線 id信息查找公交車信息 returntype= resultmap= parametermapp= Valueselect distinct xlmc as 線路名稱 ,xlbh as 線路編號 ,xlcd as 線路長度 ,sfzmc as 始發(fā)站名稱 , mfzmc as 末發(fā)站名稱 ,szscsj as 始發(fā)站首發(fā)車時間 ,szfcsj as 始發(fā)站末班車時間 ,mzfcsj as 末發(fā)站首 班發(fā)車時間 ,mzmcsj as 末發(fā)站末班車發(fā)車時間 from AllXl where (xlid = @xlid)/Value Parameter id=@xlid type=INPUT datatype=string/Parameter /Sql /SqlList 27 附錄 B region根據(jù)所選擇的車牌號和車輛行駛的時間段,進(jìn)行對應(yīng)的車輛的軌跡畫點 /// summary /// 根據(jù)所選擇的車牌號和車 輛行駛的時間段,進(jìn)行對應(yīng)的車輛的軌跡畫點 /// /summary /// param name=sender/param /// param name=e/param private void Btn_query_Click(object sender, EventArgs e) { string pzh = ()。 DateTime startTime = ()。 DateTime overtTime = ()。 DataTable dt = (pzh,startTime,overtTime)。 //首先清除圖層里面的要素 ClearElment()。 //調(diào)用函數(shù)進(jìn)行畫點 DrawPoints(dt)。 } endregion region畫點 /// summary /// 畫點 /// /summary /// param name=dtPoints參數(shù)對象 /param private void DrawPoints(DataTable dtPoints) { DeletePoints()。 IFeatureLayer layer = (0) as IFeatureLayer。 IFeatureClass fc = 。 IWorkspaceEdit we = (fc as IDataset).Workspace as IWorkspaceEdit。 IFeature f。 IPoint p。 //開始編輯事務(wù),此時其它程序不可打開相同地圖,否則由于互斥導(dǎo)致異常 (false)。 //開始編輯 ()。 for (int i = 0。 i 。 i++) { f = ()。//創(chuàng)建地物 p = new PointClass()。//創(chuàng)建點 //設(shè)置點坐標(biāo) double xx = ([i][10].ToString())。 28 double yy = ([i][11].ToString())。 (xx, yy)。 = p。 //編輯屬性表 (2, [i][3])。//線路名稱 (3, [i][5])。//車輛編號 (4, [i][7])。//車牌號 (5, [i][8])。//車載 SIM卡號 (6, [i][9])。//車輛行駛速度 (7, [i][10])。//gpsx (8, [i][11])。//gpsy (9, [i][12])。//gps 獲取時間 //保存 ()。 } ()。//結(jié)束編輯 (true)。//結(jié)束事務(wù) } endregion region清除圖層里面的要素 /// summary /// 清除圖層里面的要素 /// /summary public void ClearElment() { IGraphicsContainer graphicsContainer。 IElement el。 graphicsContainer = as IGraphicsContainer。 ()。 el = ()。 while (el != null) { (el)。 el = ()。 } ()。 } endregion using System。 using 。 using 。 using 。 29 using 。 using 。 using 。 using 。 namespace { class BusBLL { region 獲取數(shù)據(jù)層中的方法,之后根據(jù)車牌號、時間段篩選數(shù)據(jù)庫中的數(shù)據(jù) /// summary /// 獲取數(shù)據(jù)層中的方法,之后根據(jù)車牌號、時間段篩選數(shù)據(jù)庫中的數(shù)據(jù) /// /summary /// param name=pzh車牌號碼 /param /// param name=startTime時間段選擇的開始時間 /param /// param name=overTime時 間段選擇的結(jié)束時間 /param /// returns/returns public static DataTable ObtainGPSTime_information(string pzh,DateTime startTime,DateTime overTime) { return (pzh,startTime,overTime)。 } endregion } }
點擊復(fù)制文檔內(nèi)容
環(huán)評公示相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1