473,399 Members | 3,603 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,399 software developers and data experts.

Please Help with Setup and OleDbDataReader

max
How do I install or make sure I have the correct Provider for
OleDbDataReader. On my development machine (XP Pro, SP2, VS.net 2k3)
everything works and I have the 'VFPOLEDB.1' provider available. How do I
a) make sure this provider is provided and installed in my setup package or
b) get the correct provider on the machine that the app is installed??

Thanks,

--
Max
ma*@m99c.com
Nov 21 '05 #1
4 1083
Max,

In my opinion are you talking about a part of the framework, as everything
else what is DotNet and referenced from the System or from the
Microsoft.VisualBasic namespace.

Cor

"max" <xa*******@isomedia.com>
How do I install or make sure I have the correct Provider for
OleDbDataReader. On my development machine (XP Pro, SP2, VS.net 2k3)
everything works and I have the 'VFPOLEDB.1' provider available. How do I
a) make sure this provider is provided and installed in my setup package
or b) get the correct provider on the machine that the app is installed??

Thanks,

--
Max
ma*@m99c.com

Nov 21 '05 #2
max
Thanks, I ask in the dotnet.datatools. As an aside the connection is
System.Data.OleDb.OleDbConnection and provider is part of the connection
string. Can you enumerate the 'Providers' that are available on a
particular machine, or as I was hoping, is there a way to install the
provider you need with the deployment.

Thanks for responding.
--
Max
ma*@m99c.com
"Cor Ligthert" <no************@planet.nl> wrote in message
news:O7*************@TK2MSFTNGP14.phx.gbl...
Max,

In my opinion are you talking about a part of the framework, as everything
else what is DotNet and referenced from the System or from the
Microsoft.VisualBasic namespace.

Cor

"max" <xa*******@isomedia.com>
How do I install or make sure I have the correct Provider for
OleDbDataReader. On my development machine (XP Pro, SP2, VS.net 2k3)
everything works and I have the 'VFPOLEDB.1' provider available. How do
I a) make sure this provider is provided and installed in my setup
package or b) get the correct provider on the machine that the app is
installed??

Thanks,

--
Max
ma*@m99c.com


Nov 21 '05 #3
Max,

When the framework is installed that would not be needed.

Cor
Thanks, I ask in the dotnet.datatools. As an aside the connection is
System.Data.OleDb.OleDbConnection and provider is part of the connection
string. Can you enumerate the 'Providers' that are available on a
particular machine, or as I was hoping, is there a way to install the
provider you need with the deployment.

Thanks for responding.
--
Max
ma*@m99c.com
"Cor Ligthert" <no************@planet.nl> wrote in message
news:O7*************@TK2MSFTNGP14.phx.gbl...
Max,

In my opinion are you talking about a part of the framework, as
everything else what is DotNet and referenced from the System or from the
Microsoft.VisualBasic namespace.

Cor

"max" <xa*******@isomedia.com>
How do I install or make sure I have the correct Provider for
OleDbDataReader. On my development machine (XP Pro, SP2, VS.net 2k3)
everything works and I have the 'VFPOLEDB.1' provider available. How do
I a) make sure this provider is provided and installed in my setup
package or b) get the correct provider on the machine that the app is
installed??

Thanks,

--
Max
ma*@m99c.com



Nov 21 '05 #4
max
So does that mean that all I have to do is to make sure that .Net is
installed prior to deploying my program?

Thanks again,
--max

--
Max
ma*@m99c.com
"Cor Ligthert" <no************@planet.nl> wrote in message
news:OZ**************@TK2MSFTNGP12.phx.gbl...
Max,

When the framework is installed that would not be needed.

Cor
Thanks, I ask in the dotnet.datatools. As an aside the connection is
System.Data.OleDb.OleDbConnection and provider is part of the connection
string. Can you enumerate the 'Providers' that are available on a
particular machine, or as I was hoping, is there a way to install the
provider you need with the deployment.

Thanks for responding.
--
Max
ma*@m99c.com
"Cor Ligthert" <no************@planet.nl> wrote in message
news:O7*************@TK2MSFTNGP14.phx.gbl...
Max,

In my opinion are you talking about a part of the framework, as
everything else what is DotNet and referenced from the System or from
the Microsoft.VisualBasic namespace.

Cor

"max" <xa*******@isomedia.com>

How do I install or make sure I have the correct Provider for
OleDbDataReader. On my development machine (XP Pro, SP2, VS.net 2k3)
everything works and I have the 'VFPOLEDB.1' provider available. How
do I a) make sure this provider is provided and installed in my setup
package or b) get the correct provider on the machine that the app is
installed??

Thanks,

--
Max
ma*@m99c.com



Nov 21 '05 #5

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

Similar topics

0
by: Steve1 via DotNetMonster.com | last post by:
Hi all, I''ve created an OleDbDataReader that will contain the number of records that the used SQL query will return. I'm then using a while loop to loop while the OleDBDataReader object has...
1
by: Keith | last post by:
Hi, if have this method in a cs file that connections to a database and returns a datareader to my web form. public OleDbDataReader GetDataReader(string theSQL) { theConn = new...
1
by: Steven K | last post by:
Hello, I am using the following code which works. My question is does the OleDbDataReader need to be closed and then re-executed for every control? Is there a more effecient way of doing this...
7
by: androoo | last post by:
Hi I am learing how to use the grid in asp.net. Im trying to replace the button columns with nice friendly images. So : <asp:ButtonColumn Text="Delete"...
2
by: john | last post by:
Hello, We have a tablet pc that is trying to sync data to our main sql server during the night but we keep getting a timeout issue. The tablet pc has an access database that contains about 5000...
1
by: Rob Richardson | last post by:
Greetings! I have a database created in MS Access that has some fields containing Currency data. Every time I try to use one of the OleDbDataReader's GetXXX() methods to read it, I get an...
3
by: Nexus | last post by:
I'm currently using .NET version 2003. I want to be able to retrieve records. How do I do so using the OleDbDataReader? Can I have some codes as an example?
1
by: Jerry Spence1 | last post by:
I have been doing the following is VB.Net 2003: Dim dr1 As OleDbDataReader .....Code here If Not dr1 Is Nothing Then
4
by: John | last post by:
Hi I have below code which is written using a datatable dt. What is the equivalent code using a OleDbDataReader? For j = 0 To dt.Rows.Count - 1 Dim dataArr(dt.Columns.Count) As String For i...
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: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
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...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.