IP 数据库,CSV 和 MDB 格式。
生活随笔
收集整理的這篇文章主要介紹了
IP 数据库,CSV 和 MDB 格式。
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
IP 數據庫,CSV 和 MDB 格式。
F#
數據取自“純真IP數據庫”,經本人整理。數據更新時間為 2011-03-05。 下載地址:http://loist.3322.org:88/download/ipLib/
數據查詢例子: create or replaceFUNCTION f_ipToLong(ip in varchar2)return numberisp1 number;p2 number;p3 number;beginp1 := instr(ip, '.', 1, 1);p2 := instr(ip, '.', 1, 2);p3 := instr(ip, '.', 1, 3);return to_number(substr(ip, 1, p1-1))*256*256*256 + to_number(substr(ip, p1+1, p2-p1-1))*256*256 + to_number(substr(ip, p2+1, p3-p2-1))*256 + to_number(substr(ip, p3+1));end; create or replaceFUNCTION f_longToIp(ip in number)return varchar2isbeginreturn floor(ip/65536/256) || '.' || mod(floor(ip/65536), 256) || '.' || mod(floor(ip/256), 256) || '.' || mod(ip, 256);end; select * from ipLib where (select f_iptolong('8.8.8.8') from dual) between ip_1 and ip_2;
- ipLib_20110309.rar (6.3 MB)
- 描述: ip 數據庫 CSV格式
- 下載次數: 10
- ipLib_mdb_20110309.rar (9 MB)
- 描述: IP數據庫 MDB格式
- 下載次數: 14
轉自:http://loist.iteye.com/blog/948562
總結
以上是生活随笔為你收集整理的IP 数据库,CSV 和 MDB 格式。的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Steam道具搬运靠谱吗?Steam搬砖
- 下一篇: win2003 apache php5.