Advertisment
Learn how to edit records with an SQL statement instead of a Recordset. Here are two examples. One will use a query string and the other gets the...
Learn how to delete records with an SQL instead of a Recordset. Here are two examples. One will use a query string and the other gets the info from...
Use an include file for your database connection. Here's the reason why. Before I wised up to this, I was placing the connection on every...
Step-by-step tutorial on how to upload files (images, text, other documents, etc) using plain ASP pages to the database. Every step has been...
Step-by-step tutorial on how to display uploaded binary files from the database using plain ASP pages. Every step has been explained in detail....
This is the second article in this series. This article mainly deals with SQL Joins and SQL sub-queries. Both of these are extremely useful SQL...
To database or not to database? Test of consumed resources (processor, memory) and results with file upload to database or file system. Test of...
Complete Online Chapter 'Data Access with .NET' from Wrox Press book 'Professional C# 2nd Edition'. Topics covered include...
Article describes what is SQL? what it is used for? how to SELECT, INSERT, UPDATE and DELETE records from the database? and more.
If you have an SQL database set up with your web host, a useful tip to know is how to connect to your SQL database via Enterprise Manager. The...
Compact and repair your access database online from ASP code. This is example code of how this can be done.
This is the first of the four-part 'Advanced SQL Techniques' series, which describes a quick and efficient way to delete duplicate...
This article describes how to use Microsoft SQL Server triggers to automatically record all updates and inserts for a particular database table in...
This article describes several ways to use a SQL calculated field and the ORDER BY clause to arrange a recordset in random order. It provides a...
This article explains a solution on how to increase the performance of your ASP pages that rely on gathering data through several different...
A step by step tutorial on caching data in memory. This tutorial goes one step further from simply caching data in memory to allow you to set a...
This article covers rarely discussed feature of ADO Recordsets, disconnected Recordsets. It examines what disconnected Recordsets are, how to use...
The author writes 'Recently I was asked to develop a web based report that would collect data from a database, format it in an HTML page and...
This article describes how to use the refresh method of the ADO Parameters collection to interrogate a stored procedure. It shows how to create the...
This example shows how to get a list of all current tables in the database, get a list of dependent stored procedures for each table and do it all...