11-14-2024 11:06 AM
Hi all!
I'm very new to labview and i'm trying to handle multiple clusters with different value types, writing them using the insert data VI into my database table this way:
Jojoee_1-1731603818660.png
But i'm missing something because i'm getting this error
Jojoee_0-1731603713782.png
i'm sure the number of columns and parameters are correct because before this FOR loop i had separate subVI insert data for each bundle but i wanted to simplified the architecture for more inputs.
Can you guys help me?
Thank you so much
Solved! Go to Solution.
11-14-2024 11:43 AM
You might need to change your column names. Some of those may be reserved keywords.
11-14-2024 05:56 PM
Look really close at your data. You're not passing in a cluster of 3 elements, you're passing in a cluster of 1 element containing a cluster of 3 elements:
Kyle97330_1-1731628526175.png
Replace the "build cluster array" node with just a "build array" instead, and that should do it.
11-15-2024 02:29 AM
That was it! I thought the cluster array was the uculprit but i didn't know how to fix it.
Thanks a lot!