473,396 Members | 1,792 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

stored procedure in access

hi
is there any way to use sql stored procedure in access 2003?

i have a tored procedure that want to link it to access database but have no ided that it is possible or not?

thanks alot
Oct 16 '07 #1
4 1931
Jim Doherty
897 Expert 512MB
hi
is there any way to use sql stored procedure in access 2003?

i have a tored procedure that want to link it to access database but have no ided that it is possible or not?

thanks alot
Have a look at the .ADP Project file format in Access it is designed to work directly with stored procedures and SQL server side records exposing the stored procedures and view interface for manipulation on the client side.

Regards

Jim
Oct 16 '07 #2
Jim Doherty
897 Expert 512MB
Have a look at the .ADP Project file format in Access it is designed to work directly with stored procedures and SQL server side records exposing the stored procedures and view interface for manipulation on the client side.

Regards

Jim

If you are committed to the MDB format then you can access the functionality of stored procedures via queries defined as 'pass through' queries and are documented in help.

In considering your options have a look also at the .ADP Project file format in Access it is designed to work directly with stored procedures and SQL server side records exposing the stored procedures and view interface for manipulation on the client side.

A simple example of using a code function within an ADP file to access a stored procedure where it accepts input parameters comprising of a date from and a date to value derived from, shall we say, a main menu screenform and returning a single output value to the client side application might be something like this (seemingly long winded visually speaking for a simple example that could be achieved in SQL I know,... but it merely illustrates the point)

Expand|Select|Wrap|Line Numbers
  1.  Function GetMyCount() 
  2. On Error GoTo Err_GetMyCount
  3. Dim cmd As ADODB.Command
  4. Set cmd = New ADODB.Command
  5. cmd.ActiveConnection = CurrentProject.Connection
  6. cmd.CommandText = "dbo.usp_MyCountBetweenDates"
  7. cmd.CommandType = adCmdStoredProc
  8. Dim par As ADODB.Parameter
  9. Set par = cmd.CreateParameter("@datefrom", adDate, adParamInput)
  10. cmd.Parameters.Append par
  11. Set par = cmd.CreateParameter("@dateto", adDate, adParamInput)
  12. cmd.Parameters.Append par
  13. Set par = cmd.CreateParameter("@intResult", adInteger, adParamOutput)
  14. cmd.Parameters.Append par
  15. cmd.Parameters("@datefrom") = Format(Forms!frmMainMenu!DateFromCrit, "mm/dd/yyyy")
  16. cmd.Parameters("@dateto") = Format(Forms!frmMainMenu!DateToCrit, "mm/dd/yyyy")
  17. cmd.Execute
  18. GetBookingCount = cmd.Parameters("@intResult").Value & " Records"
  19. Exit_GetMyCount:
  20. Exit Function
  21. Err_GetMyCount:
  22. DoCmd.Hourglass False
  23. DoCmd.Echo True
  24. MsgBox err.Description,vbinformation,"System Function GetCount Error" 
  25. Resume Exit_GetMyCount
  26. End Function
  27.  
The server side stored procedure then might look something like this

Expand|Select|Wrap|Line Numbers
  1.  
  2. CREATE PROCEDURE dbo.usp_MyCountBetweenDates
  3. (@datefrom datetime,@dateto datetime,@intResult int output)
  4. AS
  5. SET NOCOUNT ON
  6. SELECT @intResult=COUNT(*) FROM dbo.tblMyTable WITH (NOLOCK) WHERE (MyDate >=@datefrom AND MyDate<=@dateto)
  7. SELECT @intResult
  8. GO


Regards

Jim
Oct 16 '07 #3
thanks alot
i try to do as you said. i hope it work for me. it seems hard.
thanksssssssssssssssssssssss
Oct 17 '07 #4
Jim Doherty
897 Expert 512MB
thanks alot
i try to do as you said. i hope it work for me. it seems hard.
thanksssssssssssssssssssssss
Well the learning curve is never simple.. but if you are working with stored procedures predominently then inevitably you going to need to know server side transact SQL language. If you intend to keep your transactions server side mostly you might as well dive straight in, do just that and work server side, and make the application reference and return only the data it needs. It is the optimum method of working with SQL Server

Regards

Jim :)
Oct 17 '07 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

3
by: 8leggeddj | last post by:
Hello, I am having a problem when using access xp as a frontend for sql server 2000. I have been trying to update a number of stored procedures (Just simple adding fields etc) which results in...
2
by: Josh Strickland | last post by:
I am attempting to create an Access database which uses forms to enter data. The issue I am having is returning the query results from the Stored Procedure back in to the Access Form. ...
8
by: Mark Flippin | last post by:
This is for a reporting problem using: Access 2000 SQL Server 2000 Both at SP3 I've a stored procedure in SQL Server 2000 which builds a result set from a disparate set of tables, utilizing...
0
by: billmiami2 | last post by:
Perhaps many of you MS Access fanatics already know this, but it seems that stored procedures and views are possible in Jet. I thought I would leave this message just in case it would help anyone....
5
by: Tim Marshall | last post by:
I was following the thread "Re: Access Treeview - Is it Safe Yet?" with interest and on reading the post describing Lauren Quantrell's SmartTree, I've run into something I don't understand: Stored...
2
by: Dino L. | last post by:
How can I run stored procedure (MSSQL) ?
6
by: Peter Neumaier | last post by:
Hi, I am trying to select some data through a stored procedure and would like to store the result in a local access table. Is that possible? Can somebody provide an example? Thanks&regards!...
2
by: jed | last post by:
I have created this example in sqlexpress ALTER PROCEDURE . @annualtax FLOAT AS BEGIN SELECT begin1,end1,deductedamount,pecentageextra FROM tax
14
by: jehugaleahsa | last post by:
Hello: I am working with Oracle .NET Stored Procedures. I would like to know how to return the results of a SELECT statement. I have tried returning a OracleRefCursor and a DataTable, but...
2
by: acw | last post by:
On a SQL Server 2000 db I would like to setup a stored procedure that accesses couple tables and runs the extended stored procedure xp..cmdshell. The goal is to grant users with limited privileges...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.