Displaying 3 results from an estimated 3 matches for "xmltype".
Did you mean:
  km_type
  
2006 Mar 06
5
Oracle XMLType data
Howdy folks,
Has anyone had any luck getting Oracle''s XMLType to play nicely with  
Rails?  According to the docs, it''s just a wrapper around CLOB.   
However the ruby-oci8 driver throws an exception about user defined  
types if you try to query a table with an XMLType column.
Any pointers would be appreciated.
Thanks,
-wilig
2006 Mar 14
8
"Database" as a collection of XML docs
Hello everyone,
A new project I''m starting on has a "database" consisting of many 10s
of thousands of XML documents.  They all conform to a common schema. 
The project consists pretty much exclusively of searching and
presenting existing data - there''s no need (for the forseeable future)
to be able to input or update XML documents in the database.  Unlike
(say) blog
2007 May 29
4
undefined method `define_a_column' for class `OCI8::Cursor'
...se do_ocicall(@ctx) { @parms[i -
1].attrGet(OCI_ATTR_DATA_TYPE) }
        when 8    : @stmt.defineByPos(i, String, 65535) # Read LONG
values
        when 187  : @stmt.defineByPos(i, OraDate) # Read TIMESTAMP
values
        when 108
          if @parms[i - 1].attrGet(OCI_ATTR_TYPE_NAME) == ''XMLTYPE''
            @stmt.defineByPos(i, String, 65535)
          else
            raise ''unsupported datatype''
          end
        else define_a_column_pre_ar i
        end
      end
    end
...
===========================
It looks like it is redefining a function from the o...