Click here to Skip to main content
15,891,423 members
Articles / Database Development / SQL Server

DAL Class and Transact-SQL Generator for C# and VB.NET

Rate me:
Please Sign up or sign in to vote.
4.48/5 (27 votes)
8 Dec 2007CPOL2 min read 133.2K   13.7K   96  
Automatically generates the required class and stored procedure to work with SQL databases
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace SUNCodeGenerator
{
    public partial class frmChooseLanguage : Form
    {
        public frmChooseLanguage()
        {
            InitializeComponent();
        }
        private string m_Language;

        public string Language
        {
            get { return m_Language; }
            set { m_Language = value; }
        }

        private void frmChooseLanguage_Load(object sender, EventArgs e)
        {
            comboBox1.SelectedIndex = 0;
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Language = "";
            this.Close();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            Language= comboBox1.Text;
            this.Close();
        }
    }
}

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 Code Project Open License (CPOL)


Written By
Web Developer
Iran (Islamic Republic of) Iran (Islamic Republic of)
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions