Menu

Tree [76a641] master /
 History

HTTPS access


File Date Author Commit
 android 2020-01-21 jochen@homeland jochen@homeland [76a641] Initial commit
 desktop 2020-01-21 jochen@homeland jochen@homeland [76a641] Initial commit
 .gitignore 2020-01-21 jochen@homeland jochen@homeland [76a641] Initial commit
 QRCODE_1148484ee22485f151f4c59b210fde3a.png 2020-01-21 jochen@homeland jochen@homeland [76a641] Initial commit
 QtPosTester.pro 2020-01-21 jochen@homeland jochen@homeland [76a641] Initial commit
 README.md 2020-01-21 jochen@homeland jochen@homeland [76a641] Initial commit
 main.cpp 2020-01-21 jochen@homeland jochen@homeland [76a641] Initial commit
 mainwindow.cpp 2020-01-21 jochen@homeland jochen@homeland [76a641] Initial commit
 mainwindow.h 2020-01-21 jochen@homeland jochen@homeland [76a641] Initial commit
 mainwindow.ui 2020-01-21 jochen@homeland jochen@homeland [76a641] Initial commit

Read Me

QT5 MySQL QR-Code Beispiel

  • Beispiel basiert auf einem Linux System
  • die Magie ist in "mainwindow.cpp"
  • das mysql plugin für qt5 für android geht scheinbar nicht!
  • QR-Code Reader ist nicht im quellcode drin
  • der QR-Code ist ein md5-hash von: 18/51.35335/6.58460
  • Dummy Fortschrittsbalken
  • Dummy SELECT anweisung ohne WHERE
  • Dummy Ausgabe des Erbnisses
  • war nur so eine Idee/Beispiel, wie man QR-Codes nutzen könnte und auch eine Android-App machbar wäre
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);
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.