Difference between revisions of "Documentation/DevGuide/Database/Creating a User"
From Apache OpenOffice Wiki
< Documentation | DevGuide
OOoWikiBot (talk | contribs) m (Robot: Changing Category:Documentation/Developers Guide/Database Access) |
OOoWikiBot (talk | contribs) m (FINAL VERSION FOR L10N) |
||
| Line 6: | Line 6: | ||
|NextPage=Documentation/DevGuide/Database/Adding a Group | |NextPage=Documentation/DevGuide/Database/Adding a Group | ||
}} | }} | ||
| − | {{DISPLAYTITLE:Creating a User}} | + | {{Documentation/DevGuideLanguages|Documentation/DevGuide/Database/{{SUBPAGENAME}}}} |
| + | {{DISPLAYTITLE:Creating a User}} | ||
<!--<idltopic>com.sun.star.sdbcx.UserDescriptor</idltopic>--> | <!--<idltopic>com.sun.star.sdbcx.UserDescriptor</idltopic>--> | ||
The procedure to create a user is the same. The <idl>com.sun.star.sdbcx.XDataDescriptorFactory</idl> interface is used from the users container. Create a user with the <code>UserDescriptor</code>. The <idl>com.sun.star.sdbcx.UserDescriptor</idl> has an additional property than the <code>User</code> service supports. This additional property is the <code>Password</code> property which should be set. Then the <code>UserDescriptor</code> object can be appended to the user container. | The procedure to create a user is the same. The <idl>com.sun.star.sdbcx.XDataDescriptorFactory</idl> interface is used from the users container. Create a user with the <code>UserDescriptor</code>. The <idl>com.sun.star.sdbcx.UserDescriptor</idl> has an additional property than the <code>User</code> service supports. This additional property is the <code>Password</code> property which should be set. Then the <code>UserDescriptor</code> object can be appended to the user container. | ||
Revision as of 12:52, 15 May 2009
The procedure to create a user is the same. The com.sun.star.sdbcx.XDataDescriptorFactory interface is used from the users container. Create a user with the UserDescriptor. The com.sun.star.sdbcx.UserDescriptor has an additional property than the User service supports. This additional property is the Password property which should be set. Then the UserDescriptor object can be appended to the user container.
// create a user
public static void createUser(XNameAccess xUsers) throws Exception,SQLException {
System.out.println("Example createUser");
XDataDescriptorFactory xUserFac = (XDataDescriptorFactory)UnoRuntime.queryInterface(
XDataDescriptorFactory.class, xUsers);
if (xUserFac != null) {
// create the new table
XPropertySet xUser = xUserFac.createDataDescriptor();
// set the name of the new table
xUser.setPropertyValue("Name", "BOSS");
xUser.setPropertyValue("Password","BOSSWIFENAME");
XAppend xAppend = (XAppend)UnoRuntime.queryInterface(XAppend.class, xUserFac);
xAppend.appendByDescriptor(xUser);
}
}
| Content on this page is licensed under the Public Documentation License (PDL). |