1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: AUsers.cxx,v $
10 * $Revision: 1.12.56.1 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_connectivity.hxx"
33 #include "ado/AUsers.hxx"
34 #include "ado/AUser.hxx"
35 #include "ado/ATable.hxx"
36 #include "ado/AConnection.hxx"
37 #include <com/sun/star/sdbc/XRow.hpp>
38 #include <com/sun/star/sdbc/XResultSet.hpp>
39 #include "connectivity/sdbcx/IRefreshable.hxx"
40 #include <comphelper/types.hxx>
41 #include <connectivity/dbexception.hxx>
42 #include "resource/ado_res.hrc"
44 using namespace comphelper
;
45 using namespace connectivity
;
46 using namespace connectivity::ado
;
47 using namespace com::sun::star::uno
;
48 using namespace com::sun::star::lang
;
49 using namespace com::sun::star::beans
;
50 using namespace com::sun::star::sdbc
;
51 using namespace com::sun::star::container
;
53 typedef connectivity::sdbcx::OCollection OCollection_TYPE
;
55 sdbcx::ObjectType
OUsers::createObject(const ::rtl::OUString
& _rName
)
57 return new OAdoUser(m_pCatalog
,isCaseSensitive(),_rName
);
59 // -------------------------------------------------------------------------
60 void OUsers::impl_refresh() throw(RuntimeException
)
62 m_aCollection
.Refresh();
64 // -------------------------------------------------------------------------
65 Reference
< XPropertySet
> OUsers::createDescriptor()
67 return new OUserExtend(m_pCatalog
,isCaseSensitive());
69 // -------------------------------------------------------------------------
71 sdbcx::ObjectType
OUsers::appendObject( const ::rtl::OUString
& _rForName
, const Reference
< XPropertySet
>& descriptor
)
73 OUserExtend
* pUser
= NULL
;
74 if ( !getImplementation( pUser
, descriptor
) || pUser
== NULL
)
75 m_pCatalog
->getConnection()->throwGenericSQLException( STR_INVALID_USER_DESCRIPTOR_ERROR
,static_cast<XTypeProvider
*>(this) );
77 ADOUsers
* pUsers
= (ADOUsers
*)m_aCollection
;
78 pUsers
->Append(OLEVariant(pUser
->getImpl()),OLEString(pUser
->getPassword()));
80 return createObject( _rForName
);
82 // -------------------------------------------------------------------------
84 void OUsers::dropObject(sal_Int32
/*_nPos*/,const ::rtl::OUString _sElementName
)
86 m_aCollection
.Delete(_sElementName
);
88 // -------------------------------------------------------------------------