Contents tagged with collection
-
Sharepoint Set Site Collection Administrator with Powershell
$siteCollectionUrl = "<my site>"$site =new-object Microsoft.SharePoint.SPSite($siteCollectionUrl)$web = $site.RootWeb$primarAdministrator = $web.EnsureUser("domain\sp_admin")$site.Owner = $ … more
-
Copy Database Data into Collection
public static ArrayList<Customer> getAllCustomer() throws ClassNotFoundException, SQLException {
Connection conn=DBConnection.getDBConnection().getConnection();
Statement stm;
stm = conn. … more