The net's largest PHP, CGI, Perl, JavaScript and ASP script collection and resource web portal
  New Listings
New Listings
Most Popular
Most Popular
Top Rated
Top Rated
Discussion
Discussion
Link to Us!
Link To Us
Search For:         
   
 
Sponsors


Categories

Ajax
ASP
ASP.NET
C and C++
CFML
CGI and Perl
Flash
Java
JavaScript
PHP
Python
Remotely Hosted
Ruby on Rails
Tools and Utilities
Web Hosting
XML

Sponsor Links


Home :: ASP :: Tips and Tutorials :: Database-related
Sort Listings By:       Click if you want to be notified of new or updated links in this category
  Total: 141    Displaying: 21 - 40 Pages:   1 2 3 4 5 6 7 8

   How to Encrypt Passwords in the Database   Hits: 906 

 
If you are developing a password-protected web site, you have to make a decision about how to store user password information securely. This article will show you how to encrypt user passwords with md5 algorithm and how to start using encrypted passwords if you already have users' database ready.


Version: n/a   Platform(s): windows   Updated: Thu Sep  7 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Get image from database   Hits: 1512 

 
Learn how to get a stored image from a database and display it on a page.


Version: n/a   Platform(s): n/a   Updated: Tue Jan  3 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Search a Database   Hits: 1505 

 
Learn how to search a database with keywords.


Version: n/a   Platform(s): n/a   Updated: Wed Apr 20 2005

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Using GetRows To Get All Records From Table   Hits: 1931 

 
Following example, extracts all of the records in a database table and stores into a 2-dimensional array. This gives you an advantages to modify and work on data.


Version: 1   Platform(s): WinNT/2000/2003   Updated: Sat Apr 10 2004

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Using SUM Function in An SQL Statement   Hits: 1578 

 
Sum function can be used for to get the sum of a numeric expression evaluated over a set. This function must be placed in an SQL statement. Following example will return the sum of ratings in articles.


Version: 1   Platform(s): WinNT/2000/2003   Updated: Thu Apr  1 2004

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Uploading Images to Database Using Persist AspUpload   Hits: 2193 

 
You can upload your images to MS-SQL server with this simple script. To upload a picture to sql database, be sure Persist AspUpoad installed in you server.


Version: n/a   Platform(s): Win 2000   Updated: Thu Apr  1 2004

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Compacting an Access database from ASP code   Hits: 1749 

 
This source code can compact and repair your MS-Access database files. If you compact your access files regularly, it will work more faster and secure. Also you will save some hard disk space.


Version: 1   Platform(s): WinNT/2000/2003   Updated: Sun Jan 25 2004

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Executing Transact-SQL UPDATE statement   Hits: 2232 

 
In this example, we will edit some records from a database. This source code helps us to edit records to database without slowing down database


Version: 1   Platform(s): WinNT/200/2003   Updated: Thu Dec 18 2003

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Executing Transact-SQL INSERT statement   Hits: 1999 

 
In this example, we will add some records to a database. This source code helps us to adding records to database without slowing down database.


Version: 1   Platform(s): WinNT/200/2003   Updated: Thu Dec 18 2003

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Counting Records In A Database Table   Hits: 1862 

 
We can count records in a table with these a few lines of codes. First we must send an SQL statement to database engine. Count of records will be first value of resultset.


Version: 1   Platform(s): WinNT/200/2003   Updated: Thu Dec 18 2003

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Executing Transact-SQL DELETE statement   Hits: 1177 

 
In this example, we will delete some records from a database. This source code helps us to deleting records to database without slowing down database.


Version: 1   Platform(s): WinNT/200/2003   Updated: Thu Dec 18 2003

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Custom Paging in ASP   Hits: 4458 

 
This source code displays results dividing to pages. Code provides Next Previous page links with numeric page numbers. You may modify source code to use with MS SQL or MS Access database. For this example, we have used MS SQL Server using sample database Northwind.


Version: 1   Platform(s): Win NT   Updated: Wed Nov 12 2003

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Paging Records With GetRows   Hits: 3611 

 
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!


Version: n/a   Platform(s): n/a   Updated: Sat Oct  4 2003

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   How to display records from top 4 database systems using plain ASP?   Hits: 3116 

 
Sometimes, we would have chance to convert our existing database or create a new database. Some decisions IT professionals need to make are scary, and choosing database software is one of them. This overview aims to describe how to set database connections with some common database software (Oracle, MySQL, MS Access,MS SQL Server).


Version: n/a   Platform(s): n/a   Updated: Mon Sep  1 2003

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Dynamic, database backed dropdown lists   Hits: 3690 

 
How to build a dynamic dropdown list with ASP and database data. Then, how to use ADO and recordset filtering to produce a structured list.


Version: n/a   Platform(s): n/a   Updated: Wed Aug 27 2003

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   MS Access: Tables, Views and Procedures   Hits: 3052 

 
Ever wondered how to create a table, view or procedure with MS Access? This article shows us how to create all three and work with them from an ASP script.


Version: n/a   Platform(s): n/a   Updated: Wed Aug 27 2003

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   WiredNow.net: SQL Reserved Words   Hits: 906 

 
It is an often problem with database intergration when you use a reserved word. Often asked why a script does not work and it quite often comes down the the author setting a field name as a reserved word, confusing SQL and making debugging hard. To solve this problem here is a quick list of the SQL Reserved Words.


Version: n/a   Platform(s): n/a   Updated: Thu Aug 28 2003

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Convert to Comma-Delimited File   Hits: 2118 

 
This page demonstrates the capabilities how to write an ASCII comma-delimited file from a SQL statement using ASP.


Version: n/a   Platform(s): n/a   Updated: Wed Aug 27 2003

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Wielding the Power of the DataView   Hits: 863 

 
When faced with learning a new technology, it's common to try and reproduce the basic functionality you're used to in the old one. In doing that with ADO.NET and trying to reproduce the basics or the recordset object, this article discusses the new and many uses of ADO.NET's DataView object.


Version: n/a   Platform(s): n/a   Updated: Wed Aug 27 2003

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   ASP and DBF database file connection   Hits: 2019 

 
Create a connection to DBF files using JetOLEDB provider (DSN-less, ODBC-less connection), basic work with DBF files (select, insert, update), other ISAM formats + FOXPRO option, real sample code, create a new DBF file.


Version: 1.0   Platform(s): ASP/VBS   Updated: Wed Jun 18 2003

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

  Total: 141    Displaying: 21 - 40 Pages:   1 2 3 4 5 6 7 8

Share


Register | FAQ/Support | Contact Us | About Us | Getting Rated | Link to Us | Bookmark Us | Advertising Info | Terms of Use | Privacy Policy
Copyright © 2008 iNET Interactive. All rights reserved.
Other iNET Interactive Sites:
Web Hosting Talk | dBForums | Mac Forums | Hosting Catalog