Articles   Dev Forums   Personalize   Favorites   Member Login        Active Users:  688
DevASP - ASP and XML Articles, Samples, Toturials, Sample Chapters and resources for Developers Thursday, September 02, 2010
Home
Articles & Samples
Dev Search
Dev Forum
Add a Listing
Sample Chapters
Directory Feed
Link to US
Contact

Search Directory
Applications
Articles & Samples
Components
Community
Database
Developer Sites
Downloads
Hosting Services
Introduction
Knowledge Base
Sample Chapters
WebCasts
ASP Directory
Applications
Articles & Samples
Components
Developer Sites
Knowledge Base
Sample Chapters
WebCasts
XML Directory
Applications
Articles & Samples
Developer Sites
Error, Bugs & Fixes
Downloads
Introduction
Knowledge Base
Sample Chapters
WebCasts

Build the right apps the right way with powerful development tools.
Visual Studio 2010. Learn more...

Home > Search > Database > Stored Procedures
Search
DevASP

What's New
What's Hot

User Define Functions VS Stored Procedure       
Total Hits: 83  |  Today: 0 Author: Nitin Srivastava       Rating:  
Read Reviews | Write Review |              Your Rating: 

User Define functions and stored procedure are looks simillar to each other, but there is lots of difference between them.
Here we are discussing the follwing arcticels.
1) What as User Defined Function.
2) Catagaries of User define function
3) What are stored procedure.
4) Basic difference between the User defined function and the stored procedures.
5) Create syntax of Stored Procedure
6) Create syntax of User Defined Function...

Stored Procedures Quickstart       
Total Hits: 54  |  Today: 0 Author: Chris Garrett       Rating:  
Read Reviews | Write Review |              Your Rating: 

Eventually, most ASP programmers will find they need to write stored procedures because they find they are writing the same or similar SQL queries over and over in their web project or will require the performance that only a stored procedure will bring....

Difference between Stored Procedure and Function       
Total Hits: 75  |  Today: 0 Author: Abhijeet Kumar       Rating:  
Read Reviews | Write Review |              Your Rating: 

Here i am presenting an exhaustive list of difference between Stored Procedures and Functions in Database.
1> Functions can be called from procedure where as procedures cannot be called from function.
2> Procedures can not be utilized in a select statement whereas function can be embedded in a select statement.
3> Function must return one and only one value where as Procedure can return any number of values (0 to n)....

Passing Integer Array as Stored Procedure Parameter       
Total Hits: 47  |  Today: 0 Author: RDRaja       Rating:  
Read Reviews | Write Review |              Your Rating: 

Some times , we need to pass more than one integer value to query for IN Operator , normally it is not possible ,
because array parameter is taken to one string values like this...

ADO Stored Procedures       
Total Hits: 467  |  Today: 0 Author: Steven Smith       Rating:  
Read Reviews | Write Review |              Your Rating: 

This article covers simply HOW to use stored procedures with ADO. WHY you should do so is covered in another article, but suffice to say that you should. SQL code in your ASP page is BAD. Remember that and you'll do fine. Now let's look at some code....

Everything you wanted to know about Stored Procedures       
Total Hits: 365  |  Today: 0 Author: Himanshu Khatri       Rating:  
Read Reviews | Write Review |              Your Rating: 

Stored procedures can offer performance gains when used instead of regular queries. This article will start with the basics and give you the complete overview on stored procedures and how to use them. Have you ever thought what happens when your queries get to the database?. They are actually compiled each time you query and then executed, but this is not the ideal approach. A much better option would be to have the database server compile the query, store it in a compiled format and run it on r...

Using SQL Server Stored Procedures To Prevent SQL Injection       
Total Hits: 258  |  Today: 0 Author: Randy Dyess       Rating:  
Read Reviews | Write Review |              Your Rating: 

An often over-looked method to help prevent SQL Injection attacks is the use of parameterized stored procedures. This first article in a two-part series briefly discusses the use of a parameterized stored procedure to help prevent SQL Injection attacks during your web site logon process....

Stored Procedures Quickstart       
Total Hits: 278  |  Today: 0 Author: Chris Garrett       Rating:  
Read Reviews | Write Review |              Your Rating: 

Eventually, most ASP programmers will find they need to write stored procedures because they find they are writing the same or similar SQL queries over and over in their web project or will require the performance that only a stored procedure will bring....

MS Access Stored Procedure       
Total Hits: 3022  |  Today: 0 Author: Chris Hembrow       Rating:  
Read Reviews | Write Review |              Your Rating: 

Stored procedures are compiled SQL applications which run significantly faster than a standard query. This information describes the process of running queries built into a MS Access database, to replicate the functionality of a stored procedure....

A to Z of Stored Procedures       
Total Hits: 5724  |  Today: 0 Author: Benny Alexander       Rating:  
Read Reviews | Write Review |              Your Rating: 

The article is indented towards ASP and VB Programmers who always write hard core SQL statements inside their coding to communicate with database.Its time to learn and switch over into Stored Procedures....

Create a Stored Procedure using ASP.       
Total Hits: 1192  |  Today: 0 Author: Abstractvb       Rating:  
Read Reviews | Write Review |              Your Rating: 

Just drop this code on a new ASP page, change the connection string and run it. It will create a new stored procedure called CountProducts that will count the number of Products in the table called Products....

ASP Data Driven Web Report       
Total Hits: 366  |  Today: 0 Author: Brian Lockwood       Rating:  
Read Reviews | Write Review |              Your Rating: 

Reads SQL Stored procedure meta data to provide a complete reporting solution including user input forms for criteria and sortable, pageable html reports....

Calling Command objects and stored procedures       
Total Hits: 1219  |  Today: 1       Rating:  
Read Reviews | Write Review |              Your Rating: 

You can design stored procedures to hide complex business rules and logic, leaving a more concise interface available for application development....

Access' queries like stored procedures       
Total Hits: 1919  |  Today: 0 Author: ATM       Rating:  
Read Reviews | Write Review |              Your Rating: 

Here is HOWTO call access' select,insert,update and delete queries from asp....

Paging through Records using a Stored Procedure       
Total Hits: 1603  |  Today: 0 Author: Daniel Anderson       Rating:  
Read Reviews | Write Review |              Your Rating: 

Demonstrates how to page through a recordset using a stored procedure as opposed to client-side cursors. This approach increases performance for paging through tables that aren’t extremely large....

SProc's in your ATL component       
Total Hits: 164  |  Today: 0 Author: John R. Lewis       Rating:  
Read Reviews | Write Review |              Your Rating: 

My first article on this topic ADO in your ATL component, was a very basic example of using ADO in an ATL component. This article goes a step further, and will show you how to call a Stored Procedure with parameters using the Command object....

Calling Stored Procedures       
Total Hits: 2613  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

This is the format for a stored procedure where you want to pass parameters. This is a basic reference article on the different ways you can create a stored Procedure, then pass parameters to it....

Writing a Stored Procedure 2       
Total Hits: 3996  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

This tutorial discusses how to use stored procedures to execute non-SELECT SQL statements, and how to use the ADO Command Object to execute stored procedures through an ASP page....

Dynamic Stored Procedures       
Total Hits: 1332  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

This tutorial demonstrates how you can run dynamic SQL statements inside of stored procedures.Oftentimes you'd like to be able to customize a stored procedure so that a different table could be queried, based upon the passed in parameters....

Writing A Stored Procedure       
Total Hits: 3064  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

Describes how to write stored procedures using SQL Server. Using stored procedures have a number of benefits, from performance gainsin the data queries to providing a layer of encapsulation between your database and ASP pages....


1  2  3  Next >> 

DevASP - Privacy - Disclaimer
Copyright © 2008 DevASP.com