This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Install SQLserver Native Client fails on Windows 10 x64
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 28, 2016
07:53 AM
Install SQLserver Native Client fails on Windows 10 x64
Here what I install:
ftp://foxincloud.com/Screenshots/FiC/IS-redis.PNG
Here is what I get:
ftp://foxincloud.com/Screenshots/FiC/IS-SQLnativeClient.PNG
Any idea why?
Thanks,
ftp://foxincloud.com/Screenshots/FiC/IS-redis.PNG
Here is what I get:
ftp://foxincloud.com/Screenshots/FiC/IS-SQLnativeClient.PNG
Any idea why?
Thanks,
(8) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 28, 2016
02:27 PM
Do you include the SQL Server Native Client 11.0 driver in the ODBC Resources view? If so, remove it and rebuild your project to see if the error goes away. If you include the SQL Server Native Client 11.0 prerequisite in your project, you don't need to use the ODBC Resources view to install the driver.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 29, 2016
05:30 AM
Hi Hidenori,
Thanks for your care.
The driver issue is now fixed, I nowget the same error as described in https://community.flexerasoftware.com/showthread.php?203643-Can-t-connect-localdb
Unfortunately, the solutions proposed in that thread did not help ...
Here is what happens:
Here are my settings in the ISSQLDBMetaData table:
Thanks for your care.
The driver issue is now fixed, I nowget the same error as described in https://community.flexerasoftware.com/showthread.php?203643-Can-t-connect-localdb
Unfortunately, the solutions proposed in that thread did not help ...
Here is what happens:
Here are my settings in the ISSQLDBMetaData table:
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 29, 2016
05:34 AM
hidenori wrote:
Do you include the SQL Server Native Client 11.0 driver in the ODBC Resources view? If so, remove it and rebuild your project to see if the error goes away. If you include the SQL Server Native Client 11.0 prerequisite in your project, you don't need to use the ODBC Resources view to install the driver.
Hi Hidenori,
Thanks for your care.
The driver issue is now fixed, I nowget the same error as described in https://community.flexerasoftware.com/showthread.php?203643-Can-t-connect-localdb
Unfortunately, the solutions proposed in that thread did not help ...
Here is what happens:
Here are my settings in the ISSQLDBMetaData table:
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 29, 2016
05:35 AM
hidenori wrote:
Do you include the SQL Server Native Client 11.0 driver in the ODBC Resources view? If so, remove it and rebuild your project to see if the error goes away. If you include the SQL Server Native Client 11.0 prerequisite in your project, you don't need to use the ODBC Resources view to install the driver.
Hi Hidenori,
Thanks for your care.
The driver issue is now fixed, I nowget the same error as described in https://community.flexerasoftware.com/showthread.php?203643-Can-t-connect-localdb
Unfortunately, the solutions proposed in that thread did not help ...
Here is what happens:
Here are my settings in the ISSQLDBMetaData table:
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 02, 2016
01:06 PM
Make sure that the value of the AdoDriverName field is changed to the following value: "sqlncli11". Please check out this blog post for more information about the LocalDB support.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 03, 2016
02:31 AM
hidenori wrote:
Do you include the SQL Server Native Client 11.0 driver in the ODBC Resources view? If so, remove it and rebuild your project to see if the error goes away. If you include the SQL Server Native Client 11.0 prerequisite in your project, you don't need to use the ODBC Resources view to install the driver.
Hi Hidenori,
Thanks for your care.
The driver issue is now fixed, I nowget the same error as described in https://community.flexerasoftware.com/showthread.php?203643-Can-t-connect-localdb
Unfortunately, the solutions proposed in that thread did not help ...
Here is what happens:
Here are my settings in the ISSQLDBMetaData table:
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 12, 2016
03:03 PM
The AdoDriverName field of the ISSQLDBMetaData table in your project still specifies the original version of the SQL Server OLE DB provider, "sqloledb" which does not understand LocalDB connection strings: "Data Source=(localdb)\v11.0;Integrated Security=true.....". In order to enable connecting to LocalDB, you must change the value to use the SQL Server 2012 Native Client OLE DB provider, "sqlncli11", or a higher version.
The newer version of SQL Server Native Client OLE DB provider may not be installed on target systems. Therefore, you may want to use the Redistributables view to add the InstallShield prerequisite for the SQL Server Native Client to your installation in order to ensure that connecting to SQL Server works properly.
The newer version of SQL Server Native Client OLE DB provider may not be installed on target systems. Therefore, you may want to use the Redistributables view to add the InstallShield prerequisite for the SQL Server Native Client to your installation in order to ensure that connecting to SQL Server works properly.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 17, 2016
02:51 AM
hidenori wrote:
The AdoDriverName field of the ISSQLDBMetaData table in your project still specifies the original version of the SQL Server OLE DB provider, "sqloledb" which does not understand LocalDB connection strings: "Data Source=(localdb)\v11.0;Integrated Security=true.....". In order to enable connecting to LocalDB, you must change the value to use the SQL Server 2012 Native Client OLE DB provider, "sqlncli11", or a higher version.
I'm pretty sure I had changed that but I'll give it another chance
Thanks