On Mon, Apr 28, 2008 at 03:48:35PM -0700, Jan Dubois wrote: > Use the GV_ADDMULTI flag: > > if (sv = get_sv("Win32::SqlServer::Version", TRUE | GV_ADDMULTI))
Really that should be if (sv = get_sv("Win32::SqlServer::Version", GV_ADD | GV_ADDMULTI)) The flags to get_sv() were always a bitmask, never a simple TRUE/FALSE, but until recently the documentation wasn't very good. Nicholas Clark