Importing IP2Proxy data into Oracle Database and querying with PHP (IPv6)

The aim of this guide is to demonstrate how to import IP2Proxy data (PX11 IPv6) in CSV form into Oracle Database and then query the data in a PHP web page. Download commercial version at https://ip2location.com/download?code=PX11IPV6 Extract out the IP2PROXY-IPV6-PROXYTYPE-COUNTRY-REGION-CITY-ISP-DOMAIN-USAGETYPE-ASN-LASTSEEN-THREAT-RESIDENTIAL-PROVIDER.CSV file from the downloaded zipped file. Important Note We will […]

Importing IP2Proxy data into Oracle Database and querying with PHP (IPv4)

The aim of this guide is to demonstrate how to import IP2Proxy data (PX11) in CSV form into Oracle Database and then query the data in a PHP web page. Download commercial version at https://ip2location.com/download?code=PX11 Extract out the IP2PROXY-IP-PROXYTYPE-COUNTRY-REGION-CITY-ISP-DOMAIN-USAGETYPE-ASN-LASTSEEN-THREAT-RESIDENTIAL-PROVIDER.CSV file from the downloaded zipped file. Important Note We will not […]

Importing IP2Location data into Oracle Database and querying with PHP (IPv6)

The aim of this guide is to demonstrate how to import IP2Location data (DB26 IPv6) in CSV form into Oracle Database and then query the data in a PHP web page. Download commercial version at https://ip2location.com/download?code=DB26IPV6 Extract out the IPV6-COUNTRY-REGION-CITY-LATITUDE-LONGITUDE-ZIPCODE-TIMEZONE-ISP-DOMAIN-NETSPEED-AREACODE-WEATHER-MOBILE-ELEVATION-USAGETYPE-ADDRESSTYPE-CATEGORY-DISTRICT-ASN.CSV file from the downloaded zipped file. Important Note We will […]

Importing IP2Proxy data into SQLITE and querying with C# (IPv4)

Intro The aim of this guide is to demonstrate how to import IP2Proxy data (PX11) in CSV form into SQLITE and then query the data using C#. First of all, you will need to download the IP2Proxy PX11 CSV file. Download commercial version at https://ip2location.com/download?code=PX11 Extract out the IP2PROXY-IP-PROXYTYPE-COUNTRY-REGION-CITY-ISP-DOMAIN-USAGETYPE-ASN-LASTSEEN-THREAT-RESIDENTIAL-PROVIDER.CSV file […]

Using the IP2Proxy Java Component in a Singleton class

Intro Normally, you would not have to encapsulate the IP2Proxy Java Component in a Singleton class. You could just create a global IP2Proxy object and instantiate that. After that, just have all threads query proxy data from that global object. What we are doing in this article is more for […]

How to display the geolocation results on amChart map

There is a growing number of websites that display various geolocation information using an interactive map object, for example, an amChart. A well-designed map display could provide visitors a quick glance of important information. For example, a statistical company could use the map to illustrate the service utilization rates globally, […]

Concurrent queries with IP2Proxy Go Package

Intro Good news! IP2Proxy Go Package version 2.3.0 has been modified to support concurrent proxy queries using the IP2Proxy BIN database files. This means you can write more powerful and faster codes to get your task done sooner. Below is our simple example to demonstrate concurrency with the IP2Proxy Go […]