what is the right field type for IP address in mysql? and what is the right way of storing it?
|
|
This tutorial might help you: http://daipratt.co.uk/mysql-store-ip-address/. The most efficient say of saving IPv4 addresses is with an INT field (not VARCHAR as you might expect). You convert them using PHP's If you need to store IPv6, you'll want to use a BINARY field instead and PHP's |
|||||||||||
|
|
you can store them in a binary field with a length of 128 bits (16 bytes, |
|||||||||
|
|
Generally you can go with VARCHAR(45) as it will be long enough to even store IPv6. |
|||||||||||||||||
|