Database-related
Paging: Use ADO, getrows, or a Stored Procedure?
posted byslianinDatabase-related
Paging is basically querying a database and presenting a page full of the query's results. In ASP and SQL Server programming, there are three approaches to paging. This article compares the approaches and explains which one is the most efficient when dealing with very large sets of data.
Reviews0
PriceFree
Views3074
Getting Your Quotes Right In SQL For ASP
posted byalhetzelinDatabase-related
It is somewhat ironic that the most confusing part of creating and executing a SQL statement from ASP is determining where to put the quotes. When is a single quote used? When is a double quote used? When are they used together? Which takes precedence? This article will answer these questions.
Reviews0
PriceFree
Views1861
Database Search Sample Code
posted bygaryinDatabase-related
Here is a quick sample of searching a DB for certain records. It's really no different then doing any other query except that you need to use wildcards. In ASP / ADO the wildcard character is %. It works the way most of us have come to expect * to work. Why is it %? I have no idea, but it is. An Access 97 version of the database is available for download.
Reviews0
PriceFree
Views3974
Display Image From Database
posted byssmithinDatabase-related
It is possible to store images in a database using a number of third party tools or a custom built component. Once you have the images stored in your database, however, displaying them requires the use of a simple ASP page. This tutorial explains how to retrieve images from a database table and use them in an HTML page.
Reviews0
PriceFree
Views4305
Incorporating SQL Server 7.0/2000 Databases into your ASP Pages
posted bywebmasterinDatabase-related
This is a comprehensive tutorial on how to incorporate SQL server 7.0/2000 databases into your ASP pages. Topics include: Installation steps, Creating SQL Server 7.0/2000 Databases, Creating SQL Server 7.0/2000 Tables, Creating SQL Server 7.0/2000 Logins, Setting SQL Server 7.0/2000 Permissions, Increasing SQL Server 7.0/2000 Performance with Indexes, and Distributed SQL Server 7.0/2000 Transactions & Queries.
Reviews0
PriceFree
Views2591
Running Stored Procedures in Access Database
posted bywebmasterinDatabase-related
Explains everything in detail you'll ever need to know about creating Stored Procedures in Access Database and then calling from within ASP. Select, Update, Insert and Delete Stored Procedures are described. Sample code and database available for download.
Reviews0
PriceFree
Views3684
Introduction & Data Access
posted byCRJonesinDatabase-related
In this first article of the ASPHoleTools series, you will be shown the basics for data access. Covers how to create the basic include file for database access, and testing that data access was installed properly on your machine.
Reviews0
PriceFree
Views1374
Dynamically Generated HTML Forms
posted byjjonesinDatabase-related
This article discusses two different ways to dynamically generate data-entry forms: Use the ADO OpenSchema Method, and Query Your SQL Server System Tables. Describes advantages and disadvantages of each method.
Reviews0
PriceFree
Views3642
Named Recordsets
posted byhotscriptsinDatabase-related
This article by James Shaw demonstrates how to dynamically add properties to an object (expando properties) - by implementing a function to create named recordsets.
Reviews0
PriceFree
Views1343
Search Database
posted byinfoinDatabase-related
This example / tutorial explains how to use the LIKE operator to perform a partial match on an Access database.
Reviews0
PriceFree
Views2636
ASP Data Access for Beginners
posted byJason_m_butlerinDatabase-related
The driving force behind Active Server technologies is data access. In order to develop a truly dynamic web site developers need to allow users to access data on demand. Luckily, with Microsoft's Active Server Pages, this is exceedingly easy to do. This article for ASP beginners details how to connect to a SQL Server 7.0 database using ActiveX Data Object (ADO) and Open Database Connectivity (ODBC).
Reviews0
PriceFree
Views4167
Insert Using SQL
posted byi-need-helpinDatabase-related
This short tutorial demonstrates how to insert data into a SQL database using SQL statements.
Reviews0
PriceFree
Views2248
Multiple Form Selection (Where In)
posted byinfoinDatabase-related
Allowing multiple choices of data observations enables people to customize views of your data and adds value to your applications. This example utilizes our db on the career statistics of Hammerin� Hank Greenberg. The years he played are available to select from in a dropdown menu. When multiple years are selected they are passed comma delimited. Utilizing the where in statement in our sql the comma delimited selections are appended to our sql statement to display only those years selected.
Reviews0
PriceFree
Views3549
Display Table on Web Page
posted bywebmasterinDatabase-related
This page demonstrates the capabilities how to display a table from a SQL statement. It illustrates not only how to display the table, but also how to detect that no records
were returned from a query, and how to detect null and blank values in the data.
Reviews1
PriceFree
Views2960
Paging Records With GetRows
posted bymukulsabharwalinDatabase-related
You all must have seen and done stuff with the RecordSet object, infact everything is done with the RecordSet object. Now, this acticle explains how to use GetRows to page through the records that you recieve from the SELECT. It's much faster than MoveNext, because it closes the database connection immediately whereas MoveNext loops through the records with the overhead of the database connection. Plus GetRows let's you count the records correctly!
Reviews0
PriceFree
Views4169
Limit query results with the Recordset object
posted bywiseaspinDatabase-related
Have this short program around so that you can quickly see what columns and what data are in your database. Here you will see some of the common methods and properties used to limit the results from your SQL query. Using a simple form that takes a table name and a submit button, and you can easily display increments of the table data. Full source code available.
Reviews0
PriceFree
Views2128
Creating a Simple SQL-Driven Web Site
posted bywebmasterinDatabase-related
This hands-on tutorial explains how to develop a simple SQL-driven web site in just minutes. Topics include: Our Database Design, Creating a Data Source, Inserting A Tip Into Our Database, Displaying and Deleting Tips, Searching the Database, and Displaying the Tips.
Reviews0
PriceFree
Views3176
Generating random records from the Database
posted bywebmasterinDatabase-related
This article shows how to generate random records from the database. Also explains how to generate random numbers. Sample Database and Code available for download.
Reviews0
PriceFree
Views3275
ASP-Database Transactions
posted bywebmasterinDatabase-related
This is an article on executing all or none database queries using ASP-Database transactions. Must read for ASP-Database developers. Sample Database and Code available for download.
Reviews0
PriceFree
Views2976
Speed up Database Access using GetRows
posted bywebmasterinDatabase-related
This is an article on using Recordset. It uses GetRows method to speedup database access. One of the fastest ways of displaying database records with ASP. Sample Database and Code available for download.
Reviews0
PriceFree
Views3962