Home
last modified time | relevance | path

Searched refs:getInt (Results 1 – 25 of 190) sorted by path

12345678

/trunk/main/basic/source/sbx/
H A Dsbxdec.cxx302 bool SbxDecimal::getInt( int& rVal ) in getInt() function in SbxDecimal
382 bool SbxDecimal::getInt( int& rVal ) { (void)rVal; return false; } in getInt() function in SbxDecimal
H A Dsbxdec.hxx103 bool getInt( int& rVal );
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/sdbcx/
H A DOIndexColumnContainer.java86 int dataType = row.getInt(5); in createObject()
88 int size = row.getInt(7); in createObject()
89 int dec = row.getInt(9); in createObject()
90 int nul = row.getInt(11); in createObject()
H A DOKeyColumnContainer.java81 int dataType = row.getInt(5); in createObject()
83 int size = row.getInt(7); in createObject()
84 int dec = row.getInt(9); in createObject()
85 int nul = row.getInt(11); in createObject()
H A DSqlTableHelper.java97 columnDescription.type = row.getInt(5); in collectColumnDescriptions()
99 columnDescription.columnSize = row.getInt(7); in collectColumnDescriptions()
100 columnDescription.decimalDigits = row.getInt(9); in collectColumnDescriptions()
101 columnDescription.nullable = row.getInt(11); in collectColumnDescriptions()
104 columnDescription.ordinalPosition = row.getInt(17); in collectColumnDescriptions()
200 int updateRule = row.getInt(10); in readForeignKeys()
201 int deleteRule = row.getInt(11); in readForeignKeys()
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/
H A DCustomResultSet.java279 public synchronized int getInt(int columnIndex) throws SQLException { in getInt() method in CustomResultSet
H A DDatabaseMetaDataResultSet.java301 public synchronized int getInt(int columnIndex) throws SQLException { in getInt() method in DatabaseMetaDataResultSet
/trunk/main/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/
H A DJavaSQLCallableStatement.java152 public synchronized int getInt(int columnIndex) throws SQLException { in getInt() method in JavaSQLCallableStatement
155 return ((java.sql.CallableStatement)jdbcStatement).getInt(columnIndex); in getInt()
H A DJavaSQLResultSet.java346 public int getInt(int columnIndex) throws SQLException { in getInt() method in JavaSQLResultSet
348 return jdbcResultSet.getInt(columnIndex); in getInt()
/trunk/main/connectivity/java/sdbc_postgresql/src/com/sun/star/sdbcx/comp/postgresql/
H A DPostgresqlDatabaseMetadata.java103 int columnSize = row.getInt(7); in getColumns()
105 int decimalDigits = row.getInt(9); in getColumns()
106 int numPrecRadix = row.getInt(10); in getColumns()
107 int nullable = row.getInt(11); in getColumns()
110 int sqlDataType = row.getInt(14); in getColumns()
111 int sqlDateTimeSub = row.getInt(15); in getColumns()
112 int charOctetLength = row.getInt(16); in getColumns()
113 int ordinalPosition = row.getInt(17); in getColumns()
349 int precision = row.getInt(3); in getTypeInfo()
362 int sqlDataType = row.getInt(16); in getTypeInfo()
[all …]
H A DPostgresqlResultSet.java221 public int getInt(int arg0) throws SQLException { in getInt() method in PostgresqlResultSet
222 return implRow.getInt(arg0); in getInt()
/trunk/main/connectivity/qa/complex/connectivity/
H A DFlatFileAccess.java213 return i_rowSet.getInt( m_columnIndex ); in getValue()
H A DJdbcLongVarCharTest.java113 …System.out.println("c1 (Int): " + xRow.getInt(1) + " c2 (String): " + xRow.getString(2) + " c3 (Cl… in testLongVarChar()
/trunk/main/connectivity/qa/complex/connectivity/dbase/
H A DDBaseDateFunctions.java208 assure("DAYOFWEEK('1998-02-03') failed!", row.getInt(1) == 3); in dayofweek()
214 assure("DAYOFMONTH('1998-02-03') failed!", row.getInt(1) == 3); in dayofmonth()
226 assure("month('1998-02-03') failed!", row.getInt(1) == 2); in month()
244 assure("QUARTER('98-01-01') failed!", row.getInt(1) == 1); in quarter()
245 assure("QUARTER('98-04-01') failed!", row.getInt(2) == 2); in quarter()
246 assure("QUARTER('98-07-01') failed!", row.getInt(3) == 3); in quarter()
247 assure("QUARTER('98-10-01') failed!", row.getInt(4) == 4); in quarter()
253 assure("WEEK('1998-02-20') failed!", row.getInt(1) == 7); in week()
259 assure("YEAR('98-02-03') failed!", row.getInt(1) == 98); in year()
265 assure("HOUR('10:05:03') failed!", row.getInt(1) == 10); in hour()
[all …]
H A DDBaseNumericFunctions.java262 assure("ABS(2) failed!", row.getInt(1) == 2); in abs()
263 assure("ABS(-32) failed!", row.getInt(2) == 32); in abs()
269 assure("SIGN(-32)failed!", row.getInt(1) == -1); in sign()
270 assure("SIGN(0) failed!", row.getInt(2) == 0); in sign()
271 assure("SIGN(234) failed!", row.getInt(3) == 1); in sign()
277 assure("MOD(234, 10) failed!", row.getInt(1) == 4); in mod()
283 assure("FLOOR(1.23) failed!", row.getInt(1) == 1); in floor()
284 assure("FLOOR(-1.23) failed!", row.getInt(2) == -2); in floor()
290 assure("CEILING(1.23) failed!", row.getInt(1) == 2); in ceiling()
291 assure("CEILING(-1.23) failed!", row.getInt(2) == -1); in ceiling()
[all …]
H A DDBaseStringFunctions.java233 assure("acsii('2') failed!", row.getInt(1) == 50); in acsii()
239 assure("char_length('test') failed!", row.getInt(1) == 4); in char_length()
240 assure("character_length('test') failed!", row.getInt(2) == 4); in char_length()
241 assure("OCTET_LENGTH('test') failed!", row.getInt(3) == 4); in char_length()
253 assure("LOCATE('bar', 'foobarbar') failed!", row.getInt(1) == 4); in locate()
/trunk/main/connectivity/qa/complex/connectivity/hsqldb/
H A DDatabaseMetaData.java102 …System.out.println("Column: " + rsColumns.getString( 4 ) + " Type: " + rsColumns.getInt( 5 ) + " T… in test()
H A DTestCacheSize.java328 int lastId = row.getInt(1); in fillUpBigTable()
427 System.out.println("Row Count: " + row.getInt(1)); in checkResults()
437 System.out.println("Row Count: " + row.getInt(1)); in checkResults()
448 System.out.println("Row Count: " + row.getInt(1)); in checkResults()
/trunk/main/connectivity/qa/connectivity/tools/
H A DRowSet.java213 public int getInt(int i) throws SQLException in getInt() method in RowSet
215 return m_row.getInt(i); in getInt()
/trunk/main/connectivity/source/commontools/
H A DDateConversion.cxx396 return static_cast<double>(static_cast<sal_uInt32>(i_column->getInt())); in getValue()
H A DFDatabaseMetaDataResultSet.cxx237 sal_Int32 SAL_CALL ODatabaseMetaDataResultSet::getInt( sal_Int32 columnIndex ) throw(SQLException, … in getInt() function in ODatabaseMetaDataResultSet
H A DFValue.cxx2016 virtual sal_Int32 getInt() const = 0;
2048 …virtual sal_Int32 getInt() const { return m_xRow->getInt( m_nPos );… in getInt() function in connectivity::detail::RowValue
2081 … virtual sal_Int32 getInt() const { return m_xColumn->getInt(); } in getInt() function in connectivity::detail::ColumnValue
2180 (*this) = _rValueSource.getInt(); in impl_fill()
2184 (*this) = _rValueSource.getInt(); in impl_fill()
H A DTIndexColumns.cxx89 sal_Int32 nDataType = xRow->getInt(5); in createObject()
91 sal_Int32 nSize = xRow->getInt(7); in createObject()
92 sal_Int32 nDec = xRow->getInt(9); in createObject()
93 sal_Int32 nNull = xRow->getInt(11); in createObject()
H A DTKeyColumns.cxx95 sal_Int32 nDataType = xRow->getInt(5); in createObject()
97 sal_Int32 nSize = xRow->getInt(7); in createObject()
98 sal_Int32 nDec = xRow->getInt(9); in createObject()
99 sal_Int32 nNull = xRow->getInt(11); in createObject()
H A DTTableHelper.cxx204 sal_Int32 nField5 = xRow->getInt(5); in lcl_collectColumnDescs_throw()
206 sal_Int32 nField7 = xRow->getInt(7) in lcl_collectColumnDescs_throw()
207 , nField9 = xRow->getInt(9) in lcl_collectColumnDescs_throw()
208 , nField11= xRow->getInt(11); in lcl_collectColumnDescs_throw()
211 nOrdinalPosition = xRow->getInt( 17 ); // ORDINAL_POSITION in lcl_collectColumnDescs_throw()
376 const sal_Int32 nUpdateRule = xRow->getInt(10); in refreshForgeinKeys()
377 const sal_Int32 nDeleteRule = xRow->getInt(11); in refreshForgeinKeys()

Completed in 113 milliseconds

12345678