Click here to Skip to main content
15,886,362 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 51.8K   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.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace JohnKenedy.DataAccessModule
{
    public partial class frmProperties : Form
    {
        public ModuleExtendDefinition Module { get; set; }

        public frmProperties()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            DataTable _table = (DataTable)dataGridView1.DataSource;
            Module.SetRoleTable(_table);
            this.Close();
        }

        private void frmProperties_Load(object sender, EventArgs e)
        {
            dataGridView1.DataSource = Module.GetRoleTable();
        }
    }
}

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