01-17-2014 02:55 PM
When fetching data from a MySQL table using a simple SQL query "select * from" all of the data is returned properly except for the ID column. The ID column is a primary key set to auto incremental, bigint type.
Labview returns no values. Is there some limitation. Thanks.
LV2012, MySQL 5.2
01-20-2014 02:30 AM
If you're using VIs from the Database palette in Connectivity, you should return variant data from the database. For a column whose datatype is bigint, Variant to Data wired with a numeric constant set to I64 should work.
01-20-2014 08:39 AM
Thanks. That works.