1

I need to be able to run a query such as

SELECT * FROM atable WHERE MyFunc(afield) = "some text"

I've written MyFunc in a VB module but the query results in "Undefined function 'MyFunc' in expression." when executed from .NET

From what I've read so far, functions in Access VB modules aren't available in .NET due to security concerns. There isn't much information on the subject but this avenue seems like a daed end.

The other possibility is through the CREATE PROCEDURE statement which also has precious little documentation: http://msdn.microsoft.com/en-us/library/bb177892%28v=office.12%29.aspx

The following code does work and creates a query in Access:

CREATE PROCEDURE test AS SELECT * FROM atable

However I need more than just a simple select statement - I need several lines of VB code.

While experimenting with the CREATE PROCEDURE statement, I executed the following code:

CREATE PROCEDURE test AS

Which produced the error "Invalid SQL statement; expected 'DELETE', 'INSERT', 'PROCEDURE', 'SELECT', or 'UPDATE'."

This seems to indicate that there's a SQL 'PROCEDURE' statement, so then I tried

CREATE PROCEDURE TEST AS PROCEDURE

Which resulted in "Syntax error in PROCEDURE clause."

I can't find any information on the SQL 'PROCEDURE' statement - maybe I'm just reading the error message incorrectly and there's no such beast. I've spent some time experimenting with the statement but I can't get any further.

In response to the suggestions to add a field to store the value, I'll expand on my requirements:

I have two scenarios where I need this functionality.

In the first scenario, I needed to enable the user to search on the soundex of a field and since there's no soundex SQL function in Access I added a field to store the soundex value for every field in every table where the user wants to be able to search for a record that "soundes like" an entered value. I update the soundex value whenever the parent field value changes. It's a fair bit of overhead but I considered it necessary in this instance.

For the second scenario, I want to normalize the spacing of a space-concatenation of field values and optionally strip out user-defined characters. I can come very close to acheiving the desired value with a combination of TRIM and REPLACE functions. The value would only differ if three or more spaces appeared between words in the value of one of the fields (an unlikely scenario). It's hard to justify the overhead of an extra field on every field in every table where this functionality is needed. Unless I get specific feedback from users about the issue of extra spaces, I'll stick with the TRIM & REPLACE value.

My application is database agnostic (or just not very religious... I support 7). I wrote a UDF for each of the other 6 databases that does the space normalization and character stripping much more efficiently than the built-in database functions. It really annoys me that I can write the UDF in Access as a VB macro and use that macro within Access but I can't use it from .NET.

I do need to be able to index on the value, so pulling the entire column(s) into .NET and then performing my calculation won't work.

ic3b3rg
  • 14,629
  • 4
  • 30
  • 53
  • What does `MyFunc` actually do? If it's simple, it can probably be replaced with SQL functions that are available regardless of the interface used. – David-W-Fenton May 19 '11 at 15:36

4 Answers4

0

Why don't you want to create an additional field in your atable, which is atable.afieldX = MyFunc(atable.afield)? All what you need - to run UPDATE command once.

Nikiton
  • 268
  • 1
  • 7
  • Thanks for the suggestion... please see new info I added to my original post. – ic3b3rg May 14 '11 at 10:36
  • @ic3b3rg I fill your pain... Had the same filling years ago... You might want to look at Access 2010 (both) stored procedures and table triggers [link](http://stackoverflow.com/questions/3287545/how-do-i-make-a-stored-procedure-in-ms-access) – Nikiton May 14 '11 at 13:09
0

I think you are running into the ceiling of what Access can do (and trying to go beyond). Access really doesn't have the power to do really complex TSQL statements like you are attempting. However, there are a couple ways to accomplish what you are looking for.

First, if the results of MyFunc don't change often, you could create a function in a module that loops through each record in atable and runs your MyFunc against it. You could either store that data in the table itself (in a new column) or you could build an in-memory dataset that you use for whatever purposes you want.

The second way of doing this is to do the manipulation in .NET since it seems you have the ability to do so. Do the SELECT statement and pull out the data you want from Access (without trying to run MyFunc against it). Then run whatever logic you want against the data and either use it from there or put it back into the Access database.

IAmTimCorey
  • 16,412
  • 5
  • 39
  • 75
0

You should try to write a SQL Server function MyFunc. This way you will be able to run the same query in SQLserver and in Access.

A few usefull links for you so you can get started:

Sjuul Janssen
  • 1,772
  • 1
  • 14
  • 28
  • I have the function written in SQL Server (for my SQL Server clients) but my Access clients will not likely have SQL Server installed. – ic3b3rg May 16 '11 at 11:48
0

What version of JET (now called Ace) are you using?

I mean, it should come as no surprise that if you going to use some Access VBA code, then you need the VBA library and a copy of MS Access loaded and running.

However, in Access 2010, we now have table triggers and store procedures. These store procedures do NOT require VBA and in fact run at the engine level. I have a table trigger and soundex routine here that shows how this works:

http://www.kallal.ca/searchw/WebSoundex.htm

The above means if Access, or VB.net, or even FoxPro via odbc modifies a row, the table trigger code will fire and run and save the soundex value in a column for you. And this feature also works if you use the new web publishing feature in access 2010. So, while the above article is written from the point of view of using Access Web services (available in office 365 and SharePoint), the above soundex table trigger will also work in a stand a alone Access and JET (ACE) only application.

Albert D. Kallal
  • 42,205
  • 3
  • 34
  • 51
  • Thanks for the suggestion but the "stored procedure" will only update another field in the table. I am doing that through .NET. – ic3b3rg May 18 '11 at 17:04