[LabVIEW] Connect LabVIEW to MySQL using XAMMP

preview_player
Показать описание
Simplest Way to Connect LabVIEW to MySQL using XAMPP with lessons and code on adding data from LabVIEW to MySQL.

Рекомендации по теме
Комментарии
Автор

Hi Hung. Thanks for your video.
I will try what you explain in this, but my suggestion is that you try to do it in English. By doing this probably your video will reach people all over the world. I am a native Spanish speaker from Argentina, it is very difficult to understand Vietnamese language. Thanks anyway.

rntaboada
Автор

But for it to work as you are doing it in the video, in the folder 'C: \xampp\htdocs\mysql_labview', the file test.php should be called index.php, without changing the content.

rntaboada
Автор

mySQL Code for the example:

CREATE DATABASE `examples`;
USE `examples`;
CREATE TABLE `cars` (
`id` int UNIQUE NOT NULL,
`name` varchar(40),
`year` varchar(50),
PRIMARY KEY(id)
);
INSERT INTO cars VALUES(1, 'Mercedes', '2000');
INSERT INTO cars VALUES(2, 'BMW', '2004');
INSERT INTO cars VALUES(3, 'Audi', '2001');

rntaboada
visit shbcf.ru