| /trunk/main/ucbhelper/source/provider/ |
| H A D | resultsetmetadata.cxx | 155 sal_Bool SAL_CALL ResultSetMetaData::isAutoIncrement( sal_Int32 column ) in isAutoIncrement() argument 162 if ( ( column < 1 ) || ( column > m_aProps.getLength() ) ) in isAutoIncrement() 165 return m_pImpl->m_aColumnData[ column - 1 ].isAutoIncrement; in isAutoIncrement() 170 sal_Bool SAL_CALL ResultSetMetaData::isCaseSensitive( sal_Int32 column ) in isCaseSensitive() argument 172 if ( ( column < 1 ) || ( column > m_aProps.getLength() ) ) in isCaseSensitive() 175 return m_pImpl->m_aColumnData[ column - 1 ].isCaseSensitive; in isCaseSensitive() 180 sal_Bool SAL_CALL ResultSetMetaData::isSearchable( sal_Int32 column ) in isSearchable() argument 187 if ( ( column < 1 ) || ( column > m_aProps.getLength() ) ) in isSearchable() 190 return m_pImpl->m_aColumnData[ column - 1 ].isSearchable; in isSearchable() 195 sal_Bool SAL_CALL ResultSetMetaData::isCurrency( sal_Int32 column ) in isCurrency() argument [all …]
|
| /trunk/main/offapi/com/sun/star/sdbc/ |
| H A D | XResultSetMetaData.idl | 45 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 D | XRowUpdate.idl | 58 /** 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 D | XRow.idl | 71 /** 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 …]
|
| /trunk/main/mysqlc/source/ |
| H A D | mysqlc_resultsetmetadata.cxx | 42 sal_Int32 SAL_CALL OResultSetMetaData::getColumnDisplaySize(sal_Int32 column) in getColumnDisplaySize() argument 47 meta->getColumnDisplaySize(column); in getColumnDisplaySize() 59 sal_Int32 SAL_CALL OResultSetMetaData::getColumnType(sal_Int32 column) in getColumnType() argument 62 checkColumnIndex(column); in getColumnType() 65 return mysqlc_sdbc_driver::mysqlToOOOType(meta->getColumnType(column)); in getColumnType() 97 sal_Bool SAL_CALL OResultSetMetaData::isCaseSensitive(sal_Int32 column) in isCaseSensitive() argument 100 checkColumnIndex(column); in isCaseSensitive() 103 return meta->isCaseSensitive(column); in isCaseSensitive() 115 OUString SAL_CALL OResultSetMetaData::getSchemaName(sal_Int32 column) in getSchemaName() argument 118 checkColumnIndex(column); in getSchemaName() [all …]
|
| H A D | mysqlc_resultset.cxx | 185 Reference< XInputStream > SAL_CALL OResultSet::getBinaryStream(sal_Int32 column) in getBinaryStream() argument 190 checkColumnIndex(column); in getBinaryStream() 199 Reference< XInputStream > SAL_CALL OResultSet::getCharacterStream(sal_Int32 column) in getCharacterStream() argument 204 checkColumnIndex(column); in getCharacterStream() 213 sal_Bool SAL_CALL OResultSet::getBoolean(sal_Int32 column) in getBoolean() argument 219 checkColumnIndex(column); in getBoolean() 221 return m_result->getBoolean(column)? sal_True:sal_False; in getBoolean() 227 OUString str = getString(column); in getBoolean() 243 sal_Int8 SAL_CALL OResultSet::getByte(sal_Int32 column) in getByte() argument 249 checkColumnIndex(column); in getByte() [all …]
|
| H A D | mysqlc_resultset.hxx | 161 OUString SAL_CALL getString(sal_Int32 column); 163 sal_Bool SAL_CALL getBoolean(sal_Int32 column); 165 sal_Int8 SAL_CALL getByte(sal_Int32 column); 167 sal_Int16 SAL_CALL getShort(sal_Int32 column); 169 sal_Int32 SAL_CALL getInt(sal_Int32 column); 171 sal_Int64 SAL_CALL getLong(sal_Int32 column); 173 float SAL_CALL getFloat(sal_Int32 column); 175 double SAL_CALL getDouble(sal_Int32 column); 177 ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getBytes(sal_Int32 column); 179 ::com::sun::star::util::Date SAL_CALL getDate(sal_Int32 column); [all …]
|
| /trunk/main/connectivity/source/drivers/odbcbase/ |
| H A D | OResultSetMetaData.cxx | 42 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 ) in getColumnDisplaySize() argument 114 return getNumColAttrib(column,SQL_DESC_DISPLAY_SIZE); in getColumnDisplaySize() 120 ,sal_Int32 column) in getColumnODBCType() argument [all …]
|
| /trunk/main/connectivity/java/dbtools/src/main/java/org/apache/openoffice/comp/sdbc/dbtools/util/ |
| H A D | CustomResultSetMetaData.java | 42 public String getCatalogName(int column) throws SQLException { in getCatalogName() argument 43 CustomColumn customColumn = getColumn(column); in getCatalogName() 56 public int getColumnDisplaySize(int column) throws SQLException { in getColumnDisplaySize() argument 57 CustomColumn customColumn = getColumn(column); in getColumnDisplaySize() 65 public String getColumnLabel(int column) throws SQLException { in getColumnLabel() argument 66 CustomColumn customColumn = getColumn(column); in getColumnLabel() 70 return getColumnName(column); in getColumnLabel() 74 public String getColumnName(int column) throws SQLException { in getColumnName() argument 75 CustomColumn customColumn = getColumn(column); in getColumnName() 83 public String getColumnServiceName(int column) throws SQLException { in getColumnServiceName() argument [all …]
|
| /trunk/main/connectivity/source/drivers/jdbc/ |
| H A D | ResultSetMetaData.cxx | 69 sal_Int32 SAL_CALL java_sql_ResultSetMetaData::getColumnDisplaySize( sal_Int32 column ) in getColumnDisplaySize() argument 73 return callIntMethodWithIntArg("getColumnDisplaySize",mID,column); in getColumnDisplaySize() 77 sal_Int32 SAL_CALL java_sql_ResultSetMetaData::getColumnType( sal_Int32 column ) in getColumnType() argument 81 return callIntMethodWithIntArg("getColumnType",mID,column); in getColumnType() 98 sal_Bool SAL_CALL java_sql_ResultSetMetaData::isCaseSensitive( sal_Int32 column ) in isCaseSensitive() argument 102 return callBooleanMethodWithIntArg( "isCaseSensitive", mID,column ); in isCaseSensitive() 105 ::rtl::OUString SAL_CALL java_sql_ResultSetMetaData::getSchemaName( sal_Int32 column ) in getSchemaName() argument 109 return callStringMethodWithIntArg("getSchemaName",mID,column); in getSchemaName() 113 ::rtl::OUString SAL_CALL java_sql_ResultSetMetaData::getColumnName( sal_Int32 column ) in getColumnName() argument 117 return callStringMethodWithIntArg("getColumnName",mID,column); in getColumnName() [all …]
|
| /trunk/main/connectivity/java/sdbc_jdbc/src/main/java/com/sun/star/comp/sdbc/ |
| H A D | JavaSQLResultSetMetaData.java | 39 public int getColumnDisplaySize(int column) throws SQLException { in getColumnDisplaySize() argument 41 return jdbcResultSetMetaData.getColumnDisplaySize(column); in getColumnDisplaySize() 48 public int getColumnType(int column) throws SQLException { in getColumnType() argument 50 return jdbcResultSetMetaData.getColumnType(column); in getColumnType() 69 public boolean isCaseSensitive(int column) throws SQLException { in isCaseSensitive() argument 71 return jdbcResultSetMetaData.isCaseSensitive(column); in isCaseSensitive() 78 public String getSchemaName(int column) throws SQLException { in getSchemaName() argument 80 String schemaName = jdbcResultSetMetaData.getSchemaName(column); in getSchemaName() 91 public String getColumnName(int column) throws SQLException { in getColumnName() argument 93 String columnName = jdbcResultSetMetaData.getColumnName(column); in getColumnName() [all …]
|
| /trunk/main/connectivity/source/drivers/file/ |
| H A D | FResultSetMetaData.cxx | 59 void OResultSetMetaData::checkColumnIndex(sal_Int32 column) 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 ) in getColumnDisplaySize() argument 69 return getPrecision(column); in getColumnDisplaySize() 73 sal_Int32 SAL_CALL OResultSetMetaData::getColumnType( sal_Int32 column ) 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 ) in getColumnName() argument 105 checkColumnIndex(column); in getColumnName() 107 …Any aName((m_xColumns->get())[column-1]->getPropertyValue(OMetaConnection::getPropMap().getNameByI… in getColumnName() [all …]
|
| /trunk/main/connectivity/source/drivers/ado/ |
| H A D | ADatabaseMetaDataResultSetMetaData.cxx | 45 sal_Int32 SAL_CALL ODatabaseMetaDataResultSetMetaData::getColumnDisplaySize( sal_Int32 column ) 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 ) 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 ) 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 ) in getColumnLabel() argument [all …]
|
| H A D | AResultSetMetaData.cxx | 53 sal_Int32 SAL_CALL OResultSetMetaData::getColumnDisplaySize( sal_Int32 column ) in getColumnDisplaySize() argument 55 WpADOField aField = ADOS::getField(m_pRecordSet,column); in getColumnDisplaySize() 62 sal_Int32 SAL_CALL OResultSetMetaData::getColumnType( sal_Int32 column ) in getColumnType() argument 64 WpADOField aField = ADOS::getField(m_pRecordSet,column); in getColumnType() 85 sal_Bool SAL_CALL OResultSetMetaData::isCaseSensitive( sal_Int32 column ) in isCaseSensitive() argument 88 WpADOField aField = ADOS::getField(m_pRecordSet,column); in isCaseSensitive() 105 ::rtl::OUString SAL_CALL OResultSetMetaData::getColumnName( sal_Int32 column ) in getColumnName() argument 107 WpADOField aField = ADOS::getField(m_pRecordSet,column); in getColumnName() 114 ::rtl::OUString SAL_CALL OResultSetMetaData::getTableName( sal_Int32 column ) in getTableName() argument 118 WpADOField aField = ADOS::getField(m_pRecordSet,column); in getTableName() [all …]
|
| /trunk/main/vcl/unx/gtk/a11y/ |
| H A D | atktable.cxx | 92 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 …]
|
| /trunk/main/offapi/com/sun/star/sdb/ |
| H A D | XColumnUpdate.idl | 58 /** 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 D | XColumn.idl | 70 /** 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 …]
|
| /trunk/main/connectivity/source/inc/odbc/ |
| H A D | OResultSetMetaData.hxx | 57 ::rtl::OUString getCharColAttrib(sal_Int32 column,sal_Int32 ident); 58 sal_Int32 getNumColAttrib(sal_Int32 column,sal_Int32 ident); 86 ,sal_Int32 column); 97 virtual sal_Bool SAL_CALL isAutoIncrement( sal_Int32 column ); 98 virtual sal_Bool SAL_CALL isCaseSensitive( sal_Int32 column ); 99 virtual sal_Bool SAL_CALL isSearchable( sal_Int32 column ); 100 virtual sal_Bool SAL_CALL isCurrency( sal_Int32 column ); 101 virtual sal_Int32 SAL_CALL isNullable( sal_Int32 column ); 102 virtual sal_Bool SAL_CALL isSigned( sal_Int32 column ); 103 virtual sal_Int32 SAL_CALL getColumnDisplaySize( sal_Int32 column ); [all …]
|
| /trunk/main/offapi/com/sun/star/awt/grid/ |
| H A D | XGridColumnModel.idl | 42 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… 84 … column is removed, or when the column model is disposed, the grid column is disposed as well.</p> [all …]
|
| /trunk/main/connectivity/source/inc/file/ |
| H A D | FResultSetMetaData.hxx | 50 void checkColumnIndex(sal_Int32 column); 62 virtual sal_Bool SAL_CALL isAutoIncrement( sal_Int32 column ); 63 virtual sal_Bool SAL_CALL isCaseSensitive( sal_Int32 column ); 64 virtual sal_Bool SAL_CALL isSearchable( sal_Int32 column ); 65 virtual sal_Bool SAL_CALL isCurrency( sal_Int32 column ); 66 virtual sal_Int32 SAL_CALL isNullable( sal_Int32 column ); 67 virtual sal_Bool SAL_CALL isSigned( sal_Int32 column ); 68 virtual sal_Int32 SAL_CALL getColumnDisplaySize( sal_Int32 column ); 69 virtual ::rtl::OUString SAL_CALL getColumnLabel( sal_Int32 column ); 70 virtual ::rtl::OUString SAL_CALL getColumnName( sal_Int32 column ); [all …]
|
| /trunk/main/odk/examples/DevelopersGuide/Database/DriverSkeleton/ |
| H A D | SResultSetMetaData.cxx | 37 sal_Int32 SAL_CALL OResultSetMetaData::getColumnDisplaySize( sal_Int32 column ) in getColumnDisplaySize() argument 43 sal_Int32 SAL_CALL OResultSetMetaData::getColumnType( sal_Int32 column ) in getColumnType() argument 57 sal_Bool SAL_CALL OResultSetMetaData::isCaseSensitive( sal_Int32 column ) in isCaseSensitive() argument 63 ::rtl::OUString SAL_CALL OResultSetMetaData::getSchemaName( sal_Int32 column ) in getSchemaName() argument 69 ::rtl::OUString SAL_CALL OResultSetMetaData::getColumnName( sal_Int32 column ) 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 ) in getTableName() argument 79 ::rtl::OUString SAL_CALL OResultSetMetaData::getCatalogName( sal_Int32 column ) in getCatalogName() argument 84 ::rtl::OUString SAL_CALL OResultSetMetaData::getColumnTypeName( sal_Int32 column ) in getColumnTypeName() argument 89 ::rtl::OUString SAL_CALL OResultSetMetaData::getColumnLabel( sal_Int32 column ) in getColumnLabel() argument [all …]
|
| H A D | SResultSetMetaData.hxx | 55 virtual sal_Bool SAL_CALL isAutoIncrement( sal_Int32 column ); 56 virtual sal_Bool SAL_CALL isCaseSensitive( sal_Int32 column ); 57 virtual sal_Bool SAL_CALL isSearchable( sal_Int32 column ); 58 virtual sal_Bool SAL_CALL isCurrency( sal_Int32 column ); 59 virtual sal_Int32 SAL_CALL isNullable( sal_Int32 column ); 60 virtual sal_Bool SAL_CALL isSigned( sal_Int32 column ); 61 virtual sal_Int32 SAL_CALL getColumnDisplaySize( sal_Int32 column ); 62 virtual ::rtl::OUString SAL_CALL getColumnLabel( sal_Int32 column ); 63 virtual ::rtl::OUString SAL_CALL getColumnName( sal_Int32 column ); 64 virtual ::rtl::OUString SAL_CALL getSchemaName( sal_Int32 column ); [all …]
|
| /trunk/main/connectivity/source/inc/ado/ |
| H A D | AResultSetMetaData.hxx | 65 virtual sal_Bool SAL_CALL isAutoIncrement( sal_Int32 column ); 66 virtual sal_Bool SAL_CALL isCaseSensitive( sal_Int32 column ); 67 virtual sal_Bool SAL_CALL isSearchable( sal_Int32 column ); 68 virtual sal_Bool SAL_CALL isCurrency( sal_Int32 column ); 69 virtual sal_Int32 SAL_CALL isNullable( sal_Int32 column ); 70 virtual sal_Bool SAL_CALL isSigned( sal_Int32 column ); 71 virtual sal_Int32 SAL_CALL getColumnDisplaySize( sal_Int32 column ); 72 virtual ::rtl::OUString SAL_CALL getColumnLabel( sal_Int32 column ); 73 virtual ::rtl::OUString SAL_CALL getColumnName( sal_Int32 column ); 74 virtual ::rtl::OUString SAL_CALL getSchemaName( sal_Int32 column ); [all …]
|
| /trunk/main/connectivity/source/inc/java/sql/ |
| H A D | ResultSetMetaData.hxx | 55 virtual sal_Bool SAL_CALL isAutoIncrement( sal_Int32 column ); 56 virtual sal_Bool SAL_CALL isCaseSensitive( sal_Int32 column ); 57 virtual sal_Bool SAL_CALL isSearchable( sal_Int32 column ); 58 virtual sal_Bool SAL_CALL isCurrency( sal_Int32 column ); 59 virtual sal_Int32 SAL_CALL isNullable( sal_Int32 column ); 60 virtual sal_Bool SAL_CALL isSigned( sal_Int32 column ); 61 virtual sal_Int32 SAL_CALL getColumnDisplaySize( sal_Int32 column ); 62 virtual ::rtl::OUString SAL_CALL getColumnLabel( sal_Int32 column ); 63 virtual ::rtl::OUString SAL_CALL getColumnName( sal_Int32 column ); 64 virtual ::rtl::OUString SAL_CALL getSchemaName( sal_Int32 column ); [all …]
|
| /trunk/main/connectivity/source/drivers/evoab2/ |
| H A D | NResultSetMetaData.hxx | 60 virtual sal_Bool SAL_CALL isAutoIncrement( sal_Int32 column ); 61 virtual sal_Bool SAL_CALL isCaseSensitive( sal_Int32 column ); 62 virtual sal_Bool SAL_CALL isSearchable( sal_Int32 column ); 63 virtual sal_Bool SAL_CALL isCurrency( sal_Int32 column ); 64 virtual sal_Int32 SAL_CALL isNullable( sal_Int32 column ); 65 virtual sal_Bool SAL_CALL isSigned( sal_Int32 column ); 66 virtual sal_Int32 SAL_CALL getColumnDisplaySize( sal_Int32 column ); 67 virtual ::rtl::OUString SAL_CALL getColumnLabel( sal_Int32 column ); 68 virtual ::rtl::OUString SAL_CALL getColumnName( sal_Int32 column ); 69 virtual ::rtl::OUString SAL_CALL getSchemaName( sal_Int32 column ); [all …]
|