Click here to Skip to main content
15,895,746 members
Articles / Web Development / ASP.NET

JohnKenedy Data Access Layer Library

Rate me:
Please Sign up or sign in to vote.
3.42/5 (12 votes)
10 Jul 2008GPL37 min read 52K   1.1K   48  
This is a .NET 3.5 library that acts as Data Access Layer with many automatic features
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace JohnKenedy.DataAccess
{
    public class DataAccessStringAndDefault
    {
        public DataAccessStringAndDefault()
        {
        }

        public static string DateTimeFormat
        {
            get
            {
                return "MM/dd/yyyy";
            }
        }

        public static string NullString
        {
            get
            {
                return "null";
            }
        }

        public static string DirectDALAccessUserName
        {
            get
            {
                return "[Unknown:DirectDAL]";
            }
        }

        public static string ManagerSessionName
        {
            get
            {
                return "JohnKenedyManager";
            }
        }

        public static string AuditSessionName
        {
            get
            {
                return "JohnKenedyAudit";
            }
        }

        public static string CurrenUserSessionName
        {
            get
            {
                return "CurrentUser";
            }
        }

        public static DataAccessAudit GetDefaultAudit()
        {
            return new DataAccessAudit("AuditTrail", "UserLogin", "TableName", "Statement", "Note", "~\\AuditTrail.txt");
        }
    }
}

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, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior)
Singapore Singapore
I write code mostly in C#, VB.NET, PHP and Assembly.

Comments and Discussions