Class: IBRuby::Blob

Inherits:
Object
  • Object
show all
Defined in:
lib/src.rb

Overview

This class represents Blob data fetched from the database. The class defers the actual loading of the blob until requested. The class is somewhat basic and maybe expanded upon in later releases.

Instance Method Summary collapse

Constructor Details

#initializeBlob

This is the constructor for the Blob class. This shouldn’t really be used outside of the IBRuby library.



1096
1097
# File 'lib/src.rb', line 1096

def initialize
end

Instance Method Details

#closeObject

This method closes a blob, freeing any resources associated with it.



1110
1111
# File 'lib/src.rb', line 1110

def close
end

#each {|segment| ... } ⇒ Object

This method loads the segments of a blob one after another. The blob segments are passed as strings to the block passed to the method.

Yields:

  • (segment)


1118
1119
1120
# File 'lib/src.rb', line 1118

def each
   yield segment
end

#to_sObject

This method loads the entire data set for a blob as a string.



1103
1104
# File 'lib/src.rb', line 1103

def to_s
end