Exemplo n.º 1
0
 public long GetOnlineUserCount()
 {
     return(m_DatabaseHandler.GetCount("Online", true.ToString()));
 }
Exemplo n.º 2
0
        public long GetActiveAccountsCount(UUID scopeID, string excludeTerm)
        {
            string where = string.Format("(ScopeID='{0}' or ScopeID='00000000-0000-0000-0000-000000000000') and (FirstName not like '{1}%')", scopeID, excludeTerm);

            return(m_DatabaseHandler.GetCount(where));
        }