Class: OCI8::Metadata::Database

Inherits:
Base
  • Object
show all
Defined in:
lib/oci8/metadata.rb

Overview

Metadata for a database.

This is returned by:

  • OCI8#describe_database(database_name)

Instance Method Summary collapse

Methods inherited from Base

#obj_id, #obj_name, #obj_schema

Instance Method Details

#autocommit_ddlObject

Is autocommit mode required for DDL statements? Values are :ac_ddl and :no_ac_ddl



1869
1870
1871
1872
1873
1874
# File 'lib/oci8/metadata.rb', line 1869

def autocommit_ddl
  case attr_get_ub1(OCI_ATTR_AUTOCOMMIT_DDL)
  when 0; :ac_ddl
  when 1; :no_ac_ddl
  end
end

#catalog_locationObject

Position of the catalog in a qualified table. Values are :cl_start and :cl_end



1842
1843
1844
1845
1846
1847
# File 'lib/oci8/metadata.rb', line 1842

def catalog_location
  case attr_get_ub1(OCI_ATTR_CATALOG_LOCATION)
  when 0; :cl_start
  when 1; :cl_end
  end
end

#charset_idObject

database character set Id



1796
1797
1798
# File 'lib/oci8/metadata.rb', line 1796

def charset_id
  attr_get_ub2(OCI_ATTR_CHARSET_ID)
end

#charset_nameObject

database character set name



1886
1887
1888
# File 'lib/oci8/metadata.rb', line 1886

def charset_name
  __charset_name(charset_id)
end

#cursor_commit_behaviorObject

How a COMMIT operation affects cursors and prepared statements in the database. Values are:

:cusror_open

preserve cursor state as before the commit operation

:cursor_closed

cursors are closed on COMMIT, but the application can still re-execute the statement without re-preparing it



1828
1829
1830
1831
1832
1833
# File 'lib/oci8/metadata.rb', line 1828

def cursor_commit_behavior
  case attr_get_ub1(OCI_ATTR_CURSOR_COMMIT_BEHAVIOR)
  when 0; :cusror_open
  when 1; :cursor_closed
  end
end

#inspectObject

:nodoc:



1900
1901
1902
# File 'lib/oci8/metadata.rb', line 1900

def inspect # :nodoc:
  "#<#{self.class.name}:(#{obj_id}) #{obj_name} #{version}>"
end

#locking_modeObject

Locking mode for the database. Values are :lock_immediate and :lock_delayed



1878
1879
1880
1881
1882
1883
# File 'lib/oci8/metadata.rb', line 1878

def locking_mode
  case attr_get_ub1(OCI_ATTR_LOCKING_MODE)
  when 0; :lock_immediate
  when 1; :lock_delayed
  end
end

#max_catalog_namelenObject

Maximum length of a catalog (database) name



1836
1837
1838
# File 'lib/oci8/metadata.rb', line 1836

def max_catalog_namelen
  attr_get_ub1(OCI_ATTR_MAX_CATALOG_NAMELEN)
end

#max_column_lenObject

Maximum length of a column name



1817
1818
1819
# File 'lib/oci8/metadata.rb', line 1817

def max_column_len
  attr_get_ub4(OCI_ATTR_MAX_COLUMN_LEN)
end

#max_proc_lenObject

Maximum length of a procedure name



1812
1813
1814
# File 'lib/oci8/metadata.rb', line 1812

def max_proc_len
  attr_get_ub4(OCI_ATTR_MAX_PROC_LEN)
end

#ncharset_idObject

database national language support character set Id



1801
1802
1803
# File 'lib/oci8/metadata.rb', line 1801

def ncharset_id
  attr_get_ub2(OCI_ATTR_NCHARSET_ID)
end

#ncharset_nameObject

database national language support character set name



1891
1892
1893
# File 'lib/oci8/metadata.rb', line 1891

def ncharset_name
  __charset_name(ncharset_id)
end

#nowait_supportObject

Does database support the nowait clause? Values are :nw_supported and :nw_unsupported



1860
1861
1862
1863
1864
1865
# File 'lib/oci8/metadata.rb', line 1860

def nowait_support
  case attr_get_ub1(OCI_ATTR_NOWAIT_SUPPORT)
  when 0; :nw_supported
  when 1; :nw_unsupported
  end
end

#savepoint_supportObject

Does database support savepoints? Values are :sp_supported and :sp_unsupported



1851
1852
1853
1854
1855
1856
# File 'lib/oci8/metadata.rb', line 1851

def savepoint_support
  case attr_get_ub1(OCI_ATTR_SAVEPOINT_SUPPORT)
  when 0; :sp_supported
  when 1; :sp_unsupported
  end
end

#schemasObject

array of Schema objects in the database



1896
1897
1898
# File 'lib/oci8/metadata.rb', line 1896

def schemas
  @schemas ||= list_schemas.to_a
end

#versionObject

database version



1791
1792
1793
# File 'lib/oci8/metadata.rb', line 1791

def version
  attr_get_string(OCI_ATTR_VERSION)
end