# File lib/dbi/handles/statement.rb, line 155 155: def column_names 156: raise InterfaceError, "Statement was already closed!" if @handle.nil? 157: return @cols unless @cols.nil? 158: @cols = @handle.column_info.collect {|col| col['name'] } 159: end