Added database creation if not exists, setting local_infile config option

This commit is contained in:
LeonAmtmann 2022-05-17 12:30:05 +02:00
parent 45fb771959
commit 9fe61a1afa
2 changed files with 3 additions and 0 deletions

View File

@ -1,3 +1,4 @@
CREATE DATABASE IF NOT EXISTS project;
USE project; USE project;
CREATE TABLE IF NOT EXISTS Produkt CREATE TABLE IF NOT EXISTS Produkt

View File

@ -1,4 +1,6 @@
USE project; USE project;
SET GLOBAL local_infile=1;
show global variables like 'local_infile';
/* /*
---------------------------------- Zusatzstoffklasse ---------------------------------- ---------------------------------- Zusatzstoffklasse ----------------------------------