11-01-2015 06:09 PM
11-01-2015 06:17 PM
Hello thanks for your comment and i will do as you suggested, also the data will be about the same for each as it is being sampled as in the picture i have attached. I expect the numbers to look like that in the database.
11-01-2015 06:17 PM
11-01-2015 06:20 PM
Yes thanks and as my friend mentioned above the values will be the same and should look like this. I will watch the videos
11-02-2015 02:29 AM
_About_ the same isn't the same as _Repeated_. From the picture you'll send the last read value to be written several times in the database, that's probably not what you planned. Dataflow. 😉
SQL Express is a good suggestion mentioned earlier, the small differences between Access and MS SQL syntax wont bite you that way.
I assume you want DB Insert, not Update, you dont want to overwrite old values, do you? If you only want the last run in the table you can do a Delete * from [table] before inserting.
As suggested, make a small test vi which only writes some constants to the database to make sure that part is working first.
/Y
11-06-2015 03:27 PM
hey dennis thanks for your help i was able to successfully get the data to mysql database, you can see how i set up my code using code snippet as you asked. I also had one more question how would i send values back to my microcontroller to display on the lcd of my microcontroller, is there some special visa i need to use or what, as you see i want to send the frequncy and rms voltage back to the lcd on my micro.
11-06-2015 03:48 PM
11-06-2015 03:52 PM
yes i get that but to send the frequency, voltage and so on, i know i would need to convert to string but to send each to display on lcd would i use a cluster again or how would i tie each to the visa write. and the visa write would be located outside consumer look correct???
11-06-2015 03:54 PM
thanks for asking my comment steven lol
11-06-2015 04:04 PM
anyways dennis
i get it up to the micro code and i know i would need to convert to string but how would i send the data to the visa write, so the micro can display freq. and voltage. like how would i wire the two differnt reading for the lcd to the visa write. and would visa write be outside consumer loop.