Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8609425
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T03:52:40+00:00 2026-06-12T03:52:40+00:00

Can anyone write a simple example of how to connect from my ASPX website

  • 0

Can anyone write a simple example of how to connect from my ASPX website to my Database?
I’m just starting in ASP, so please keep it simple.

MysqlDB Name : ASP
Class : Database.cs

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T03:52:41+00:00Added an answer on June 12, 2026 at 3:52 am

    maybe this will help

    first of all you need to include some reference you can download them at this link: http://dev.mysql.com/downloads/connector/net/

    here is the code:

    using MySql.Data.MysqlClient;
    
    namespace OwnNameSpace
    {
      public class Database
      {
        MySqlConnection connect;
        string connection = "Data Source=localhost;Database=ASP;User ID=(your ID)";
    //constructor
    public Database()
    {
    }
    
      // this if want to select something in your db
      public MySqlDataReader Select(string query)
      {
    
          connect = new MySqlConnection(connection);
          connect.Close();
          MySqlCommand command = connect.CreateCommand();
          command.CommandText = query;
          connect.Open();
          MySqlDataReader reader;
          return reader = command.ExecuteReader();
      }
    
      // this if want to insert/delete or update 
      public Boolean Modify(string query)
      {
    
          connect = new MySqlConnection(connection);
          MySqlCommand command = connect.CreateCommand();
          command.CommandText = query;
          connect.Open();
          try
          {
             command.ExecuteNonQuery();
             return true;
          }
          catch
          {
            return false;
          }
    
       }
    
    
    
     }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anyone please write a simple example on how to pass a number (int
Can someone provide just a simple example of how to use wxSockets write, because
Can anyone Provide a Simple Example to Read and Write in the Unicode File
Can anyone please tell me how I can write a bash shell script that
Can anyone please tell me how to write a small div container in HTML
Please can anyone help me? I search some example how can i get information
Can anyone help me with writing a simple example of the for loop in
can anyone help me write a linq query, its a bit confusing... Basically i
Can anyone tell me how to write and run msbuild by using VS 2005?
Can anyone tell me how to write javascript code that removes everything after the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.