| /trunk/main/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/ |
| H A D | JavaSQLDatabaseMetaData.java | 431 CustomColumn[] columns = new CustomColumn[7]; in getTablesPrivilegesMetadata() local 432 columns[0] = new CustomColumn(); in getTablesPrivilegesMetadata() 433 columns[0].setColumnName("TABLE_CAT"); in getTablesPrivilegesMetadata() 434 columns[0].setNullable(ColumnValue.NULLABLE); in getTablesPrivilegesMetadata() 435 columns[0].setColumnDisplaySize(3); in getTablesPrivilegesMetadata() 436 columns[0].setPrecision(0); in getTablesPrivilegesMetadata() 437 columns[0].setScale(0); in getTablesPrivilegesMetadata() 438 columns[0].setColumnType(DataType.VARCHAR); in getTablesPrivilegesMetadata() 439 columns[1] = new CustomColumn(); in getTablesPrivilegesMetadata() 440 columns[1].setColumnName("TABLE_SCHEM"); in getTablesPrivilegesMetadata() [all …]
|
| /trunk/main/qadevOOo/java/OOoRunner/src/main/java/mod/_forms/ |
| H A D | OGridControlModel.java | 188 XGridColumnFactory columns = (XGridColumnFactory) UnoRuntime.queryInterface( in createTestEnvironment() local 190 aControl = columns.createColumn("TextField"); in createTestEnvironment() 191 aControl2 = columns.createColumn("DateField"); in createTestEnvironment() 192 aControl3 = columns.createColumn("TextField"); in createTestEnvironment() 193 aControl4 = columns.createColumn("TextField"); in createTestEnvironment() 194 aControl5 = columns.createColumn("TextField"); in createTestEnvironment() 332 XGridColumnFactory columns = null; in createTestEnvironment() local 351 columns = (XGridColumnFactory) UnoRuntime.queryInterface( in createTestEnvironment() 353 aControl = columns.createColumn("TextField"); in createTestEnvironment() 354 aControl2 = columns.createColumn("DateField"); in createTestEnvironment() [all …]
|
| /trunk/main/connectivity/qa/connectivity/tools/ |
| H A D | HsqlDatabase.java | 125 final HsqlColumnDescriptor[] columns = _tableDesc.getColumns(); in createTable() local 126 for (int i = 0; i < columns.length; ++i) in createTable() 133 createStatement.append("\"" + columns[i].getName()); in createTable() 134 createStatement.append("\" " + columns[i].getTypeName()); in createTable() 136 if (columns[i].isRequired()) in createTable() 141 if (columns[i].isPrimaryKey()) in createTable() 147 primaryKeyList += "\"" + columns[i].getName() + "\""; in createTable() 150 if (columns[i].isForeignKey()) in createTable() 152 final String foreignTable = columns[i].getForeignTable(); in createTable() 159 foreignKeysForTable += "\"" + columns[i].getName() + "\""; in createTable() [all …]
|
| /trunk/main/offapi/com/sun/star/sheet/ |
| H A D | XPrintAreas.idl | 66 /** returns, whether the title columns are repeated on all subsequent 73 /** specifies whether the title columns are repeated on all subsequent 77 if <TRUE/>, title columns are repeated on each page. 83 /** returns the range that is specified as title columns range. 85 <p>Title columns can be automatically repeated on all subsequent 90 the range of columns that is specified as title columns range. 96 /** specifies a range of columns as title columns range. 100 <p>Title columns can be automatically repeated on all subsequent 105 the title columns range. 143 <p>The columns of the passed range are ignored.</p>
|
| /trunk/test/testuno/source/testlib/uno/ |
| H A D | DBUtil.java | 158 final HsqlColumnDescriptor[] columns = _columns; in createTable() local 159 for (int i = 0; i < columns.length; ++i) { in createTable() 164 createStatement.append("\"" + columns[i].getName()); in createTable() 165 createStatement.append("\" " + columns[i].getTypeName()); in createTable() 167 if (columns[i].isRequired()) { in createTable() 171 if (columns[i].isPrimaryKey()) { in createTable() 175 primaryKeyList += "\"" + columns[i].getName() + "\""; in createTable() 178 if (columns[i].isForeignKey()) { in createTable() 179 final String foreignTable = columns[i].getForeignTable(); in createTable() 187 foreignKeysForTable += "\"" + columns[i].getName() + "\""; in createTable() [all …]
|
| /trunk/main/offapi/com/sun/star/text/ |
| H A D | TextColumns.idl | 45 /** provides access to columns in text (e.g., in TextFrames ). 53 …/** determines whether the columns all have equal width. This flag is set if XTextColumns::setColu… 58 /** contains the distance between the columns. It is valid if the property IsAutomatic is set. 59 <!-- The h -->Half of this distance is set to the left and right margins of all columns, 63 /** determines the width of the separator lines between the columns. 67 /** determines the color of the separator lines between the columns. 71 /** determines the relative height of the separator lines between the columns. 75 /** determines the vertical alignment of the separator lines between the columns.
|
| /trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/ |
| H A D | DbTools.java | 427 XIndexAccess columns = null; in createStandardCreateStatement() local 430 … columns = UnoRuntime.queryInterface(XIndexAccess.class, columnsSupplier.getColumns()); in createStandardCreateStatement() 432 if (columns == null || columns.getCount() <= 0) { in createStandardCreateStatement() 437 int columnCount = columns.getCount(); in createStandardCreateStatement() 442 columnProperties = AnyConverter.toObject(XPropertySet.class, columns.getByIndex(i)); in createStandardCreateStatement() 599 …XIndexAccess columns = UnoRuntime.queryInterface(XIndexAccess.class, columnsSupplier.getColumns()); in createStandardKeyStatement() local 600 if (columns == null || columns.getCount() == 0) { in createStandardKeyStatement() 611 sql.append(generateColumnNames(columns, metadata)); in createStandardKeyStatement() 614 sql.append(generateColumnNames(columns, metadata)); in createStandardKeyStatement() 628 sql.append(generateColumnNames(columns, metadata)); in createStandardKeyStatement() [all …]
|
| H A D | CustomResultSetMetaData.java | 28 private CustomColumn[] columns; field in CustomResultSetMetaData 30 public CustomResultSetMetaData(CustomColumn[] columns) { in CustomResultSetMetaData() argument 31 this.columns = columns; in CustomResultSetMetaData() 35 if (i < 1 || columns.length < i) { in getColumn() 38 return columns[i-1]; in getColumn() 52 return columns.length; in getColumnCount()
|
| /trunk/main/mysqlc/source/ |
| H A D | mysqlc_databasemetadata.cxx | 1575 sal_uInt32 columns = rs_meta->getColumnCount(); in getCatalogs() local 1578 for (sal_uInt32 i = 1; i <= columns; i++) { in getCatalogs() 1610 sal_uInt32 columns = rs_meta->getColumnCount(); in getSchemas() local 1614 for (sal_uInt32 i = 1; i <= columns; i++) { in getSchemas() 1660 sal_uInt32 columns = rs_meta->getColumnCount(); in getColumnPrivileges() local 1663 for (sal_uInt32 i = 1; i <= columns; i++) { in getColumnPrivileges() 1705 sal_uInt32 columns = rs_meta->getColumnCount(); in getColumns() local 1708 for (sal_uInt32 i = 1; i <= columns; i++) { in getColumns() 1764 sal_uInt32 columns = rs_meta->getColumnCount(); in getTables() local 1768 for (sal_uInt32 i = 1; (i <= columns) && !informationSchema; ++i) { in getTables() [all …]
|
| /trunk/main/offapi/com/sun/star/awt/grid/ |
| H A D | XGridColumnModel.idl | 54 /** allows to register listeners to be notified when columns are inserted or removed 62 /** Returns the number of columns. 65 the number of columns. 109 /** Returns all columns of the model. 111 all columns associated with the model in a sequence of <type>XGridColumn</type>. 124 /** Fills the model with the given number of default columns 126 … <p>Existing columns will be removed before adding new columns. Listeners at the column model will 132 the number of default columns that should be set.
|
| /trunk/main/reportbuilder/java/com/sun/star/report/pentaho/ |
| H A D | star-report.css | 29 table|table-columns { 45 table|table-cell[number-columns-spanned], 46 table|table-cell[number-columns-spanned], 47 table|table-columns[number-columns-spanned], 48 table|table-column[number-columns-spanned] { 49 -x-liblayout-colspan: attr("table|number-columns-spanned");
|
| /trunk/main/comphelper/source/misc/ |
| H A D | uieventslogger.cxx | 573 Sequence<OUString> columns = Sequence<OUString>(COLUMNS); in initializeLogger() local 574 columns[0] = OUString::createFromAscii("eventtype"); in initializeLogger() 575 columns[1] = OUString::createFromAscii("originapp"); in initializeLogger() 576 columns[2] = OUString::createFromAscii("originwidget"); in initializeLogger() 577 columns[3] = OUString::createFromAscii("uno url"); in initializeLogger() 578 columns[4] = OUString::createFromAscii("parent id"); in initializeLogger() 579 columns[5] = OUString::createFromAscii("window type"); in initializeLogger() 580 columns[6] = OUString::createFromAscii("id"); in initializeLogger() 581 columns[7] = OUString::createFromAscii("method"); in initializeLogger() 582 columns[8] = OUString::createFromAscii("parameter"); in initializeLogger() [all …]
|
| /trunk/main/offapi/com/sun/star/sdbc/ |
| H A D | XDatabaseMetaData.idl | 400 computed columns or to provide alias names for columns as required. 475 /** Can an "ORDER BY" clause use columns not in the SELECT statement? 493 /** Can a "GROUP BY" clause use columns not in the SELECT? 502 /** Can a "GROUP BY" clause add columns not in the SELECT 503 provided it specifies all the columns in the SELECT? 540 /** Can columns be defined as non-nullable? 946 /** return the maximum number of columns in a "GROUP BY" clause 955 /** return the maximum number of columns allowed in an index 964 /** return the maximum number of columns in an "ORDER BY" clause 973 /** return the maximum number of columns in a "SELECT" list [all …]
|
| /trunk/main/offapi/com/sun/star/table/ |
| H A D | XTableColumns.idl | 37 /** provides methods to access columns via index and to insert and remove 38 columns. 46 /** inserts new columns. 55 is the number of columns to insert. 61 /** deletes columns. 70 is the number of columns to delete.
|
| H A D | TableColumns.idl | 45 /** represents a collection of all columns of a table or spreadsheet. 53 /** provides methods to insert and remove columns. 59 /** creates an enumeration of all contained columns. 67 /** provides methods to access the columns via their names. 69 <p>The names of the columns are always absolute even if the current
|
| /trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/sdbcx/ |
| H A D | OTable.java | 56 protected OContainer columns; field in OTable 108 if (columns != null) { in postDisposing() 109 columns.dispose(); in postDisposing() 143 if (columns == null) { in getColumns() 144 columns = refreshColumns(); in getColumns() 146 return columns; in getColumns()
|
| /trunk/main/offapi/com/sun/star/chart/ |
| H A D | XComplexDescriptionAccess.idl | 69 /** retrieves the description texts for all columns. 73 of all columns. The outer index represents different columns. 80 /** sets the description texts for all columns. 84 all columns. The outer index represents different columns.
|
| /trunk/main/qadevOOo/java/OOoRunner/src/main/java/util/ |
| H A D | TableDsc.java | 36 private int columns = 0; field in TableDsc 47 columns = nColumns; in TableDsc() 54 columns = nColumns; in TableDsc() 85 if ( rows > 0 && columns > 0 ) { in createInstance() 86 TT.initialize( rows, columns ); in createInstance()
|
| /trunk/main/reportbuilder/java/com/sun/star/report/pentaho/parser/table/ |
| H A D | TableColumnsReadHandler.java | 49 private final List columns; field in TableColumnsReadHandler 54 columns = new ArrayList(); in TableColumnsReadHandler() 74 columns.add(readHandler); in getHandlerForChild() 88 for (int i = 0; i < columns.size(); i++) in doneParsing() 90 final TableColumnReadHandler handler = (TableColumnReadHandler) columns.get(i); in doneParsing()
|
| /trunk/main/offapi/com/sun/star/chart2/ |
| H A D | XAnyDescriptionAccess.idl | 72 /** retrieves the descriptions for all columns. 76 of all columns. The outer index represents different columns. 84 /** sets the descriptions for all columns. 88 all columns. The outer index represents different columns.
|
| /trunk/main/offapi/com/sun/star/sdbcx/ |
| H A D | Table.idl | 41 name and one or more columns. 51 All properties and columns of a table could by modified before 53 descriptor. On existing tables, a user might alter columns, add or delete 54 columns, indexes, and keys depending on the capabilities of the database and on 69 /** access to the contained table columns. 89 /** optional, allows the altering of columns.
|
| /trunk/main/dbaccess/qa/complex/dbaccess/ |
| H A D | Query.java | 96 final XIndexAccess columns = UnoRuntime.queryInterface( in testQueryColumns() local 100 …assertTrue( "invalid column count (found " + columns.getCount() + ", expected: " + expectedColumnN… in testQueryColumns() 101 columns.getCount() == expectedColumnNames[i].length ); in testQueryColumns() 102 for ( int col = 0; col < columns.getCount(); ++col ) in testQueryColumns() 105 XNamed.class, columns.getByIndex(col) ); in testQueryColumns()
|
| /trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/sheet/ |
| H A D | _XSubTotalCalculatable.java | 91 SubTotalColumn[] columns = new SubTotalColumn[1]; in _createSubTotalDescriptor() local 92 columns[0] = new SubTotalColumn(); in _createSubTotalDescriptor() 93 columns[0].Column = 0; in _createSubTotalDescriptor() 94 columns[0].Function = com.sun.star.sheet.GeneralFunction.SUM; in _createSubTotalDescriptor() 95 desc.addNew(columns, 0); in _createSubTotalDescriptor()
|
| /trunk/main/offapi/com/sun/star/accessibility/ |
| H A D | XAccessibleTable.idl | 59 the maximal table size--256 columns and 32000 rows--minus one.</p> 67 <p>The implementation, however, may allow the access of columns 76 /** Returns the number of used columns in the table. 78 <p>The implementation, however, may allow the access of columns 82 Returns the number of used columns in the table or 0 for an empty 149 /** Returns the number of columns occupied by the Accessible at the 153 columns.</p> 208 /** Returns a list of the indices of completely selected columns in a 213 selected columns in the table. This sequence is in ascending 370 columns.
|
| H A D | AccessibleTableModelChangeType.idl | 42 changes to the table's geometry. One or more rows and/or columns have 51 /** One or more rows and/or columns have been inserted. 54 structure to determine the indices of the rows and/or columns that 59 /** One or more rows and/or columns have been deleted. 68 <p>The number of rows and columns remains unchanged. Only (some of)
|