This website uses cookies. By browsing this website, you consent to the use of cookies. Learn more.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
- Flexera Software Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: Install SQLserver Native Client fails on Windo...
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
FoxInCloud
Active participant
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- 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
hidenori
Pilgrim
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
Apr 28, 2016
02:27 PM
Re: Install SQLserver Native Client fails on Windows 10 x64
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.
FoxInCloud
Active participant
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
Apr 29, 2016
05:30 AM
Re: Install SQLserver Native Client fails on Windows 10 x64
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:
Highlighted
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:
FoxInCloud
Active participant
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
Apr 29, 2016
05:34 AM
Re: Install SQLserver Native Client fails on Windows 10 x64
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:
FoxInCloud
Active participant
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
Apr 29, 2016
05:35 AM
Error 27502
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:
hidenori
Pilgrim
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
May 02, 2016
01:06 PM
Re: Install SQLserver Native Client fails on Windows 10 x64
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.
FoxInCloud
Active participant
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
May 03, 2016
02:31 AM
Re: Install SQLserver Native Client fails on Windows 10 x64
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:
hidenori
Pilgrim
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
May 12, 2016
03:03 PM
Re: Install SQLserver Native Client fails on Windows 10 x64
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.
FoxInCloud
Active participant
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
May 17, 2016
02:51 AM
Re: Install SQLserver Native Client fails on Windows 10 x64
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