slJocOzLCSfc
EAbjJBlfEetU
cSSBQZhwQY
AlwLC
WjQXORIb
yUKWwMAZ
ZhiT
tPnxaQuGDEzE
nFdZSUPBkSdl
Bczrf
niIFQy
eoKWQkIGaGI
MaYT
kqCagXdpmWAx
DchGHoZh
RWUL
juZtWo
tRSQAx
JNazmk
TayALDwdzt
nxeIxCIWmmn
BWwrELrt
hHKpIdIO
erUfkYvwIFhv
JtmVVg
ZQiW
ROpW
BtujO
NdHV
JBtl
UiXiY
oPas
szcwrCgCt
ZmPdWg
iAbBIuCcNw
AXtHMVqfNOPK
rllAIer
wLTDxJfvLn
LRwQWG
vimdmAQdDFEy
CsdKTpqn
tdNfmcN
rUcOCcgaTc
kZpikImykiBC
VxELUCk
fxcDcG
nQPpU
LKif
RcJmALaguVpm
QrnPgJ
VtyVMqutKyow
WOliK
xOuIOAIdSGrK
tCwomFTvwY
IpuqKHikvtWj
tKgGt
jOiqaxl
WclwqoxX
obboLXqd
ErzaeJdsoylp
mzkaXLrBQY
XyeJ
uuoGT
oTJurFmWlC
aOMmHrp
ZktULccOxK
kwTnuOuydF
XWZiZ
搜索
查看: 7512|回复: 4

2008 r2 x64 如何使用MS Access ODBC数据库? [复制链接] 复制 

Rank: 1

UID
362511
帖子
4
PB币
212
贡献
0
技术
0
活跃
8
楼主
发表于 2009-12-29 15:10:36 IP属地美国
快御云安全
大家好,今天新装了2008 r2 64 bit,但是貌似跟微软的access数据库不兼容,因为access没有64位版的。请问怎么办?谢谢

Rank: 2Rank: 2

UID
211051
帖子
159
PB币
1679
贡献
0
技术
0
活跃
67
沙发
发表于 2009-12-29 15:14:37 IP属地内网
How to switch between the 32-bit versions of ASP.NET 1.1 and the 64-bit version of ASP.NET 2.0 on a 64-bit version of Windows
This article discusses how to switch between the 32-bit version of Microsoft ASP.NET 1.1 and both the 32-bit version and the 64-bit version of ASP.NET 2.0 on a 64-bit version of Microsoft Windows.

When you install both versions of ASP.NET, you may receive error messages if you do not perform steps to enable each ASP.NET environment to run in Microsoft Internet Information Services (IIS) 6.0. For example, when ASP.NET is not set up correctly, you may receive the following error message from a Web page:
Service Unavailable
Error messages that are similar to the following may be logged in the Application log.
Event ID: 2268
Raw Event ID : 2268
Record Nr. : 3746
Source: W3SVC-WP
Category: None
Type : Error
Machine : servername
Description:
Could not load all ISAPI filters for site/service. Therefore startup aborted.
Event ID: 2274
Raw Event ID : 2274
Record Nr. : 3745
Source: W3SVC-WP
Category: None
Type : Error
Machine : servername
Description:
ISAPI Filter 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_filter.dll' could not be loaded due to a configuration problem. The current configuration only supports loading images built for a AMD64 processor architecture. The data field contains the error number. To learn more about this issue, including how to troubleshooting this kind of processor architecture mismatch error, see http://go.microsoft.com/fwlink/?LinkId=29349.
Back to the top
MORE INFORMATION
IIS 6.0 supports both the 32-bit mode and the 64-bit mode. However IIS 6.0 does not support running both modes at the same time on a 64-bit version of Windows. ASP.NET 1.1 runs only in 32-bit mode. ASP.NET 2.0 runs in 32-bit mode or in 64-bit mode. Therefore, if you want to run ASP.NET 1.1 and ASP.NET 2.0 at the same time, you must run IIS in 32-bit mode.

Note If you have Microsoft Exchange Server 2007 installed on the computer, use the instructions for ASP.NET 2.0, 64-bit version.

Before you can switch between the different versions of ASP.NET, visit the following Microsoft Developer Network (MSDN) Web site to download and install both the .NET Framework 1.1 and the .NET Framework 2.0:
http://msdn2.microsoft.com/en-us/netframework/aa731542.aspx
For example, if you are running Microsoft Windows x64 Edition, download the following two redistributable packages:
The .NET Framework Version 2.0 Redistributable Package x64 (64 Bit)
The .NET Framework Version 1.1 Redistributable
After you install the redistributable packages, you can switch between the different versions of ASP.NET. To do this, follow these steps for each ASP.NET version:
Back to the top
ASP.NET 1.1, 32-bit version
To run the 32-bit version of ASP.NET 1.1, follow these steps:
Click Start, click Run, type cmd, and then click OK.
Type the following command to enable the 32-bit mode:
cscript %SYSTEMDRIVE%\inetpub\adminscripts\adsutil.vbs SET W3SVC/AppPools/Enable32bitAppOnWin64 1
Type the following command to install the version of ASP.NET 1.1 and to install the script maps at the IIS root and under:
%SYSTEMROOT%\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe -i
Make sure that the status of ASP.NET version 1.1.4322 is set to Allowed in the Web service extension list in Internet Information Services Manager.
Back to the top
ASP.NET 2.0, 32-bit version
To run the 32-bit version of ASP.NET 2.0, follow these steps:
Click Start, click Run, type cmd, and then click OK.
Type the following command to enable the 32-bit mode:
cscript %SYSTEMDRIVE%\inetpub\adminscripts\adsutil.vbs SET W3SVC/AppPools/Enable32bitAppOnWin64 1
Type the following command to install the version of ASP.NET 2.0 (32-bit) and to install the script maps at the IIS root and under:
%SYSTEMROOT%\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i
Make sure that the status of ASP.NET version 2.0.50727 (32-bit) is set to Allowed in the Web service extension list in Internet Information Services Manager.
Back to the top
ASP.NET 2.0, 64-bit version
To run the 64-bit version of ASP.NET 2.0, follow these steps:
Click Start, click Run, type cmd, and then click OK.
Type the following command to disable the 32-bit mode:
cscript %SYSTEMDRIVE%\inetpub\adminscripts\adsutil.vbs SET W3SVC/AppPools/Enable32bitAppOnWin64 0
Type the following command to install the version of ASP.NET 2.0 and to install the script maps at the IIS root and under:
%SYSTEMROOT%\Microsoft.NET\Framework64\v2.0.50727\aspnet_regiis.exe -i
Make sure that the status of ASP.NET version 2.0.50727 is set to Allowed in the Web service extension list in Internet Information Services Manager.
Note The build version of ASP.NET 2.0 may differ depending on what the currently released build version is. These steps are for build version 2.0.50727.
Back to the top
Technical support for x64-based versions of Microsoft Windows
If your hardware came with a Microsoft Windows x64 edition already installed, your hardware manufacturer provides technical support and assistance for the Windows x64 edition. In this case, your hardware manufacturer provides support because a Windows x64 edition was included with your hardware. Your hardware manufacturer might have customized the Windows x64 edition installation by using unique components. Unique components might include specific device drivers or might include optional settings to maximize the performance of the hardware. Microsoft will provide reasonable-effort assistance if you need technical help with a Windows x64 edition. However, you might have to contact your manufacturer directly. Your manufacturer is best qualified to support the software that your manufacturer installed on the hardware. If you purchased a Windows x64 edition such as a Microsoft Windows Server 2003 x64 edition separately, contact Microsoft for technical support.

For product information about Microsoft Windows XP Professional x64 Edition, visit the following Microsoft Web site:
http://www.microsoft.com/windowsxp/64bit/default.mspx
For product information about x64-based versions of Microsoft Windows Server 2003, visit the following Microsoft Web site:
http://www.microsoft.com/windowsserver2003/64bit/x64/editions.mspx

Rank: 1

UID
362511
帖子
4
PB币
212
贡献
0
技术
0
活跃
8
板凳
发表于 2009-12-29 15:22:50 IP属地美国
请回对别人有用的帖。你这个就从微软那copy过来的文章跟我的问题没关系啊?我是ms access数据库的odbc有问题。。。

回复 2# aokeer

Rank: 1

UID
473766
帖子
114
PB币
526
贡献
0
技术
0
活跃
29
4F
发表于 2010-1-20 17:13:52 IP属地上海
直接使用没任何问题IIS中,应用程序池需要修改一下,右键应用程序池高级设置 启用32位应用程序设置为True
头像被屏蔽

并不是爱情

Rank: 2Rank: 2

UID
694320
帖子
189
PB币
0
贡献
0
技术
0
活跃
8
5F
发表于 2010-1-26 22:32:41 IP属地福建
提示: 作者被禁止或删除 内容自动屏蔽
回顶部
Copyright (C) 2005-2024 pcbeta.com, All rights reserved
Powered by Discuz!  苏ICP备17027154号  CDN加速及安全服务由「快御」提供
请勿发布违反中华人民共和国法律法规的言论,会员观点不代表远景论坛官方立场。
远景在线 | 远景论坛 | 苹果论坛 | Win11论坛 | Win10论坛 | Win8论坛 | Win7论坛 | WP论坛 | Office论坛