Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #18.7K
~955 People Reached
Favorite Forums

4 Posted Topics

Member Avatar for newbie14

Usually, it's a good idea to make a first selection like this [CODE] SELECT * FROM POI WHERE ABS(rowLat - pLat)< 1 AND ABS(rowLong - pLong)<1 [/CODE] and apply the Distance function only on the small selection. < 1 means difference must be lower than 1 degree; you must adjust …

Member Avatar for newbie14
0
497
Member Avatar for simplyit

If you need a graphic user interface (to display maps) there is also MapInfo; If you only want to store geographical data and make calculation (distance between points, Point in polygon, adjacence of areas, and so on) Oracle Spatial is great.

Member Avatar for jjc_Mtl
0
87
Member Avatar for moone009
Member Avatar for jjc_Mtl
0
148
Member Avatar for gurung

Hi gurund, since you have 2 tables, I suppose you want to check if country_id exists; you open a connection : and test if country_id exists in [Country] [CODE] dim queryCmd as OleDbCommand Dim queryStrName, queryStr as String Dim noCountry as Integer Dim conn as new System.Data.OleDB.OleDbConnection(...) queryStrName = "SELECT …

Member Avatar for jjc_Mtl
0
223

The End.