07-26-2015 11:34 PM
3 versions of LabVIEW Database Connectivity Toolkit can be found on NI website:
-LabVIEW Database Connectivity Toolkit
-LabVIEW Database Connectivity Toolkit 2013
-LabVIEW Database Connectivity Toolkit 2014
According to NI, 2013 version work with labVIEW 2013, 2014 version work with labVIEW 2014. What about version of LabVIEW database Connectivity Toolkit. Does it work with all labVEW version.
I am using LabVIEW 2013. if I buy LabVIEW Database Connectivity Toolkit 2013, do I need to buy LabVIEW Database Connectivity Toolkit 2014 after I upgrade labVIEW from 2013 to 2014?
Thanks
07-27-2015 12:12 AM
07-27-2015 06:53 AM
If you want to use the toolkit, you want to buy the current version. That license will allow you to use older versions. But you will want to download the 2013 version to use with your LabVIEW 2013.
07-27-2015 02:01 PM
hi, mikeporter
Your driver works well. However it seems it works well only with simple query, like select * from table. If I add criterial to the query, like select * from table where (((table.sn)="111111")), the following error showe up:
Error -2147217904 occurred at Exception occured in Microsoft OLE DB Provider for ODBC Drivers: [Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 1. in ADO Database Drivers.lvlib:Open Recordset+.vi->ADO Database Drivers.lvlib:Create and Read Recordset.vi->Untitled 1
This error code is undefined. Undefined errors might occur for a number of reasons. For example, no one has provided a description for the code, or you might have wired a number that is not an error code to the error code input.
Additionally, undefined error codes might occur because the error relates to a third-party object, such as the operating system or ActiveX. For these third-party errors, you might be able to obtain a description of the error by searching the Web for the error code (-2147217904) or for its hexadecimal representation (0x80040E10).
Chen
07-27-2015 02:13 PM
07-27-2015 02:45 PM
Hi, Mike,
Great. It works after change to single quotes. The reason I use double quotes is that I just copy the query form MS access. Access use double quote in query.
Thank you very much.
Chen