Posts tagged ‘MySQL’

Jun 10 09

Database Web Development with ASP.NET Class

I created a third ASP.NET online class called Database Web Development with ASP.NET at LVS Online.com.

This 6-week class will focus on how you can interact with databases such as SQL Server, MySQL and Microsoft Access using ASP.NET and C#. I start with the very basics on explaining how to use data source controls and objects in ADO.NET (Connection, Command, DataReader and DataSet) to retrieve, update and delete records in a database.

The great thing about ASP.NET is that you can work with almost any data source and are not limited to a Microsoft based technology. I provide a sample database in three separate versions (SQL Server, MySQL and Microsoft Access) and explain how SQL (Structure Query Language) statements are used to interact with your data.

The class is only $30 and there are no other materials or software needed.

Topics Covered:

Week 1: Database Overview (SQL Server, MySQL, Microsoft Access)
Week 2: Using SqlDataSource; SELECT statement and filtering data
Week 3: ADO.NET Review; Connection, Command and DataReader objects
Week 4: Updating and Inserting data (using data controls and ADO.NET objects)
Week 5: Databinding Techniques with GridView and DetailsView controls
Week 6: Understanding Stored Procedures (SQL Server and MySQL)
Extra: Concurrency issues and Transaction benefits

To give you an idea of how each lesson looks, here is the first lesson (.pdf).

When Does Class Start?

The class runs five times a year for six weeks in January, March, May, August and October. To learn more view the course description page and contact me to find out the exact date on when you can register.

Nov 5 07

PHP Pagination

The technique of splitting up a information into multiple pages is known as pagination. For web pages it normally means taking a resultset from a database query and only showing a specific number of records per page. There are many variations of how to do this no matter what technology (PHP, ASP, JSP, Coldfusion) you use.

read more…

Dec 13 06

PHP Web Site – Using New PHP 5 Features

In my attempt to learn PHP I thought I would create a simple web site that does some basic database interaction (select, insert, update and delete), sorting and paging, keyword search, and use some of the new PHP 5 features such as OOP, exception handling and the new mysqli extension for MySQL 4.1 and above.

read more…

Feb 7 06

MySQL and phpMyAdmin Tutorial Videos

Once you learn the basics of PHP, you will want to know how to interact with a database and update its data from a web page. MySQL is the most obvious and recommended choice using PHP and is fairly easy to setup.

You can use phpMyAdmin to easiy setup your MySQL database, tables and perform any necessary SQL statements.

read more…

Nov 3 05

Tools for a Local PHP/MySQL Environment

In order to setup a proper development environment for your home PC to create and test PHP and MySQL web pages you will need at least three components:

read more…