I use a MySQL DB with jdbc and have select statement that looks like: 'SELECT id, name, INET_ATON(user_ip) AS user_ip_long FROM my_table;' witch works perfectly, but for testing purpose I would like to use a derby DB aswell.
Since derby doesn't support inet_aton() I would like to know if ther is any workaround to use an inet_aton() function with derby?