Home
last modified time | relevance | path

Searched refs:catalog (Results 1 – 25 of 149) sorted by relevance

123456

/aoo42x/main/connectivity/source/drivers/odbcbase/
H A DODatabaseMetaDataResultSet.cxx876 if ( catalog.hasValue() ) in openTables()
978 if ( catalog.hasValue() ) in openColumnPrivileges()
1011 if ( catalog.hasValue() ) in openColumns()
1078 if ( catalog.hasValue() ) in openProcedureColumns()
1112 if ( catalog.hasValue() ) in openProcedures()
1142 if ( catalog.hasValue() ) in openSpecialColumns()
1170 openSpecialColumns(sal_False,catalog,schema,table,scope,nullable); in openBestRowIdentifier()
1181 if ( catalog.hasValue() ) in openForeignKeys()
1232 if ( catalog.hasValue() ) in openPrimaryKeys()
1262 if ( catalog.hasValue() ) in openTablePrivileges()
[all …]
H A DODatabaseMetaData.cxx142 const Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table, in getColumnPrivileges() argument
178 const Any& catalog, const ::rtl::OUString& schemaPattern, in getTables() argument
196 const Any& catalog, const ::rtl::OUString& schemaPattern, in getProcedureColumns() argument
214 const Any& catalog, const ::rtl::OUString& schemaPattern, in getProcedures() argument
242 pResult->openVersionColumns(m_bUseCatalog ? catalog : Any(),schema,table); in getVersionColumns()
350 pResult->openExportedKeys(m_bUseCatalog ? catalog : Any(),schema,table); in getExportedKeys()
367 pResult->openImportedKeys(m_bUseCatalog ? catalog : Any(),schema,table); in getImportedKeys()
384 pResult->openPrimaryKeys(m_bUseCatalog ? catalog : Any(),schema,table); in getPrimaryKeys()
394 const Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table, in getIndexInfo() argument
402 pResult->openIndexInfo(m_bUseCatalog ? catalog : Any(),schema,table,unique,approximate); in getIndexInfo()
[all …]
/aoo42x/main/offapi/com/sun/star/sdbc/
H A DXDatabaseMetaData.idl1196 catalog.
1238 @param catalog
1336 @param catalog
1387 @param catalog
1545 @param catalog
1600 @param catalog
1655 @param catalog
1720 @param catalog
1782 @param catalog
1823 @param catalog
[all …]
/aoo42x/main/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/
H A DJavaSQLDatabaseMetaData.java121 if (AnyConverter.isString(catalog)) { in getColumnPrivileges()
138 if (AnyConverter.isString(catalog)) { in getColumns()
164 if (AnyConverter.isString(catalog)) { in getTables()
192 if (AnyConverter.isString(catalog)) { in getProcedureColumns()
209 if (AnyConverter.isString(catalog)) { in getProcedures()
226 if (AnyConverter.isString(catalog)) { in getVersionColumns()
350 if (AnyConverter.isString(catalog)) { in getExportedKeys()
366 if (AnyConverter.isString(catalog)) { in getImportedKeys()
382 if (AnyConverter.isString(catalog)) { in getPrimaryKeys()
399 if (AnyConverter.isString(catalog)) { in getIndexInfo()
[all …]
/aoo42x/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/
H A DDbTools.java84 private String catalog = ""; field in DbTools.NameComponents
89 this.catalog = catalog; in NameComponents()
98 return catalog; in getCatalog()
101 public void setCatalog(String catalog) { in setCatalog() argument
102 this.catalog = catalog; in setCatalog()
161 if (!catalog.isEmpty() && nameComponentSupport.useCatalogs) { in composeTableName()
165 composedName.append(quote ? quoteName(quoteString, catalog) : catalog); in composeTableName()
176 composedName.append(quote ? quoteName(quoteString, catalog) : catalog); in composeTableName()
245 if (!catalog.isEmpty() && nameComponentSupport.useCatalogs) { in doComposeTableName()
250 composedName.append(shouldQuote ? quoteName(quoteString, catalog) : catalog); in doComposeTableName()
[all …]
/aoo42x/main/connectivity/source/drivers/jdbc/
H A DDatabaseMetaData.cxx166 Any aCatalogFilter( catalog ); in getTables()
326 return impl_callResultSetMethodWithStrings( "getExportedKeys", mID, catalog, schema, table ); in getExportedKeys()
340 return impl_callResultSetMethodWithStrings( "getPrimaryKeys", mID, catalog, schema, table ); in getPrimaryKeys()
344 const Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table, in getIndexInfo() argument
361 …args[0].l = catalog.hasValue() ? convertwchar_tToJavaString(t.pEnv,comphelper::getString(catalog))… in getIndexInfo()
369 if(catalog.hasValue()) in getIndexInfo()
402 …args[0].l = catalog.hasValue() ? convertwchar_tToJavaString(t.pEnv,comphelper::getString(catalog))… in getBestRowIdentifier()
408 if(catalog.hasValue()) in getBestRowIdentifier()
428 return new OResultSetPrivileges(this,catalog,schemaPattern,tableNamePattern); in getTablePrivileges()
1435 …args[0].l = catalog.hasValue() ? convertwchar_tToJavaString(t.pEnv,comphelper::getString(catalog))… in getUDTs()
[all …]
/aoo42x/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/sdbcx/
H A DSqlTableHelper.java75 Object catalog = Any.VOID; in readColumns() local
77 catalog = catalogName; in readColumns()
80 XResultSet results = metadata.getColumns(catalog, schema, table, "%"); in readColumns()
147 Object catalog = Any.VOID; in readPrimaryKey() local
149 catalog = catalogName; in readPrimaryKey()
157 results = metadata.getPrimaryKeys(catalog, schemaName, tableName); in readPrimaryKey()
180 Object catalog = Any.VOID; in readForeignKeys() local
182 catalog = catalogName; in readForeignKeys()
186 results = metadata.getImportedKeys(catalog, schemaName, tableName); in readForeignKeys()
237 Object catalog = Any.VOID; in readIndexes() local
[all …]
H A DOIndexContainer.java84 Object catalog = table.getPropertyValue(PropertyIds.CATALOGNAME.name); in createObject() local
89 … results = connection.getMetaData().getIndexInfo(catalog, schemaName, tableName, false, false); in createObject()
102 …isPrimaryKeyIndex = isPrimaryKeyIndex(connection.getMetaData(), catalog, schemaName, tableName, su… in createObject()
123 …private static boolean isPrimaryKeyIndex(XDatabaseMetaData metadata, Object catalog, String schema… in isPrimaryKeyIndex() argument
126 results = metadata.getPrimaryKeys(catalog, schema, table); in isPrimaryKeyIndex()
/aoo42x/main/mysqlc/source/
H A Dmysqlc_databasemetadata.cxx1641 const Any& catalog, in getColumnPrivileges() argument
1684 const Any& catalog, in getColumns() argument
1693 …ext_std::string cat(catalog.hasValue()? OUStringToOString(getStringFromAny(catalog), m_rConnection… in getColumns()
1733 const Any& catalog, in getTables() argument
1810 const Any& catalog, in getProcedures() argument
1871 const Any& catalog , in getExportedKeys() argument
1911 const Any& catalog, in getImportedKeys() argument
1953 const Any& catalog, in getPrimaryKeys() argument
1994 const Any& catalog, in getIndexInfo() argument
2037 const Any& catalog, in getBestRowIdentifier() argument
[all …]
H A Dmysqlc_databasemetadata.hxx202 …my_XResultSetRef SAL_CALL getProcedures(const Any& catalog, const OUString& schemaPattern, const O…
203 …my_XResultSetRef SAL_CALL getProcedureColumns(const Any& catalog, const OUString& schemaPattern, c…
208 …my_XResultSetRef SAL_CALL getColumns(const Any& catalog, const OUString& schemaPattern, const OUSt…
209 …my_XResultSetRef SAL_CALL getColumnPrivileges(const Any& catalog, const OUString& schema, const OU…
210 …my_XResultSetRef SAL_CALL getTablePrivileges(const Any& catalog, const OUString& schemaPattern, co…
211 …my_XResultSetRef SAL_CALL getBestRowIdentifier(const Any& catalog, const OUString& schema, const O…
212 …my_XResultSetRef SAL_CALL getVersionColumns(const Any& catalog, const OUString& schema, const OUSt…
213 …my_XResultSetRef SAL_CALL getPrimaryKeys(const Any& catalog, const OUString& schema, const OUStrin…
214 …my_XResultSetRef SAL_CALL getImportedKeys(const Any& catalog, const OUString& schema, const OUStri…
215 …my_XResultSetRef SAL_CALL getExportedKeys(const Any& catalog, const OUString& schema, const OUStri…
[all …]
/aoo42x/main/connectivity/source/drivers/ado/
H A DADatabaseMetaData.cxx145 const Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table, in getColumnPrivileges() argument
160 const Any& catalog, const ::rtl::OUString& schemaPattern, const ::rtl::OUString& tableNamePattern, in getColumns() argument
176 const Any& catalog, const ::rtl::OUString& schemaPattern, in getTables() argument
179 …ADORecordset *pRecordset = m_pADOConnection->getTables(catalog,schemaPattern,tableNamePattern,type… in getTables()
192 const Any& catalog, const ::rtl::OUString& schemaPattern, in getProcedureColumns() argument
208 const Any& catalog, const ::rtl::OUString& schemaPattern, in getProcedures() argument
288 ADORecordset *pRecordset = m_pADOConnection->getExportedKeys(catalog,schema,table); in getExportedKeys()
302 ADORecordset *pRecordset = m_pADOConnection->getImportedKeys(catalog,schema,table); in getImportedKeys()
317 ADORecordset *pRecordset = m_pADOConnection->getPrimaryKeys(catalog,schema,table); in getPrimaryKeys()
330 const Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table, in getIndexInfo() argument
[all …]
H A DAwrapado.cxx1643 if(catalog.hasValue()) in getExportedKeys()
1644 varCriteria[nPos].setString(::comphelper::getString(catalog)); in getExportedKeys()
1688 if(catalog.hasValue()) in getImportedKeys()
1727 if(catalog.hasValue()) in getPrimaryKeys()
1768 if(catalog.hasValue()) in getIndexInfo()
1811 if(catalog.hasValue()) in getTablePrivileges()
1908 if(catalog.hasValue()) in getProcedures()
1950 if(catalog.hasValue()) in getProcedureColumns()
1990 if ( catalog.hasValue() && (catalog >>= sCatalog) ) in getTables()
2060 if(catalog.hasValue()) in getColumns()
[all …]
/aoo42x/main/connectivity/source/inc/odbc/
H A DODatabaseMetaDataResultSet.hxx204 … void openTables(const ::com::sun::star::uno::Any& catalog, const ::rtl::OUString& schemaPattern,
207 …void openColumnPrivileges( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUStrin…
209 …void openColumns( const ::com::sun::star::uno::Any& catalog, cons…
211 …void openProcedureColumns( const ::com::sun::star::uno::Any& catalog, const ::rtl:…
213 …void openProcedures( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUStrin…
215 … void openVersionColumns(const ::com::sun::star::uno::Any& catalog, const ::rtl::OUString& schema,
217 …void openBestRowIdentifier( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUString& sche…
219 …void openForeignKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUString* schema,con…
224 …void openTablePrivileges(const ::com::sun::star::uno::Any& catalog, const ::rtl::OUString& schemaP…
226 …void openSpecialColumns(sal_Bool _bRowVer,const ::com::sun::star::uno::Any& catalog, const ::rtl::…
[all …]
H A DODatabaseMetaData.hxx187 …::XResultSet > SAL_CALL getProcedures( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
188 …ultSet > SAL_CALL getProcedureColumns( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
193 …dbc::XResultSet > SAL_CALL getColumns( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
194 …ultSet > SAL_CALL getColumnPrivileges( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
195 …sultSet > SAL_CALL getTablePrivileges( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
196 …ltSet > SAL_CALL getBestRowIdentifier( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
197 …esultSet > SAL_CALL getVersionColumns( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
198 …:XResultSet > SAL_CALL getPrimaryKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
199 …XResultSet > SAL_CALL getImportedKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
200 …XResultSet > SAL_CALL getExportedKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
[all …]
/aoo42x/main/odk/examples/DevelopersGuide/Database/DriverSkeleton/
H A DSDatabaseMetaData.cxx781 const Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table, in getColumnPrivileges() argument
788 const Any& catalog, const ::rtl::OUString& schemaPattern, const ::rtl::OUString& tableNamePattern, in getColumns() argument
795 const Any& catalog, const ::rtl::OUString& schemaPattern, in getTables() argument
802 const Any& catalog, const ::rtl::OUString& schemaPattern, in getProcedureColumns() argument
809 const Any& catalog, const ::rtl::OUString& schemaPattern, in getProcedures() argument
816 …const Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table ) throw(SQLExcepti… in getVersionColumns() argument
822 …const Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table ) throw(SQLExcepti… in getExportedKeys() argument
828 …const Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table ) throw(SQLExcepti… in getImportedKeys() argument
834 …const Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table ) throw(SQLExcepti… in getPrimaryKeys() argument
840 const Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table, in getIndexInfo() argument
[all …]
H A DSDatabaseMetaData.hxx172 …::XResultSet > SAL_CALL getProcedures( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
173 …ultSet > SAL_CALL getProcedureColumns( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
178 …dbc::XResultSet > SAL_CALL getColumns( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
179 …ultSet > SAL_CALL getColumnPrivileges( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
180 …sultSet > SAL_CALL getTablePrivileges( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
181 …ltSet > SAL_CALL getBestRowIdentifier( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
182 …esultSet > SAL_CALL getVersionColumns( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
183 …:XResultSet > SAL_CALL getPrimaryKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
184 …XResultSet > SAL_CALL getImportedKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
185 …XResultSet > SAL_CALL getExportedKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
[all …]
/aoo42x/main/connectivity/source/inc/ado/
H A DAwrapado.hxx129 …ADORecordset* getExportedKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUString& s…
130 …ADORecordset* getImportedKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUString& s…
131 …ADORecordset* getPrimaryKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUString& sc…
132 …ADORecordset* getIndexInfo( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUString& sche…
133 ADORecordset* getTablePrivileges( const ::com::sun::star::uno::Any& catalog,
142 ADORecordset* getProcedures( const ::com::sun::star::uno::Any& catalog,
145 ADORecordset* getProcedureColumns( const ::com::sun::star::uno::Any& catalog,
149 ADORecordset* getTables( const ::com::sun::star::uno::Any& catalog,
153 ADORecordset* getColumns( const ::com::sun::star::uno::Any& catalog,
157 ADORecordset* getColumnPrivileges( const ::com::sun::star::uno::Any& catalog,
H A DADatabaseMetaData.hxx194 …::XResultSet > SAL_CALL getProcedures( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
195 …ultSet > SAL_CALL getProcedureColumns( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
196 …sdbc::XResultSet > SAL_CALL getTables( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
200 …dbc::XResultSet > SAL_CALL getColumns( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
201 …ultSet > SAL_CALL getColumnPrivileges( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
202 …sultSet > SAL_CALL getTablePrivileges( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
203 …:XResultSet > SAL_CALL getPrimaryKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
204 …XResultSet > SAL_CALL getImportedKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
205 …XResultSet > SAL_CALL getExportedKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
207 …c::XResultSet > SAL_CALL getIndexInfo( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
[all …]
/aoo42x/main/connectivity/source/inc/
H A DTDatabaseMetaDataBase.hxx107 …::XResultSet > SAL_CALL getProcedures( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
108 …ultSet > SAL_CALL getProcedureColumns( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
111 …ultSet > SAL_CALL getColumnPrivileges( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
112 …sultSet > SAL_CALL getTablePrivileges( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
113 …ltSet > SAL_CALL getBestRowIdentifier( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
114 …esultSet > SAL_CALL getVersionColumns( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
115 …:XResultSet > SAL_CALL getPrimaryKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
116 …XResultSet > SAL_CALL getImportedKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
117 …XResultSet > SAL_CALL getExportedKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
119 …c::XResultSet > SAL_CALL getIndexInfo( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
/aoo42x/main/connectivity/source/inc/java/sql/
H A DDatabaseMetaData.hxx176 …::XResultSet > SAL_CALL getProcedures( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
177 …ultSet > SAL_CALL getProcedureColumns( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
182 …dbc::XResultSet > SAL_CALL getColumns( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
183 …ultSet > SAL_CALL getColumnPrivileges( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
184 …sultSet > SAL_CALL getTablePrivileges( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
185 …ltSet > SAL_CALL getBestRowIdentifier( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
186 …esultSet > SAL_CALL getVersionColumns( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
187 …:XResultSet > SAL_CALL getPrimaryKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
188 …XResultSet > SAL_CALL getImportedKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
189 …XResultSet > SAL_CALL getExportedKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
[all …]
/aoo42x/main/connectivity/java/sdbc_postgresql/src/com/sun/star/sdbcx/comp/postgresql/
H A DPostgresqlTables.java53 private PostgresqlCatalog catalog; field in PostgresqlTables
55 …public PostgresqlTables(Object lock, XDatabaseMetaData metadata, PostgresqlCatalog catalog, List<S… in PostgresqlTables() argument
58 this.catalog = catalog; in PostgresqlTables()
102 XDrop dropView = UnoRuntime.queryInterface(XDrop.class, catalog.getViews()); in dropObject()
125 catalog.refreshObjects(); in impl_refresh()
H A DPostgresqlViews.java51 private PostgresqlCatalog catalog; field in PostgresqlViews
54 …public PostgresqlViews(Object lock, XDatabaseMetaData metadata, PostgresqlCatalog catalog, List<St… in PostgresqlViews() argument
57 this.catalog = catalog; in PostgresqlViews()
156 catalog.getTablesInternal().insertElement(_rForName, null); in appendObject()
162 catalog.refreshObjects(); in impl_refresh()
/aoo42x/main/connectivity/source/drivers/macab/
H A DMacabDatabaseMetaData.hxx173 …::XResultSet > SAL_CALL getProcedures( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
174 …ultSet > SAL_CALL getProcedureColumns( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
179 …dbc::XResultSet > SAL_CALL getColumns( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
180 …ultSet > SAL_CALL getColumnPrivileges( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
181 …sultSet > SAL_CALL getTablePrivileges( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
182 …ltSet > SAL_CALL getBestRowIdentifier( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
183 …esultSet > SAL_CALL getVersionColumns( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
184 …:XResultSet > SAL_CALL getPrimaryKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
185 …XResultSet > SAL_CALL getImportedKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
186 …XResultSet > SAL_CALL getExportedKeys( const ::com::sun::star::uno::Any& catalog, const ::rtl::OUS…
[all …]
/aoo42x/main/offapi/com/sun/star/sdb/tools/
H A DXTableName.idl49 part. This requires you to evaluate whether or not the table has a catalog and/or schema
50 name, to combine the catalog, the schema, and the basic table name into one name, respecting
73 /** denotes the name of the catalog which the table is a part of
81 /** denotes the mere, unqualified table name, excluding any catalog and
86 /** returns the composed table name, including the catalog and schema name,
115 data information in that you can specify to not use catalog and or schema names
/aoo42x/main/connectivity/qa/complex/connectivity/hsqldb/
H A DDatabaseMetaData.java87 String catalog = rs.getString( 1 ); in test() local
89 catalog = null; in test()
97 …System.out.println("Catalog: " + catalog + " Schema: " + schema + " Table: " + table + " Type: " +… in test()
99 ResultSet rsColumns = m_xMD.getColumns(catalog,schema,table,"%"); in test()

Completed in 1698 milliseconds

123456