QT5 MySQL QR-Code Beispiel Code
Brought to you by:
socken-go
File | Date | Author | Commit |
---|---|---|---|
android | 2020-01-21 |
![]() |
[76a641] Initial commit |
desktop | 2020-01-21 |
![]() |
[76a641] Initial commit |
.gitignore | 2020-01-21 |
![]() |
[76a641] Initial commit |
QRCODE_1148484ee22485f151f4c59b210fde3a.png | 2020-01-21 |
![]() |
[76a641] Initial commit |
QtPosTester.pro | 2020-01-21 |
![]() |
[76a641] Initial commit |
README.md | 2020-01-21 |
![]() |
[76a641] Initial commit |
main.cpp | 2020-01-21 |
![]() |
[76a641] Initial commit |
mainwindow.cpp | 2020-01-21 |
![]() |
[76a641] Initial commit |
mainwindow.h | 2020-01-21 |
![]() |
[76a641] Initial commit |
mainwindow.ui | 2020-01-21 |
![]() |
[76a641] Initial commit |
DROP TABLE IF EXISTS `qrpostest`;
CREATE TABLE IF NOT EXISTS `qrpostest` (
`id` varchar(32) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL,
`name` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`x` double NOT NULL,
`y` double NOT NULL,
`zoom` int NOT NULL,
UNIQUE KEY `id` (`id`),
KEY `id_2` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='experiment mit qrcodes und einer qt android app';
INSERT INTO `qrpostest` (`id`, `name`, `x`, `y`, `zoom`) VALUES('1148484ee22485f151f4c59b210fde3a', 'Hier steppt nicht der Bär! :-)', 6.5846, 51.35335, 18);