https://github.com/pharma71/wpf-product-form
Testrepo
https://github.com/pharma71/wpf-product-form
Last synced: about 1 year ago
JSON representation
Testrepo
- Host: GitHub
- URL: https://github.com/pharma71/wpf-product-form
- Owner: pharma71
- Created: 2025-01-05T18:24:39.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-05T20:30:09.000Z (over 1 year ago)
- Last Synced: 2025-02-06T14:38:30.243Z (over 1 year ago)
- Language: C#
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
First create a MySQL Database named 'elbjungs'
Then add a Table
CREATE TABLE `produkte` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`Produkt` VARCHAR(255) NULL DEFAULT NULL,
`Beschreibung` TEXT NULL DEFAULT NULL,
`Preis` DECIMAL(10,2) NULL DEFAULT NULL,
`Anzahl` DECIMAL(10,2) NULL DEFAULT NULL,
`Gesamtpreis` DECIMAL(10,2) NULL DEFAULT NULL,
PRIMARY KEY (`id`)
)
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB
AUTO_INCREMENT=19
;