Home
last modified time | relevance | path

Searched refs:column (Results 1 – 25 of 510) sorted by relevance

12345678910>>...21

/AOO41X/main/ucbhelper/source/provider/
H A Dresultsetmetadata.cxx156 sal_Bool SAL_CALL ResultSetMetaData::isAutoIncrement( sal_Int32 column ) in isAutoIncrement() argument
164 if ( ( column < 1 ) || ( column > m_aProps.getLength() ) ) in isAutoIncrement()
167 return m_pImpl->m_aColumnData[ column - 1 ].isAutoIncrement; in isAutoIncrement()
172 sal_Bool SAL_CALL ResultSetMetaData::isCaseSensitive( sal_Int32 column ) in isCaseSensitive() argument
175 if ( ( column < 1 ) || ( column > m_aProps.getLength() ) ) in isCaseSensitive()
178 return m_pImpl->m_aColumnData[ column - 1 ].isCaseSensitive; in isCaseSensitive()
183 sal_Bool SAL_CALL ResultSetMetaData::isSearchable( sal_Int32 column ) in isSearchable() argument
191 if ( ( column < 1 ) || ( column > m_aProps.getLength() ) ) in isSearchable()
194 return m_pImpl->m_aColumnData[ column - 1 ].isSearchable; in isSearchable()
199 sal_Bool SAL_CALL ResultSetMetaData::isCurrency( sal_Int32 column ) in isCurrency() argument
[all …]
/AOO41X/main/offapi/com/sun/star/sdbc/
H A DXResultSetMetaData.idl45 the column count
52 /** indicates whether the column is automatically numbered, thus read-only.
53 @param column
54 the first column is 1, the second is 2,
60 boolean isAutoIncrement([in]long column) raises (SQLException);
63 /** indicates whether a column's case matters.
64 @param column
65 the first column is 1, the second is 2,
71 boolean isCaseSensitive([in]long column) raises (SQLException);
74 /** indicates whether the column can be used in a where clause.
[all …]
H A DXRowUpdate.idl58 /** gives a nullable column a null value.
60 the position of the column
67 /** updates a column with a boolean value.
69 the position of the column
71 the new column value
78 /** updates a column with a byte value.
80 the position of the column
82 the new column value
89 /** updates a column with a short value.
91 the position of the column
[all …]
H A DXRow.idl71 /** reports whether the last column read had a value of SQL NULL.
72 Note that you must first call getXXX on a column to try to read
77 <TRUE/> if last column read was SQL NULL and <FALSE/> otherwise
84 /** gets the value of a column in the current row as a string.
86 the first column is 1, the second is 2,
88 the column value; if the value is SQL NULL, the result is null
95 /** gets the value of a column in the current row as boolean.
97 the first column is 1, the second is 2,
99 the column value; if the value is SQL NULL, the result is null
106 /** get the value of a column in the current row as a byte.
[all …]
/AOO41X/main/connectivity/source/drivers/odbcbase/
H A DOResultSetMetaData.cxx42 sal_Int32 column = _column; in getCharColAttrib() local
44 column = m_vMapping[_column]; in getCharColAttrib()
50 (SQLUSMALLINT)column, in getCharColAttrib()
70 (SQLUSMALLINT)column, in getCharColAttrib()
105 sal_Int32 column = _column; in getNumColAttrib() local
107 column = m_vMapping[_column]; in getNumColAttrib()
109 return getNumColAttrib(m_pConnection,m_aStatementHandle,*this,column,ident); in getNumColAttrib()
112 sal_Int32 SAL_CALL OResultSetMetaData::getColumnDisplaySize( sal_Int32 column ) throw(SQLException,… in getColumnDisplaySize() argument
114 return getNumColAttrib(column,SQL_DESC_DISPLAY_SIZE); in getColumnDisplaySize()
120 ,sal_Int32 column) in getColumnODBCType() argument
[all …]
/AOO41X/main/mysqlc/source/
H A Dmysqlc_resultsetmetadata.cxx42 sal_Int32 SAL_CALL OResultSetMetaData::getColumnDisplaySize(sal_Int32 column) in getColumnDisplaySize() argument
48 meta->getColumnDisplaySize(column); in getColumnDisplaySize()
60 sal_Int32 SAL_CALL OResultSetMetaData::getColumnType(sal_Int32 column) in getColumnType() argument
64 checkColumnIndex(column); in getColumnType()
67 return mysqlc_sdbc_driver::mysqlToOOOType(meta->getColumnType(column)); in getColumnType()
100 sal_Bool SAL_CALL OResultSetMetaData::isCaseSensitive(sal_Int32 column) in isCaseSensitive() argument
104 checkColumnIndex(column); in isCaseSensitive()
107 return meta->isCaseSensitive(column); in isCaseSensitive()
119 OUString SAL_CALL OResultSetMetaData::getSchemaName(sal_Int32 column) in getSchemaName() argument
123 checkColumnIndex(column); in getSchemaName()
[all …]
H A Dmysqlc_resultset.cxx191 Reference< XInputStream > SAL_CALL OResultSet::getBinaryStream(sal_Int32 column) in getBinaryStream() argument
197 checkColumnIndex(column); in getBinaryStream()
206 Reference< XInputStream > SAL_CALL OResultSet::getCharacterStream(sal_Int32 column) in getCharacterStream() argument
212 checkColumnIndex(column); in getCharacterStream()
221 sal_Bool SAL_CALL OResultSet::getBoolean(sal_Int32 column) in getBoolean() argument
228 checkColumnIndex(column); in getBoolean()
230 return m_result->getBoolean(column)? sal_True:sal_False; in getBoolean()
236 OUString str = getString(column); in getBoolean()
252 sal_Int8 SAL_CALL OResultSet::getByte(sal_Int32 column) in getByte() argument
259 checkColumnIndex(column); in getByte()
[all …]
H A Dmysqlc_resultset.hxx167 … OUString SAL_CALL getString(sal_Int32 column) throw(SQLException, RuntimeException);
169 … sal_Bool SAL_CALL getBoolean(sal_Int32 column) throw(SQLException, RuntimeException);
171 … sal_Int8 SAL_CALL getByte(sal_Int32 column) throw(SQLException, RuntimeException);
173 … sal_Int16 SAL_CALL getShort(sal_Int32 column) throw(SQLException, RuntimeException);
175 … sal_Int32 SAL_CALL getInt(sal_Int32 column) throw(SQLException, RuntimeException);
177 … sal_Int64 SAL_CALL getLong(sal_Int32 column) throw(SQLException, RuntimeException);
179 … float SAL_CALL getFloat(sal_Int32 column) throw(SQLException, RuntimeException);
181 … double SAL_CALL getDouble(sal_Int32 column) throw(SQLException, RuntimeException);
183 ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getBytes(sal_Int32 column)
186 ::com::sun::star::util::Date SAL_CALL getDate(sal_Int32 column)
[all …]
H A Dmysqlc_resultsetmetadata.hxx70 … sal_Bool SAL_CALL isAutoIncrement(sal_Int32 column) throw(SQLException, RuntimeException);
72 … sal_Bool SAL_CALL isCaseSensitive(sal_Int32 column) throw(SQLException, RuntimeException);
74 … sal_Bool SAL_CALL isSearchable(sal_Int32 column) throw(SQLException, RuntimeException);
76 … sal_Bool SAL_CALL isCurrency(sal_Int32 column) throw(SQLException, RuntimeException);
78 … sal_Int32 SAL_CALL isNullable(sal_Int32 column) throw(SQLException, RuntimeException);
80 … sal_Bool SAL_CALL isSigned(sal_Int32 column) throw(SQLException, RuntimeException);
82 … sal_Int32 SAL_CALL getColumnDisplaySize(sal_Int32 column)throw(SQLException, RuntimeException);
84 … OUString SAL_CALL getColumnLabel(sal_Int32 column) throw(SQLException, RuntimeException);
86 … OUString SAL_CALL getColumnName(sal_Int32 column) throw(SQLException, RuntimeException);
88 … OUString SAL_CALL getSchemaName(sal_Int32 column) throw(SQLException, RuntimeException);
[all …]
/AOO41X/main/connectivity/source/drivers/jdbc/
H A DResultSetMetaData.cxx69 sal_Int32 SAL_CALL java_sql_ResultSetMetaData::getColumnDisplaySize( sal_Int32 column ) throw(SQLEx… in getColumnDisplaySize() argument
73 return callIntMethodWithIntArg("getColumnDisplaySize",mID,column); in getColumnDisplaySize()
77 sal_Int32 SAL_CALL java_sql_ResultSetMetaData::getColumnType( sal_Int32 column ) throw(SQLException… in getColumnType() argument
81 return callIntMethodWithIntArg("getColumnType",mID,column); in getColumnType()
98 sal_Bool SAL_CALL java_sql_ResultSetMetaData::isCaseSensitive( sal_Int32 column ) throw(SQLExceptio… in isCaseSensitive() argument
102 return callBooleanMethodWithIntArg( "isCaseSensitive", mID,column ); in isCaseSensitive()
105 ::rtl::OUString SAL_CALL java_sql_ResultSetMetaData::getSchemaName( sal_Int32 column ) throw(SQLExc… in getSchemaName() argument
109 return callStringMethodWithIntArg("getSchemaName",mID,column); in getSchemaName()
113 ::rtl::OUString SAL_CALL java_sql_ResultSetMetaData::getColumnName( sal_Int32 column ) throw(SQLExc… in getColumnName() argument
117 return callStringMethodWithIntArg("getColumnName",mID,column); in getColumnName()
[all …]
/AOO41X/main/connectivity/source/drivers/file/
H A DFResultSetMetaData.cxx59 void OResultSetMetaData::checkColumnIndex(sal_Int32 column) throw(SQLException, RuntimeException) in checkColumnIndex() argument
62 if(column <= 0 || column > (sal_Int32)(sal_Int32)m_xColumns->get().size()) in checkColumnIndex()
66 sal_Int32 SAL_CALL OResultSetMetaData::getColumnDisplaySize( sal_Int32 column ) throw(SQLException,… in getColumnDisplaySize() argument
69 return getPrecision(column); in getColumnDisplaySize()
73 sal_Int32 SAL_CALL OResultSetMetaData::getColumnType( sal_Int32 column ) throw(SQLException, Runtim… in getColumnType() argument
76 checkColumnIndex(column); in getColumnType()
77 …return getINT32((m_xColumns->get())[column-1]->getPropertyValue(OMetaConnection::getPropMap().getN… in getColumnType()
102 ::rtl::OUString SAL_CALL OResultSetMetaData::getColumnName( sal_Int32 column ) throw(SQLException, … in getColumnName() argument
105 checkColumnIndex(column); in getColumnName()
107 …Any aName((m_xColumns->get())[column-1]->getPropertyValue(OMetaConnection::getPropMap().getNameByI… in getColumnName()
[all …]
/AOO41X/main/connectivity/source/drivers/ado/
H A DADatabaseMetaDataResultSetMetaData.cxx45 sal_Int32 SAL_CALL ODatabaseMetaDataResultSetMetaData::getColumnDisplaySize( sal_Int32 column ) thr… in getColumnDisplaySize() argument
48 if(m_mColumns.size() && (m_mColumnsIter = m_mColumns.find(column)) != m_mColumns.end()) in getColumnDisplaySize()
52 WpADOField aField = ADOS::getField(m_pRecordSet,m_vMapping[column]); in getColumnDisplaySize()
60 sal_Int32 SAL_CALL ODatabaseMetaDataResultSetMetaData::getColumnType( sal_Int32 column ) throw(SQLE… in getColumnType() argument
63 if(m_mColumns.size() && (m_mColumnsIter = m_mColumns.find(column)) != m_mColumns.end()) in getColumnType()
67 WpADOField aField = ADOS::getField(m_pRecordSet,m_vMapping[column]); in getColumnType()
92 ::rtl::OUString SAL_CALL ODatabaseMetaDataResultSetMetaData::getColumnName( sal_Int32 column ) thro… in getColumnName() argument
94 if(m_mColumns.size() && (m_mColumnsIter = m_mColumns.find(column)) != m_mColumns.end()) in getColumnName()
98 WpADOField aField = ADOS::getField(m_pRecordSet,m_vMapping[column]); in getColumnName()
105 ::rtl::OUString SAL_CALL ODatabaseMetaDataResultSetMetaData::getColumnLabel( sal_Int32 column ) thr… in getColumnLabel() argument
[all …]
H A DAResultSetMetaData.cxx53 sal_Int32 SAL_CALL OResultSetMetaData::getColumnDisplaySize( sal_Int32 column ) throw(SQLException,… in getColumnDisplaySize() argument
55 WpADOField aField = ADOS::getField(m_pRecordSet,column); in getColumnDisplaySize()
62 sal_Int32 SAL_CALL OResultSetMetaData::getColumnType( sal_Int32 column ) throw(SQLException, Runtim… in getColumnType() argument
64 WpADOField aField = ADOS::getField(m_pRecordSet,column); in getColumnType()
85 sal_Bool SAL_CALL OResultSetMetaData::isCaseSensitive( sal_Int32 column ) throw(SQLException, Runti… in isCaseSensitive() argument
88 WpADOField aField = ADOS::getField(m_pRecordSet,column); in isCaseSensitive()
105 ::rtl::OUString SAL_CALL OResultSetMetaData::getColumnName( sal_Int32 column ) throw(SQLException, … in getColumnName() argument
107 WpADOField aField = ADOS::getField(m_pRecordSet,column); in getColumnName()
114 ::rtl::OUString SAL_CALL OResultSetMetaData::getTableName( sal_Int32 column ) throw(SQLException, R… in getTableName() argument
118 WpADOField aField = ADOS::getField(m_pRecordSet,column); in getTableName()
[all …]
/AOO41X/main/vcl/unx/gtk/a11y/
H A Datktable.cxx92 gint column) in table_wrapper_ref_at() argument
99 fprintf(stderr, "getAccessibleCellAt( %u, %u ) returns", row, column ); in table_wrapper_ref_at()
101 if( column >= 255 ) in table_wrapper_ref_at()
102 fprintf(stderr, "getAccessibleCellAt( %u, %u ) returns", row, column ); in table_wrapper_ref_at()
107 return atk_object_wrapper_conditional_ref( pTable->getAccessibleCellAt( row, column ) ); in table_wrapper_ref_at()
122 gint column) in table_wrapper_get_index_at() argument
130 row, column, pTable->getAccessibleIndex( row, column ) ); in table_wrapper_get_index_at()
134 return pTable->getAccessibleIndex( row, column ); in table_wrapper_get_index_at()
246 gint column ) in table_wrapper_get_column_extent_at() argument
254 row, column, pTable->getAccessibleColumnExtentAt( row, column ) ); in table_wrapper_get_column_extent_at()
[all …]
/AOO41X/main/offapi/com/sun/star/sdb/
H A DXColumnUpdate.idl58 /** gives a nullable column a null value.
65 /** updates a column with a boolean value.
67 the new column value
74 /** updates a column with a byte value.
76 the new column value
83 /** updates a column with a short value.
85 the new column value
92 /** updates a column with a long value.
94 the new column value
101 /** updates a column with a hyper value.
[all …]
H A DXColumn.idl70 /** reports whether the last column read had a value of SQL NULL.
71 Note that you must first call getXXX on a column to try to read
83 /** gets the value of a column in the current row as a String.
85 the column value
92 /** gets the value of a column in the current row as boolean.
94 the column value
101 /** gets the value of a column in the current row as a byte.
103 the column value
110 /** gets the value of a column in the current row as a short.
112 the column value
[all …]
/AOO41X/main/offapi/com/sun/star/awt/grid/
H A DXGridColumnModel.idl42 retrieve the column structure that is displayed in the actual control.
58 /** allows cloning the complete column model
69 /** creates a new column for use with the column model.
71 …<p>The newly created column is not yet inserted into the column container, you need to call <membe…
72 after you initialized the column object.</p>
77 /** Adds a column to the model.
79 … <p>You should use the <member>createColumn</member> member to create a new column. This gives
80 …mplementations of the <code>XGridColumnModel</code> interface the possibility to provide own column
83 …<p>As soon as the column has been inserted into the model, the model takes ownership of it. This m…
84column is removed, or when the column model is disposed, the grid column is disposed as well.</p>
[all …]
H A DXGridColumn.idl38 /** The <type>XGridColumn</types> defines the properties and behavior of a column in a grid control
47 /** allows cloning the complete grid column
51 /** specifies an identifier of the column
58 /** specifies the current width of the column.
62 /** specifies the minimal width the column can have.
66 /** specifies the maximal width the column can have.
70 /** controls whether or not the column's width is fixed or not.
72 …p>If this is <TRUE/>, the user can interactively change the column's width. Also, the column is su…
77 …/** specifies the flexibility of the column when it is automatically resized due to the grid contr…
80 … <p>Specify <code>0</code> here if you do not want the column to be resized automatically.</p>
[all …]
/AOO41X/main/odk/examples/DevelopersGuide/Database/DriverSkeleton/
H A DSResultSetMetaData.cxx37 sal_Int32 SAL_CALL OResultSetMetaData::getColumnDisplaySize( sal_Int32 column ) throw(SQLException,… in getColumnDisplaySize() argument
43 sal_Int32 SAL_CALL OResultSetMetaData::getColumnType( sal_Int32 column ) throw(SQLException, Runtim… in getColumnType() argument
57 sal_Bool SAL_CALL OResultSetMetaData::isCaseSensitive( sal_Int32 column ) throw(SQLException, Runti… in isCaseSensitive() argument
63 ::rtl::OUString SAL_CALL OResultSetMetaData::getSchemaName( sal_Int32 column ) throw(SQLException, … in getSchemaName() argument
69 ::rtl::OUString SAL_CALL OResultSetMetaData::getColumnName( sal_Int32 column ) throw(SQLException, … in getColumnName() argument
71 return ::rtl::OUString::createFromAscii("Column") + ::rtl::OUString::valueOf(column); in getColumnName()
74 ::rtl::OUString SAL_CALL OResultSetMetaData::getTableName( sal_Int32 column ) throw(SQLException, R… in getTableName() argument
79 ::rtl::OUString SAL_CALL OResultSetMetaData::getCatalogName( sal_Int32 column ) throw(SQLException,… in getCatalogName() argument
84 ::rtl::OUString SAL_CALL OResultSetMetaData::getColumnTypeName( sal_Int32 column ) throw(SQLExcepti… in getColumnTypeName() argument
89 ::rtl::OUString SAL_CALL OResultSetMetaData::getColumnLabel( sal_Int32 column ) throw(SQLException,… in getColumnLabel() argument
[all …]
H A DSResultSetMetaData.hxx55 …virtual sal_Bool SAL_CALL isAutoIncrement( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExc…
56 …virtual sal_Bool SAL_CALL isCaseSensitive( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExc…
57 …virtual sal_Bool SAL_CALL isSearchable( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExcept…
58 …virtual sal_Bool SAL_CALL isCurrency( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExceptio…
59 …virtual sal_Int32 SAL_CALL isNullable( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExcepti…
60 …virtual sal_Bool SAL_CALL isSigned( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException,…
61 …virtual sal_Int32 SAL_CALL getColumnDisplaySize( sal_Int32 column ) throw(::com::sun::star::sdbc::…
62 …virtual ::rtl::OUString SAL_CALL getColumnLabel( sal_Int32 column ) throw(::com::sun::star::sdbc::…
63 …virtual ::rtl::OUString SAL_CALL getColumnName( sal_Int32 column ) throw(::com::sun::star::sdbc::S…
64 …virtual ::rtl::OUString SAL_CALL getSchemaName( sal_Int32 column ) throw(::com::sun::star::sdbc::S…
[all …]
/AOO41X/main/connectivity/source/inc/odbc/
H A DOResultSetMetaData.hxx57 …::rtl::OUString getCharColAttrib(sal_Int32 column,sal_Int32 ident) throw(::com::sun::star::sdbc::S…
58 …sal_Int32 getNumColAttrib(sal_Int32 column,sal_Int32 ident) throw(::com::sun::star::sdbc::SQLExcep…
86 ,sal_Int32 column)
98 …virtual sal_Bool SAL_CALL isAutoIncrement( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExc…
99 …virtual sal_Bool SAL_CALL isCaseSensitive( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExc…
100 …virtual sal_Bool SAL_CALL isSearchable( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExcept…
101 …virtual sal_Bool SAL_CALL isCurrency( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExceptio…
102 …virtual sal_Int32 SAL_CALL isNullable( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExcepti…
103 …virtual sal_Bool SAL_CALL isSigned( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException,…
104 …virtual sal_Int32 SAL_CALL getColumnDisplaySize( sal_Int32 column ) throw(::com::sun::star::sdbc::…
[all …]
/AOO41X/main/connectivity/source/inc/file/
H A DFResultSetMetaData.hxx50 …void checkColumnIndex(sal_Int32 column) throw(::com::sun::star::sdbc::SQLException, ::com::sun::st…
62 …virtual sal_Bool SAL_CALL isAutoIncrement( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExc…
63 …virtual sal_Bool SAL_CALL isCaseSensitive( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExc…
64 …virtual sal_Bool SAL_CALL isSearchable( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExcept…
65 …virtual sal_Bool SAL_CALL isCurrency( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExceptio…
66 …virtual sal_Int32 SAL_CALL isNullable( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExcepti…
67 …virtual sal_Bool SAL_CALL isSigned( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException,…
68 …virtual sal_Int32 SAL_CALL getColumnDisplaySize( sal_Int32 column ) throw(::com::sun::star::sdbc::…
69 …virtual ::rtl::OUString SAL_CALL getColumnLabel( sal_Int32 column ) throw(::com::sun::star::sdbc::…
70 …virtual ::rtl::OUString SAL_CALL getColumnName( sal_Int32 column ) throw(::com::sun::star::sdbc::S…
[all …]
/AOO41X/main/connectivity/source/drivers/kab/
H A DKResultSetMetaData.hxx64 …virtual sal_Bool SAL_CALL isAutoIncrement( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExc…
65 …virtual sal_Bool SAL_CALL isCaseSensitive( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExc…
66 …virtual sal_Bool SAL_CALL isSearchable( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExcept…
67 …virtual sal_Bool SAL_CALL isCurrency( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExceptio…
68 …virtual sal_Int32 SAL_CALL isNullable( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExcepti…
69 …virtual sal_Bool SAL_CALL isSigned( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException,…
70 …virtual sal_Int32 SAL_CALL getColumnDisplaySize( sal_Int32 column ) throw(::com::sun::star::sdbc::…
71 …virtual ::rtl::OUString SAL_CALL getColumnLabel( sal_Int32 column ) throw(::com::sun::star::sdbc::…
72 …virtual ::rtl::OUString SAL_CALL getColumnName( sal_Int32 column ) throw(::com::sun::star::sdbc::S…
73 …virtual ::rtl::OUString SAL_CALL getSchemaName( sal_Int32 column ) throw(::com::sun::star::sdbc::S…
[all …]
/AOO41X/main/connectivity/source/inc/java/sql/
H A DResultSetMetaData.hxx55 …virtual sal_Bool SAL_CALL isAutoIncrement( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExc…
56 …virtual sal_Bool SAL_CALL isCaseSensitive( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExc…
57 …virtual sal_Bool SAL_CALL isSearchable( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExcept…
58 …virtual sal_Bool SAL_CALL isCurrency( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExceptio…
59 …virtual sal_Int32 SAL_CALL isNullable( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExcepti…
60 …virtual sal_Bool SAL_CALL isSigned( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException,…
61 …virtual sal_Int32 SAL_CALL getColumnDisplaySize( sal_Int32 column ) throw(::com::sun::star::sdbc::…
62 …virtual ::rtl::OUString SAL_CALL getColumnLabel( sal_Int32 column ) throw(::com::sun::star::sdbc::…
63 …virtual ::rtl::OUString SAL_CALL getColumnName( sal_Int32 column ) throw(::com::sun::star::sdbc::S…
64 …virtual ::rtl::OUString SAL_CALL getSchemaName( sal_Int32 column ) throw(::com::sun::star::sdbc::S…
[all …]
/AOO41X/main/connectivity/source/inc/ado/
H A DAResultSetMetaData.hxx65 …virtual sal_Bool SAL_CALL isAutoIncrement( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExc…
66 …virtual sal_Bool SAL_CALL isCaseSensitive( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExc…
67 …virtual sal_Bool SAL_CALL isSearchable( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExcept…
68 …virtual sal_Bool SAL_CALL isCurrency( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExceptio…
69 …virtual sal_Int32 SAL_CALL isNullable( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLExcepti…
70 …virtual sal_Bool SAL_CALL isSigned( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException,…
71 …virtual sal_Int32 SAL_CALL getColumnDisplaySize( sal_Int32 column ) throw(::com::sun::star::sdbc::…
72 …virtual ::rtl::OUString SAL_CALL getColumnLabel( sal_Int32 column ) throw(::com::sun::star::sdbc::…
73 …virtual ::rtl::OUString SAL_CALL getColumnName( sal_Int32 column ) throw(::com::sun::star::sdbc::S…
74 …virtual ::rtl::OUString SAL_CALL getSchemaName( sal_Int32 column ) throw(::com::sun::star::sdbc::S…
[all …]

12345678910>>...21