I want to enable a RODBC connection as part of an S4 object. It appears that RODBC is S3. For instance:
setClass( Class="Node", representation=representation( nodeName = "character", connection = "RODBC" ) )
Throws away undefined slot classes . Looks like I want to use setOldClass , but it's hard for me to figure out how to use it. Assuming I really want setOldClass , how to use setOldClass so that I can include my RODBC connection as a slot in my Node class?
source share