Home
last modified time | relevance | path

Searched refs:SQLRETURN (Results 1 – 22 of 22) sorted by relevance

/trunk/main/unixODBC/inc/
H A Dsqlucode.h121 SQLRETURN SQL_API SQLColAttributeW (
130 SQLRETURN SQL_API SQLColAttributesW (
139 SQLRETURN SQL_API SQLConnectW (
148 SQLRETURN SQL_API SQLDescribeColW (
159 SQLRETURN SQL_API SQLErrorW (
169 SQLRETURN SQL_API SQLExecDirectW (
174 SQLRETURN SQL_API SQLGetConnectAttrW (
181 SQLRETURN SQL_API SQLGetCursorNameW (
188 SQLRETURN SQL_API SQLSetDescFieldW (
195 SQLRETURN SQL_API SQLGetDescFieldW (
[all …]
H A Dsql.h781 SQLRETURN SQL_API SQLAllocConnect (
785 SQLRETURN SQL_API SQLAllocEnv (
789 SQLRETURN SQL_API SQLAllocHandle (
795 SQLRETURN SQL_API SQLAllocStmt (
799 SQLRETURN SQL_API SQLBindCol (
808 SQLRETURN SQL_API SQLBindParam (
819 SQLRETURN SQL_API SQLCancel (
823 SQLRETURN SQL_API SQLCloseCursor (
831 SQLRETURN SQL_API SQLColAttribute (
841 SQLRETURN SQL_API SQLColumns (
[all …]
H A Dsqlext.h2357 SQLRETURN SQL_API SQLDriverConnect (
2371 SQLRETURN SQL_API SQLBrowseConnect (
2380 SQLRETURN SQL_API SQLBulkOperations (
2385 SQLRETURN SQL_API SQLColAttributes (
2394 SQLRETURN SQL_API SQLColumnPrivileges (
2405 SQLRETURN SQL_API SQLDescribeParam (
2413 SQLRETURN SQL_API SQLExtendedFetch (
2420 SQLRETURN SQL_API SQLForeignKeys (
2435 SQLRETURN SQL_API SQLMoreResults (
2438 SQLRETURN SQL_API SQLNativeSql (
[all …]
H A Dsqltypes.h238 typedef SQLSMALLINT SQLRETURN; typedef
/trunk/main/connectivity/source/inc/odbc/
H A DOFunctions.hxx39 …typedef SQLRETURN (SQL_API *T3SQLAllocHandle) (SQLSMALLINT HandleType,SQLHANDLE InputHandle,SQLH…
43 …typedef SQLRETURN (SQL_API *T3SQLConnect) (SQLHDBC ConnectionHandle,SQLCHAR *ServerName,SQLSMALL…
47 typedef SQLRETURN (SQL_API *T3SQLDriverConnect) ( SQLHDBC ConnectionHandle,
58 typedef SQLRETURN (SQL_API *T3SQLBrowseConnect) ( SQLHDBC ConnectionHandle,
68 typedef SQLRETURN (SQL_API *T3SQLDataSources) ( SQLHENV EnvironmentHandle,
79 typedef SQLRETURN (SQL_API *T3SQLDrivers) ( SQLHENV EnvironmentHandle,
90 typedef SQLRETURN (SQL_API *T3SQLGetInfo) ( SQLHDBC ConnectionHandle,
98 typedef SQLRETURN (SQL_API *T3SQLGetFunctions) (SQLHDBC ConnectionHandle,
104 typedef SQLRETURN (SQL_API *T3SQLGetTypeInfo) ( SQLHSTMT StatementHandle,
110 typedef SQLRETURN (SQL_API *T3SQLSetConnectAttr)(SQLHDBC ConnectionHandle,
[all …]
H A DOConnection.hxx88SQLRETURN OpenConnection(const ::rtl::OUString& aConnectStr,sal_Int32 nTimeOut, sal_Bool bSi…
94 …virtual SQLRETURN Construct( const ::rtl::OUString& url,const ::com::sun::star::uno::Sequenc…
H A DOResultSet.hxx141 SQLRETURN m_nCurrentFetchState;
167 void fillNeededData(SQLRETURN _nRet);
171 SQLRETURN unbind(sal_Bool _bUnbindHandle = sal_True);
H A DOTools.hxx105 SQLRETURN _rRetCode,
H A DODatabaseMetaDataResultSet.hxx84 SQLRETURN m_nCurrentFetchState;
/trunk/main/connectivity/source/drivers/odbcbase/
H A DOStatement.cxx526 SQLRETURN nError = N3SQLMoreResults(m_aStatementHandle); in executeBatch()
683SQLRETURN nRetCode = N3SQLGetStmtAttr(m_aStatementHandle,SQL_ATTR_CONCURRENCY,&nValue,SQL_IS_UINTE… in getResultSetConcurrency()
696SQLRETURN nRetCode = N3SQLGetStmtAttr(m_aStatementHandle,SQL_ATTR_CURSOR_SENSITIVITY,&nValue,SQL_I… in getResultSetType()
719SQLRETURN nRetCode = N3SQLGetStmtAttr(m_aStatementHandle,SQL_ATTR_CURSOR_SCROLLABLE,&nValue,SQL_IS… in getFetchDirection()
739SQLRETURN nRetCode = N3SQLGetStmtAttr(m_aStatementHandle,SQL_ATTR_ROW_ARRAY_SIZE,&nValue,SQL_IS_UI… in getFetchSize()
754 SQLRETURN nRetCode = N3SQLGetCursorName(m_aStatementHandle,(SQLCHAR*)pName,256,&nRealLen); in getCursorName()
762SQLRETURN nRetCode = N3SQLSetStmtAttr(m_aStatementHandle, SQL_ATTR_QUERY_TIMEOUT,(SQLPOINTER)secon… in setQueryTimeOut()
769SQLRETURN nRetCode = N3SQLSetStmtAttr(m_aStatementHandle, SQL_ATTR_MAX_ROWS, (SQLPOINTER)_par0,SQL… in setMaxRows()
790SQLRETURN nRetCode = N3SQLSetStmtAttr(m_aStatementHandle, SQL_ATTR_ROW_BIND_TYPE,(SQLPOINTER)SQL_B… in setResultSetType()
848SQLRETURN nRetCode = N3SQLSetStmtAttr( m_aStatementHandle, SQL_ATTR_NOSCAN, (SQLPOINTER)nEscapePro… in setEscapeProcessing()
[all …]
H A DOResultSet.cxx174 SQLRETURN nRet = N3SQLCloseCursor(m_aStatementHandle); in disposing()
188 SQLRETURN OResultSet::unbind(sal_Bool _bUnbindHandle) in unbind()
191 SQLRETURN nRet = 0; in unbind()
843 SQLRETURN nRet = N3SQLBindCol(m_aStatementHandle, in insertRow()
916 SQLRETURN nRet; in updateRow()
942 SQLRETURN nRet = SQL_SUCCESS; in deleteRow()
1156SQLRETURN nRet = N3SQLGetStmtAttr(m_aStatementHandle,SQL_ATTR_USE_BOOKMARKS,&m_nUseBookmarks,SQL_I… in getBookmark()
1182SQLRETURN nReturn = N3SQLSetStmtAttr(m_aStatementHandle,SQL_ATTR_FETCH_BOOKMARK_PTR,m_aBookmark.ge… in moveToBookmark()
1209SQLRETURN nReturn = N3SQLSetStmtAttr(m_aStatementHandle,SQL_ATTR_FETCH_BOOKMARK_PTR,m_aBookmark.ge… in moveRelativeToBookmark()
1267SQLRETURN nReturn = N3SQLGetStmtAttr(m_aStatementHandle,SQL_ATTR_CONCURRENCY,&nValue,SQL_IS_UINTEG… in getResultSetConcurrency()
[all …]
H A DODatabaseMetaDataResultSet.cxx902 SQLRETURN nRetcode = N3SQLTables(m_aStatementHandle, in openTables()
915 SQLRETURN nRetcode = N3SQLTables(m_aStatementHandle, in openTablesTypes()
932 SQLRETURN nRetcode = N3SQLTables(m_aStatementHandle, in openCatalogs()
950 SQLRETURN nRetcode = N3SQLTables(m_aStatementHandle, in openSchemas()
988 SQLRETURN nRetcode = N3SQLColumnPrivileges(m_aStatementHandle, in openColumnPrivileges()
1021 SQLRETURN nRetcode = N3SQLColumns(m_aStatementHandle, in openColumns()
1088 SQLRETURN nRetcode = N3SQLProcedureColumns(m_aStatementHandle, in openProcedureColumns()
1121 SQLRETURN nRetcode = N3SQLProcedures(m_aStatementHandle, in openProcedures()
1151SQLRETURN nRetcode = N3SQLSpecialColumns(m_aStatementHandle,_bRowVer ? SQL_ROWVER : SQL_BEST_ROWID, in openSpecialColumns()
1194 SQLRETURN nRetcode = N3SQLForeignKeys(m_aStatementHandle, in openForeignKeys()
[all …]
H A DOConnection.cxx94 SQLRETURN OConnection::OpenConnection(const ::rtl::OUString& aConnectStr,sal_Int32 nTimeOut, sal_Bo… in OpenConnection()
101 SQLRETURN nSQLRETURN = 0; in OpenConnection()
174 SQLRETURN OConnection::Construct(const ::rtl::OUString& url,const Sequence< PropertyValue >& info) … in Construct()
268 SQLRETURN nSQLRETURN = OpenConnection(aDSN,nTimeout, bSilent); in Construct()
635SQLRETURN nRetcode = N3SQLAllocHandle(SQL_HANDLE_STMT,pConnectionTemp->getConnection(),&aStatement… in createStatementHandle()
H A DOPreparedStatement.cxx172 SQLRETURN nReturn = N3SQLExecute(m_aStatementHandle); in execute()
455 SQLRETURN nReturn = N3SQLBindParameter( m_aStatementHandle, in setNull()
592 SQLRETURN nRet = N3SQLFreeStmt (m_aStatementHandle, SQL_RESET_PARAMS); in clearParameters()
941SQLRETURN nReturn = N3SQLPrepare(m_aStatementHandle,(SDB_ODBC_CHAR *) aSql.getStr(),aSql.getLength… in prepareStatement()
H A DOTools.cxx81 SQLRETURN nRetcode; in bindParameter()
262 SQLRETURN nRetcode; in bindValue()
410 SQLRETURN _rRetCode, in ThrowException()
452SQLRETURN n = (*(T3SQLGetDiagRec)_pConnection->getOdbcFunction(ODBC3SQLGetDiagRec))(_nHandleType,_… in ThrowException()
H A DOResultSetMetaData.cxx49 SQLRETURN nRet = N3SQLColAttribute(m_aStatementHandle, in getCharColAttrib()
/trunk/main/dbaccess/source/ui/dlg/
H A Dodbcconfig.cxx125 typedef SQLRETURN (SQL_API* TSQLManageDataSource) (SQLHWND hwndParent);
126 typedef SQLRETURN (SQL_API* TSQLAllocHandle) (SQLSMALLINT HandleType, SQLHANDLE InputHandle, SQLHAN…
127 typedef SQLRETURN (SQL_API* TSQLFreeHandle) (SQLSMALLINT HandleType, SQLHANDLE Handle);
128 typedef SQLRETURN (SQL_API* TSQLSetEnvAttr) (SQLHENV EnvironmentHandle, SQLINTEGER Attribute, SQLPO…
129 typedef SQLRETURN (SQL_API* TSQLDataSources) (SQLHENV EnvironmentHandle, SQLUSMALLINT Direction, …
259 SQLRETURN nResult = NSQLAllocHandle(SQL_HANDLE_ENV, SQL_NULL_HANDLE, &m_pImpl->hEnvironment); in allocEnv()
300 SQLRETURN nResult = SQL_SUCCESS; in getDatasourceNames()
/trunk/main/connectivity/source/drivers/adabas/
H A DBConnection.cxx63 SQLRETURN OAdabasConnection::Construct( const ::rtl::OUString& url,const Sequence< PropertyValue >&… in Construct()
113 SQLRETURN nSQLRETURN = openConnectionWithAuth(aDSN,nTimeout, aUID,aPWD); in Construct()
118 SQLRETURN OAdabasConnection::openConnectionWithAuth(const ::rtl::OUString& aConnectStr,sal_Int32 nT… in openConnectionWithAuth()
123 SQLRETURN nSQLRETURN = 0; in openConnectionWithAuth()
H A DBDriver.cxx365 SQLRETURN nSQLRETURN = pCon->Construct(url,info); in connect()
526SQLRETURN nError = N3SQLSetEnvAttr(h, SQL_ATTR_ODBC_VERSION,(SQLPOINTER) SQL_OV_ODBC3, SQL_IS_INTE… in EnvironmentHandle()
/trunk/main/connectivity/source/inc/adabas/
H A DBConnection.hxx49 …virtual SQLRETURN openConnectionWithAuth(const ::rtl::OUString& aConnect…
52 …virtual SQLRETURN Construct( const ::rtl::OUString& url,const ::com::sun::star::uno::Sequence< :…
/trunk/main/dbaccess/win32/source/odbcconfig/
H A Dodbcconfig.cxx50 typedef SQLRETURN (SQL_API* TSQLManageDataSource) (SQLHWND hwndParent);
/trunk/main/connectivity/source/drivers/odbc/
H A DORealDriver.cxx354SQLRETURN nError = N3SQLSetEnvAttr(h, SQL_ATTR_ODBC_VERSION,(SQLPOINTER) SQL_OV_ODBC3, SQL_IS_UINT… in EnvironmentHandle()