473,513 Members | 2,749 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Run a query in Access db

Jim
I'm a vb.net newbie.

I have an query that is entirely within an Access database. It's a
simple update query - "usp_Append_tbl_RefNos". It works in Access,

How can I run that query from a vb .net program? I have an vb app that
does update another Access table using a stored procedure but it updates
fields with info from a file.

I've tried the code below and I get an error on the ExecuteNonQuery() -
"ODBC - connection to 'XYZ' failed". But I never reference "XYZ" server
anywhere in my program.
================================================== ================
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Dim RowsAffected As Integer
Dim AConnect As String = _
"Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\ABC.mdb;"
Dim AccessConnection As New OleDbConnection(AConnect)

Dim AccessCommand As New OleDbCommand
AccessCommand.CommandText = "usp_Append_tbl_RefNos"
AccessCommand.CommandType = CommandType.StoredProcedure
AccessCommand.Connection = AccessConnection
'Dim AccessDataAdapter As New OleDbDataAdapter(AccessCommand)
AccessConnection.Open()

RowsAffected = AccessCommand.ExecuteNonQuery()

AccessConnection.Close()
AccessConnection = Nothing
AccessCommand.Dispose()
AccessCommand = Nothing

End Sub

TIA,

Jim
Jun 13 '07 #1
5 4952
Jim
The problem was that there was a reference to XYZ server in the query in
Access. I can run the query if I make that table local.

Now the problem becomes, how do I setup the connections so that Access
database (below Aconnect) will be able to run the query referencing
another database?

Jim wrote:
I'm a vb.net newbie.

I have an query that is entirely within an Access database. It's a
simple update query - "usp_Append_tbl_RefNos". It works in Access,

How can I run that query from a vb .net program? I have an vb app that
does update another Access table using a stored procedure but it updates
fields with info from a file.

I've tried the code below and I get an error on the ExecuteNonQuery() -
"ODBC - connection to 'XYZ' failed". But I never reference "XYZ" server
anywhere in my program.
================================================== ================
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Dim RowsAffected As Integer
Dim AConnect As String = _
"Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\ABC.mdb;"
Dim AccessConnection As New OleDbConnection(AConnect)

Dim AccessCommand As New OleDbCommand
AccessCommand.CommandText = "usp_Append_tbl_RefNos"
AccessCommand.CommandType = CommandType.StoredProcedure
AccessCommand.Connection = AccessConnection
'Dim AccessDataAdapter As New OleDbDataAdapter(AccessCommand)
AccessConnection.Open()

RowsAffected = AccessCommand.ExecuteNonQuery()

AccessConnection.Close()
AccessConnection = Nothing
AccessCommand.Dispose()
AccessCommand = Nothing

End Sub

TIA,

Jim
Jun 14 '07 #2
On Thu, 14 Jun 2007 09:16:48 -0400, Jim <jo********@RemoveThisStuffNetscape.netwrote:

¤ The problem was that there was a reference to XYZ server in the query in
¤ Access. I can run the query if I make that table local.
¤
¤ Now the problem becomes, how do I setup the connections so that Access
¤ database (below Aconnect) will be able to run the query referencing
¤ another database?

You probably need to include the user ID and password in the connection string (or table link) to
the other database. What kind of database are you working with?

Could you post the query?
Paul
~~~~
Microsoft MVP (Visual Basic)
Jun 15 '07 #3
Jim
Paul Clement wrote:
On Thu, 14 Jun 2007 09:16:48 -0400, Jim <jo********@RemoveThisStuffNetscape.netwrote:

¤ The problem was that there was a reference to XYZ server in the query in
¤ Access. I can run the query if I make that table local.
¤
¤ Now the problem becomes, how do I setup the connections so that Access
¤ database (below Aconnect) will be able to run the query referencing
¤ another database?

You probably need to include the user ID and password in the connection string (or table link) to
the other database. What kind of database are you working with?

Could you post the query?
Paul
~~~~
Microsoft MVP (Visual Basic)

The below query, which resides on my Access(2003) db, references a local
table (tbl_X12) and a Linked MS SQL database on another server
(dbo_THG_KEYV_KEY_VALUES).

My question is, how do I "log on" to the SQL server in my VB program?

================================================== ======
usp_Update_tbl_ClaimNo query in Access database:

SELECT tbl_X12.ClaimNo, dbo_THG_KEYV_KEY_VALUES.ELEN_ID,
dbo_THG_KEYV_KEY_VALUES.KEYV_VALUE
FROM tbl_X12 INNER JOIN dbo_THG_KEYV_KEY_VALUES ON tbl_X12.Gwid =
dbo_THG_KEYV_KEY_VALUES.DOCS_ID
WHERE (((tbl_X12.ClaimNo) Is Null) AND
((dbo_THG_KEYV_KEY_VALUES.ELEN_ID)=418)) OR (((tbl_X12.ClaimNo) Is Null)
AND ((dbo_THG_KEYV_KEY_VALUES.ELEN_ID)=468)) OR (((tbl_X12.ClaimNo) Is
Null) AND ((dbo_THG_KEYV_KEY_VALUES.ELEN_ID)=518));
================================================== =======
VB .Net program:

' this works if all tables in the usp_Update_tbl_THG_ClaimNo are local.
' the problem is one table is on an MS SQL server db
' as of today 6/14/7 09:22 I don't know how to reference it in the
below commands

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Dim RowsAffected As Integer
Dim AConnect As String = _
"Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\837.mdb;"
Dim AccessConnection As New OleDbConnection(AConnect)

Dim AccessCommand As New OleDbCommand
AccessCommand.CommandText = "usp_Update_tbl_ClaimNo"
AccessCommand.CommandType = CommandType.StoredProcedure
AccessCommand.Connection = AccessConnection
'Dim AccessDataAdapter As New OleDbDataAdapter(AccessCommand)
AccessConnection.Open()

RowsAffected = AccessCommand.ExecuteNonQuery()

AccessConnection.Close()
AccessConnection = Nothing
AccessCommand.Dispose()
AccessCommand = Nothing

End Sub
================================================== =======
Thanks in advance.

Jim
Jun 15 '07 #4
On Fri, 15 Jun 2007 11:17:02 -0400, Jim <jo********@RemoveThisStuffNetscape.netwrote:

¤ The below query, which resides on my Access(2003) db, references a local
¤ table (tbl_X12) and a Linked MS SQL database on another server
¤ (dbo_THG_KEYV_KEY_VALUES).
¤
¤ My question is, how do I "log on" to the SQL server in my VB program?
¤
¤ ================================================== ======
¤ usp_Update_tbl_ClaimNo query in Access database:
¤
¤ SELECT tbl_X12.ClaimNo, dbo_THG_KEYV_KEY_VALUES.ELEN_ID,
¤ dbo_THG_KEYV_KEY_VALUES.KEYV_VALUE
¤ FROM tbl_X12 INNER JOIN dbo_THG_KEYV_KEY_VALUES ON tbl_X12.Gwid =
¤ dbo_THG_KEYV_KEY_VALUES.DOCS_ID
¤ WHERE (((tbl_X12.ClaimNo) Is Null) AND
¤ ((dbo_THG_KEYV_KEY_VALUES.ELEN_ID)=418)) OR (((tbl_X12.ClaimNo) Is Null)
¤ AND ((dbo_THG_KEYV_KEY_VALUES.ELEN_ID)=468)) OR (((tbl_X12.ClaimNo) Is
¤ Null) AND ((dbo_THG_KEYV_KEY_VALUES.ELEN_ID)=518));
¤ ================================================== =======
¤ VB .Net program:
¤
¤ ' this works if all tables in the usp_Update_tbl_THG_ClaimNo are local.
¤ ' the problem is one table is on an MS SQL server db
¤ ' as of today 6/14/7 09:22 I don't know how to reference it in the
¤ below commands
¤
¤ Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
¤ System.EventArgs) Handles Button1.Click
¤ Dim RowsAffected As Integer
¤ Dim AConnect As String = _
¤ "Provider=Microsoft.Jet.OLEDB.4.0;" & _
¤ "Data Source=C:\837.mdb;"
¤ Dim AccessConnection As New OleDbConnection(AConnect)
¤
¤ Dim AccessCommand As New OleDbCommand
¤ AccessCommand.CommandText = "usp_Update_tbl_ClaimNo"
¤ AccessCommand.CommandType = CommandType.StoredProcedure
¤ AccessCommand.Connection = AccessConnection
¤ 'Dim AccessDataAdapter As New OleDbDataAdapter(AccessCommand)
¤ AccessConnection.Open()
¤
¤ RowsAffected = AccessCommand.ExecuteNonQuery()
¤
¤ AccessConnection.Close()
¤ AccessConnection = Nothing
¤ AccessCommand.Dispose()
¤ AccessCommand = Nothing
¤
¤ End Sub
¤ ================================================== =======
¤ Thanks in advance.
You would probably need to reference the table directly by specifying the connection string
information:

[ODBC;Driver={SQL Server};Server=(local);Database=Northwind;Trusted_ Connection=yes].[Table1]

Of course if you're not using a trusted connection you would replace this information with the user
ID and password.
Paul
~~~~
Microsoft MVP (Visual Basic)
Jun 21 '07 #5
Jim
Paul Clement wrote:
On Fri, 15 Jun 2007 11:17:02 -0400, Jim <jo********@RemoveThisStuffNetscape.netwrote:

¤ The below query, which resides on my Access(2003) db, references a local
¤ table (tbl_X12) and a Linked MS SQL database on another server
¤ (dbo_THG_KEYV_KEY_VALUES).
¤
¤ My question is, how do I "log on" to the SQL server in my VB program?
¤
¤ ================================================== ======
¤ usp_Update_tbl_ClaimNo query in Access database:
¤
¤ SELECT tbl_X12.ClaimNo, dbo_THG_KEYV_KEY_VALUES.ELEN_ID,
¤ dbo_THG_KEYV_KEY_VALUES.KEYV_VALUE
¤ FROM tbl_X12 INNER JOIN dbo_THG_KEYV_KEY_VALUES ON tbl_X12.Gwid =
¤ dbo_THG_KEYV_KEY_VALUES.DOCS_ID
¤ WHERE (((tbl_X12.ClaimNo) Is Null) AND
¤ ((dbo_THG_KEYV_KEY_VALUES.ELEN_ID)=418)) OR (((tbl_X12.ClaimNo) Is Null)
¤ AND ((dbo_THG_KEYV_KEY_VALUES.ELEN_ID)=468)) OR (((tbl_X12.ClaimNo) Is
¤ Null) AND ((dbo_THG_KEYV_KEY_VALUES.ELEN_ID)=518));
¤ ================================================== =======
¤ VB .Net program:
¤
¤ ' this works if all tables in the usp_Update_tbl_THG_ClaimNo are local.
¤ ' the problem is one table is on an MS SQL server db
¤ ' as of today 6/14/7 09:22 I don't know how to reference it in the
¤ below commands
¤
¤ Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
¤ System.EventArgs) Handles Button1.Click
¤ Dim RowsAffected As Integer
¤ Dim AConnect As String = _
¤ "Provider=Microsoft.Jet.OLEDB.4.0;" & _
¤ "Data Source=C:\837.mdb;"
¤ Dim AccessConnection As New OleDbConnection(AConnect)
¤
¤ Dim AccessCommand As New OleDbCommand
¤ AccessCommand.CommandText = "usp_Update_tbl_ClaimNo"
¤ AccessCommand.CommandType = CommandType.StoredProcedure
¤ AccessCommand.Connection = AccessConnection
¤ 'Dim AccessDataAdapter As New OleDbDataAdapter(AccessCommand)
¤ AccessConnection.Open()
¤
¤ RowsAffected = AccessCommand.ExecuteNonQuery()
¤
¤ AccessConnection.Close()
¤ AccessConnection = Nothing
¤ AccessCommand.Dispose()
¤ AccessCommand = Nothing
¤
¤ End Sub
¤ ================================================== =======
¤ Thanks in advance.
You would probably need to reference the table directly by specifying the connection string
information:

[ODBC;Driver={SQL Server};Server=(local);Database=Northwind;Trusted_ Connection=yes].[Table1]

Of course if you're not using a trusted connection you would replace this information with the user
ID and password.
Paul
~~~~
Microsoft MVP (Visual Basic)

I THINK I understand... but No, I don't...

I have this connection string to my Access database
Dim AConnect As String = _
"Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\837.mdb;"

How do I How do I integrate your suggestion into that?

Jim
Jun 25 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
23596
by: Robert | last post by:
I am having performance issues on a SQL query in Access. My query is accessing and joining several tables (one very large one). The tables are linked ODBC. The client submits the query to the...
8
6430
by: Adam Louis | last post by:
I would like help resolving this problem. I'm a novice who's been hired to query a hospital database and extract useful information, available to me only in a dynamically generated, downloadable...
12
2290
by: Joe Stanton | last post by:
Hello Group I have a query that works in Oracle and SQL Server, but fails in Microsoft Access. The query is: SELECT data fromTABLE1 WHERE data>='A&' AND data<'A''' Here is my sample data:
6
4816
by: jjturon | last post by:
Can anyone help me?? I am trying to pass a Select Query variable to a table using Dlookup and return the value to same select query but to another field. Ex. SalesManID ...
22
31148
by: Stan | last post by:
I am working with Access 2003 on a computer running XP. I am new at using Access. I have a Db with a date field stored as mm/dd/yyyy. I need a Query that will prompt for the month, ie. 6 for...
11
16282
by: funky | last post by:
hello, I've got a big problem ad i'm not able to resolve it. We have a server running oracle 10g version 10.1.0. We usually use access as front end and connect database tables for data extraction....
3
7747
by: mnjkahn via AccessMonster.com | last post by:
I'm running Access 2003, modifying a query that has over 45 fields. When I right click on the field name in Query Design View, and then click Build, Access crashes before the Build window...
6
4373
by: jsacrey | last post by:
Hey everybody, got a secnario for ya that I need a bit of help with. Access 97 using linked tables from an SQL Server 2000 machine. I've created a simple query using two tables joined by one...
2
9820
by: existential.philosophy | last post by:
This is a new problem for me: I have some queries that open very slowly in design view. My benchmark query takes about 20 minutes to open in design view. That same query takes about 20 minutes...
9
3614
by: Sinner | last post by:
Hi, I have a field name 'USER' in tableMAIN. How do I replace the user names with corresponding user names. I can do that in xl using vlookup but now I'm trying to find a way to do that in...
0
7259
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
7158
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
7535
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
7523
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...
0
4745
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3232
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3221
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1592
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
455
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.