Executing Dynamic Queries using Provider Independant Code : DbProviderFactories « ADO.net Database « ASP.Net

ASP.Net
1. ADO.net Database
2. Ajax
3. Asp Control
4. Collections
5. Components
6. Data Binding
7. Development
8. File Directory
9. HTML Control
10. Language Basics
11. Login Security
12. Mobile Control
13. Network
14. Page
15. Request
16. Response
17. Server
18. Session Cookie
19. Sitemap
20. Theme Style
21. User Control and Master Page
22. Validation by Control
23. Validation by Function
24. WebPart
25. WPF
26. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
ASP.Net » ADO.net Database » DbProviderFactories 
Executing Dynamic Queries using Provider Independant Code

<%@ Page Language="C#" %>
<%@ Import Namespace="System.Web.Configuration" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.Common" %>

<script runat="server">
    void Page_Load(object source, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            DataTable table = DbProviderFactories.GetFactoryClasses();
            ddlProvider.DataSource = table;
            ddlProvider.DataTextField = "Name";
            ddlProvider.DataValueField = "InvariantName";
            ddlProvider.DataBind();
        }
    }

    void btnExecute_Click(object sender, EventArgs e)
    {                
        string sql = "Select * from " + txtTableName.Text;
        ExecuteQuery(ddlProvider.SelectedItem.Value, sql);        
    }

    void ExecuteQuery(string providerName, string sql)
    {        
        DbProviderFactory factory = DbProviderFactories.GetFactory(providerName);
        string connectionString = CreateConnectionString(factory.CreateConnectionStringBuilder());
        using (DbConnection conn = factory.CreateConnection())
        {            
            conn.ConnectionString = connectionString;
            using (DbDataAdapter adapter = factory.CreateDataAdapter())
            {
                adapter.SelectCommand = conn.CreateCommand();
                adapter.SelectCommand.CommandText = sql;
                DataTable table = new DataTable("Table");
                adapter.Fill(table);
                gridResults.DataSource = table;
                gridResults.DataBind();
            }
        }
    }

    private string CreateConnectionString(DbConnectionStringBuilder builder)
    {
        builder.Add("Integrated Security"true);
        builder.Add("Initial Catalog", txtDatabaseName.Text);
        builder.Add("Data Source", txtServerName.Text);
        return builder.ConnectionString;
    }
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>Executing Dynamic Queries using Provider Independant Code</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <table>
            <tr>
                <td>Select Provider:</td>
                <td><asp:DropDownList ID="ddlProvider" runat="server" Width="190px"/></td>
            </tr>
            <tr>
                <td>Server Name:</td>
                <td><asp:TextBox ID="txtServerName" runat="server" Width="183px"/></td>
            </tr>
            <tr>
                <td>Database Name: </td>
                <td><asp:TextBox ID="txtDatabaseName" runat="server" Width="180px"/></td>
            </tr>
            <tr>
                <td>Table Name: </td>
                <td><asp:TextBox ID="txtTableName" runat="server" Width="176px"/></td>
            </tr>
            <tr>
                <td colspan="2">
                    <asp:Button ID="btnExecute" runat="server" OnClick="btnExecute_Click" Text="Execute Query" />            
                </td>
            </tr>
        </table>
        <asp:GridView HeaderStyle-BackColor="Control" 
                      HeaderStyle-ForeColor="Brown" 
                      RowStyle-BackColor="Snow" 
                      runat="Server" 
                      ID="gridResults">
        </asp:GridView> 
    </div>
    </form>
</body>
</html>

 
Related examples in the same category
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.