473,782 Members | 2,423 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

there is no 64-bit Jet (MS Access) OLEDB driver.

Since there is no 64-bit Jet (MS Access) OLEDB driver, what is the
recommended solution for this delimma.

Our application uses SQL Server as the daatabase engine, but we have
about 5 meg of static data stored in an Access database. We chose that
because it is easy to read, and can be password protected.

Since Microsoft doesn't have a 64-bit OLD to Access, the application has
to be set to run in 100% 32-bit mode to get it to run. This defeats the
purpose of having a 64-bit OS.

What are my options here?
Thanks.

Darin

*** Sent via Developersdex http://www.developersdex.com ***
Apr 29 '07
23 4073
From your SQL computer you can make it by

writeXML(mypath )

Cor

"Darin" <darin_nospam@n ospameverschree f in bericht
news:eK******** *****@TK2MSFTNG P06.phx.gbl...
My front-end is VB.NET, not access. The access MDB only contains all the
SQL text for views, stored procedures, etc.

I can look at an XML file, I haven't worked with any yet. I know from
reading the XML don't load real fast, but this file wouldn't be read all
the time, only when an update is done.
Darin

*** Sent via Developersdex http://www.developersdex.com ***

Apr 30 '07 #11
Darin,

your 'static' dataset is only read once - when an update is done. So, once
the user updates the application, you mdb is not going to accessed or used
again until the next update? Or is it read each time the user STARTS the
application ? I am a bit confussed here?

If the first ... read only once after the update ... why not use the xml
file approach. Speed will be an issue, but if it is a part of the update
process, the user can probably live with it - especially if there is a
noticable performance gain from utilizing the 64 bytes OS. However, if you
are pushing out updates every 4 hours, the user may become a little annoyed.

I would suggest that you test the 'speed' of loading an xml file specfic to
you needs. Many people over-use xml files and try to use them as a
'database' and expect the same results / speed they get from a database. Is
you Static database hugely relational or is it a few 'independant' tables
with a lot of rows in each? This will impact the speed of reading the xml
file.

If the second situation - read everytime the application is fired up, you
will have to either live with the deficiency with the Access OLEDB driver,
or you will need to test the loading of the XML and come up with a design
approach that offsets the performance / restrictions of running your
application in 100% 32-bit mode.

Jeff.

PS: I would suggest developing a process that utilizes sql db on the client
and issue a SQL file to be loaded with each update.


"Darin" <darin_nospam@n ospameverwrote in message
news:eK******** *****@TK2MSFTNG P06.phx.gbl...
My front-end is VB.NET, not access. The access MDB only contains all the
SQL text for views, stored procedures, etc.

I can look at an XML file, I haven't worked with any yet. I know from
reading the XML don't load real fast, but this file wouldn't be read all
the time, only when an update is done.
Darin

*** Sent via Developersdex http://www.developersdex.com ***

Apr 30 '07 #12
Right now, I am changing it so the MDB is only accessed once, at an
update when needed to be done.

I need to figure out how to create the XML for it.

Darin

*** Sent via Developersdex http://www.developersdex.com ***
Apr 30 '07 #13
On Sun, 29 Apr 2007 07:02:38 -0700, Darin <darin_nospam@n ospameverwrote:

¤ Since there is no 64-bit Jet (MS Access) OLEDB driver, what is the
¤ recommended solution for this delimma.
¤
¤ Our application uses SQL Server as the daatabase engine, but we have
¤ about 5 meg of static data stored in an Access database. We chose that
¤ because it is easy to read, and can be password protected.
¤
¤ Since Microsoft doesn't have a 64-bit OLD to Access, the application has
¤ to be set to run in 100% 32-bit mode to get it to run. This defeats the
¤ purpose of having a 64-bit OS.
¤
¤ What are my options here?

Quite limited I'm afraid. Unless Microsoft changes their mind and develops a 64-bit provider for
Access you will have to go with a 64-bit database alternative.
Paul
~~~~
Microsoft MVP (Visual Basic)
Apr 30 '07 #14
I will do an XML, but I have NO experience w/ them.

My table is application, type, name, sql text, with the key being
application, type, and name.

How would I setup the XML to have those keys so I can find what I need,
or is that possible?

Darin

*** Sent via Developersdex http://www.developersdex.com ***
Apr 30 '07 #15
Please tell me you're not using the "default" database in SQL. You can have
multiple databases in SQL Server - put your static in a named database. It
will have its own files that can be replaced as needed.

Mike.

"Darin" <darin_nospam@n ospameverwrote in message
news:uc******** *****@TK2MSFTNG P05.phx.gbl...
Ok, except that if it is in the SQL database, then when we install an
update on their system something needs to write new static data to the
SQL db, that was the purpose of Access - we can supply the MDB and it
never changes.

Our MDB has the menu (old access switchboard-type logic), and all of the
SQL definations for view, stored procedures, functions, etc.

Darin

*** Sent via Developersdex http://www.developersdex.com ***

Apr 30 '07 #16
Darin,

If you are using SQL Server 2005 can you deliver your static data as an MDF
file, in the same way that you currently deliver that data in an Access MDB
file?

Kerry Moorman
"Darin" wrote:
I will do an XML, but I have NO experience w/ them.

My table is application, type, name, sql text, with the key being
application, type, and name.

How would I setup the XML to have those keys so I can find what I need,
or is that possible?

Darin

*** Sent via Developersdex http://www.developersdex.com ***
Apr 30 '07 #17
Yes, but I would need to first delete the database, then attach the MDF
- right?

Darin

*** Sent via Developersdex http://www.developersdex.com ***
Apr 30 '07 #18
for the record-- every SQL Server database that _I_ work on?

I call it SQLDB_20070425

and then the next day U call it SQLDB_20070426

then.. when you need to deploy a new version it's easy to keep track
of.


On Apr 30, 1:01 pm, Darin <darin_nospam@n ospameverwrote:
Yes, but I would need to first delete the database, then attach the MDF
- right?

Darin

*** Sent via Developersdexht tp://www.developersd ex.com***

Apr 30 '07 #19
If you're using Access 2003, you can use File/Export to create XML files
from your tables.
Vayse
"Darin" <darin_nospam@n ospameverwrote in message
news:uN******** ******@TK2MSFTN GP05.phx.gbl...
Right now, I am changing it so the MDB is only accessed once, at an
update when needed to be done.

I need to figure out how to create the XML for it.

Darin

*** Sent via Developersdex http://www.developersdex.com ***

May 1 '07 #20

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

Similar topics

2
4957
by: Juxta | last post by:
Please could someone help. I am using the Oracle OLEDB driver for a multithreadded VC++ app, useing CComand and the DynamicAccessor (fixed version) and i am crashing on the open when more than one thread is being used to create CComand`s. The crash happens deep in the internals of the ORAOLEDB driver. I even sequentualised all CComand access using critcal sections but it still happends. I guess this is an obscure area that nobody else...
1
3113
by: Satish Itty | last post by:
I know this is more a Saleslogix issue than and .NET one. I thought I'll try my luck here. I'm trying to access Saleslogix database using SLXOLEDB driver in my .NET application. This seems to work fine when I have the whole Saleslogix client app installed on my computer. But when I have only the Saleslogix OLEDB Driver I get an invalid case exception when I try to open a connection. Here is the code snippet. mConnString =...
3
1323
by: m.posseth | last post by:
To all ,,, with VS.Net 2005 you can not access a Access database when this runs on a 64 bit system ( when compiled in CPU type anny or X64 ) i feel that MS should include a 64 bit Oledb driver , maybe if a lot of us complain about this missing driver we encourage them to create one http://lab.msdn.microsoft.com/productfeedback/
0
4576
by: sheebahezi | last post by:
Hi , I'm using AS400 server in a project. When i try to set the connection for an ODBC Driver it gives an error mesage( The setup routines for the iseries Access ODBC Driver could not be found.Please reinstall the driver) how doi proceed with.Pls help
4
1816
by: Jeff | last post by:
I need to export MySQL data to Access. As always, there seems to be more than one way to do this. I notice that PHP has: DB.php If I was doing this in perl, there would be an ODBC driver (DBD::ODBC). Is there such a thing in PHP? Can this play well with DBO? I see some commercial driver products, but my needs are modest as I'm
1
1242
by: BobLewiston | last post by:
I'm working through the lessons at Programmer’s Heaven's "C# School" tutorial (http://www.programmersheaven.com/2/Les_CSharp_0), and I'm currently on lesson 13, "Data Access in .Net using ADO.Net", so of course I've been trying to connect to Programmer’s Heaven's SQL and MS Access / OleDb databases. Unfortunately, they're now offline. Can anyone please tell me; are there other such databases available for those learning ADO to practice...
0
9643
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10313
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10147
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9946
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6735
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5378
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3643
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2875
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 can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.