shall I use binary(16)? or varbinary(16)?

I know I can use getAddress() in java.net.InetAddress (Java) or System.Net.IPAddress (C#) to get a byte[] representation of both IPv4 and IPv6, but if I need to insert IPv4 i.e. binary(4) into a binary(16) field in SQL Server, do I need to worry about padding or anything?

Thanks

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

IF you store a binary(4) in a binary(16) column you'll get back, when you read it, a padded value of length 16. If you want to have dynamic length you must use a varbinary(16). This type retains the length of the data inserted, at the cost of adding extra 2 bytes on-disk (the actual length).

link|improve this answer
Since I expect majority of the IP will still be in IPv4, I guess varbinary(16) makes sense. – Henry Aug 25 '10 at 0:03
And the cost of creating a variable length field – NullUserException Aug 25 '10 at 0:04
1  
For the exact cost details see msdn.microsoft.com/en-us/library/ms178085.aspx and/or sqlskills.com/blogs/paul/post/… – Remus Rusanu Aug 25 '10 at 0:16
Remus Rusanu, would u use binary(16) or varbinary(16)? – Henry Aug 25 '10 at 7:29
Definitely varbinary(16) – Remus Rusanu Aug 25 '10 at 14:44
feedback

Use v4-in-v6 address embedding to convert your ipv4 addresses to ipv6 format; then you can treat them all identically.

link|improve this answer
wouldn't it be just like binary(4) with 12x zero byte padding in front? – Henry Aug 25 '10 at 1:13
1  
Presumably you expect some of the entries in this database column to be actual ipv6 addresses. The point of v4-in-v6 embedding is that more of your application code won't have to care about the difference (it can just pretend it has nothing but v6 addresses). – Zack Aug 25 '10 at 1:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.