Re: [Rd] StringFromInteger made private in r38652

2006-08-08 Thread Seth Falcon
Prof Brian Ripley <[EMAIL PROTECTED]> writes: > Those functions are messy (StringFromRaw was always private), and are > really just part of coerceVector and asInteger etc (which are the public > interface). > > What RdbiPgSql does is not currently correct. It has > > PROTECT(rowNames = allocV

Re: [Rd] StringFromInteger made private in r38652

2006-08-07 Thread Prof Brian Ripley
Those functions are messy (StringFromRaw was always private), and are really just part of coerceVector and asInteger etc (which are the public interface). What RdbiPgSql does is not currently correct. It has PROTECT(rowNames = allocVector(STRSXP, rows)); for (row = 0; row < rows; ++row)

[Rd] StringFromInteger made private in r38652

2006-08-07 Thread Seth Falcon
Hi, In commit 38652, StringFromInteger (among others) was removed from R's public API. I've just come across a Bioconductor package, RdbiPgSql, that uses this function. Is there an alternative that is in the public API? If not, it would be nice to be able to reuse these sorts of helper function