Click here to Skip to main content
15,891,607 members
Articles / Programming Languages / C#

Using a Database Over a Webservice

Rate me:
Please Sign up or sign in to vote.
4.43/5 (5 votes)
29 May 20073 min read 48.6K   539   44  
This article shows an example implementation of a database used over a Web-Service
/* Copyright (C) 2004   db4objects Inc.   http://www.db4o.com */

using System;

namespace Sharpen.Lang.Reflect {

    public class Modifier {

        public const int PUBLIC = 0x00000001;
        public const int PRIVATE = 0x00000002;
        public const int PROTECTED = 0x00000004;
        public const int STATIC = 0x00000008;
        public const int FINAL = 0x00000010;
        public const int TRANSIENT = 0x00000080;
        public const int INTERFACE = 0x00000200;
        public const int ABSTRACT = 0x00000400;

        public static bool IsAbstract(int mod) {
            return (mod & ABSTRACT) != 0;
        }

        public static bool IsFinal(int mod) {
            return (mod & FINAL) != 0;
        }

        public static bool IsInterface(int mod) {
            return (mod & INTERFACE) != 0;
        }

        public static bool IsPrivate(int mod) {
            return (mod & PRIVATE) != 0;
        }

        public static bool IsProtected(int mod) {
            return (mod & PROTECTED) != 0;
        }

        public static bool IsPublic(int mod) {
            return (mod & PUBLIC) != 0;
        }

        public static bool IsStatic(int mod) {
            return (mod & STATIC) != 0;
        }

        public static bool IsTransient(int mod) {
            return (mod & TRANSIENT) != 0;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United Arab Emirates United Arab Emirates
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions