Compare commits
2 Commits
ab915ed962
...
97a2564ff2
Author | SHA1 | Date | |
---|---|---|---|
|
97a2564ff2 | ||
|
b40a1938cd |
Binary file not shown.
@ -1,12 +1,37 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"WorkspaceRootPath": "C:\\c\u002B\u002B c#\\PMCProjekt\\PMCProjekt\\",
|
||||
"Documents": [],
|
||||
"WorkspaceRootPath": "C:\\Users\\bib\\Documents\\PMC_Projekt\\PMCProjekt\\",
|
||||
"Documents": [
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{7B328FFA-E441-4FED-8B99-C2B2453AA3E2}|PMCProjekt\\PMCProjekt.csproj|c:\\users\\bib\\documents\\pmc_projekt\\pmcprojekt\\pmcprojekt\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{7B328FFA-E441-4FED-8B99-C2B2453AA3E2}|PMCProjekt\\PMCProjekt.csproj|solutionrelative:pmcprojekt\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
}
|
||||
],
|
||||
"DocumentGroupContainers": [
|
||||
{
|
||||
"Orientation": 0,
|
||||
"VerticalTabListWidth": 256,
|
||||
"DocumentGroups": []
|
||||
"DocumentGroups": [
|
||||
{
|
||||
"DockedWidth": 200,
|
||||
"SelectedChildIndex": 0,
|
||||
"Children": [
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 0,
|
||||
"Title": "Program.cs",
|
||||
"DocumentMoniker": "C:\\Users\\bib\\Documents\\PMC_Projekt\\PMCProjekt\\PMCProjekt\\Program.cs",
|
||||
"RelativeDocumentMoniker": "PMCProjekt\\Program.cs",
|
||||
"ToolTip": "C:\\Users\\bib\\Documents\\PMC_Projekt\\PMCProjekt\\PMCProjekt\\Program.cs",
|
||||
"RelativeToolTip": "PMCProjekt\\Program.cs",
|
||||
"ViewState": "AQIAAA0AAAAAAAAAAAAQwBcAAAAyAAAA",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2024-06-14T09:14:59.548Z",
|
||||
"EditorCaption": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,82 +1,71 @@
|
||||
//Aufgabenstellung
|
||||
//
|
||||
//1.Import
|
||||
//
|
||||
//Als Teil des Entwicklungsteams sollen Sie einen Import für neue Nutzer der jeweiligen Kunden entwickeln.
|
||||
//Die Kunden schicken zu diesem Zweck CSV-Dateien mit den Daten von neuen Nutzern.
|
||||
//Diese Daten müssen in die bestehenden Datentabellen eingespielt werden.
|
||||
//Dafür sind folgende Anforderungen formuliert:
|
||||
//
|
||||
// • Ein Sachbearbeiter ruft eine Konsolen-App auf, in welcher er die Datei und die
|
||||
// Kundennummer des Kunden als Parameter übergibt: Die Beispieldatei hat den Namen "import_yutani.csv" und
|
||||
// gehört zum Kunden mit der Nummer "K2-002"
|
||||
//
|
||||
// • Die Datei hat den Aufbau:
|
||||
// - Ein Nutzer mit Anrede, Vorname, Nachname und Geburtsdatum
|
||||
// - Ggf. Adresse: Straße mit Hausnummer, PLZ, Stadt
|
||||
// - Ggf. E-Mail
|
||||
// - Ggf. eine oder mehrere Telefonnummern: Vorwahl ohne führende 0 und Nummer
|
||||
//
|
||||
// • Ein Nutzer darf für einen Kunden nicht mehrmals importiert werden.
|
||||
//
|
||||
// • Die Daten sollen wie folgt validiert werden:
|
||||
// ○ Geburtsdatum: TT.MM.JJJJ
|
||||
// ○ Valide E-Mail-Adresse
|
||||
// ○ PLZ: exakt 5 Nummern
|
||||
// ○ Telefonnummer 3 bis 5 Nummern für die Vorwahl und 4 bis 10 Nummern für die Hauptnummer. Keine Sonderzeichen
|
||||
//
|
||||
// • Nicht valide Datensätze von Nutzern sollen in einem Protokoll erfasst werden, ebenso bereits vorhandene Nutzer.
|
||||
// Der komplette Datensatz eines Nutzers darf dann nicht importiert werden
|
||||
using MySql.Data;
|
||||
using MySql.Data.MySqlClient;
|
||||
using MySqlX.XDevAPI;
|
||||
using System.Data.Common;
|
||||
using System.Reflection.PortableExecutable;
|
||||
using System.Xml;
|
||||
using MySql.Data.MySqlClient;
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace PMCProjekt
|
||||
{
|
||||
internal class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
MySql.Data.MySqlClient.MySqlConnection myConnection;
|
||||
MySqlConnection myConnection;
|
||||
string myConnectionString;
|
||||
//set the correct values for your server, user, password and database name
|
||||
|
||||
// Setzen Sie die korrekten Werte für Ihren Server, Benutzer, Passwort und Datenbanknamen
|
||||
myConnectionString = "server=localhost;uid=root;pwd=root;database=import_export";
|
||||
|
||||
try
|
||||
{
|
||||
myConnection = new MySql.Data.MySqlClient.MySqlConnection(myConnectionString);
|
||||
//open a connection
|
||||
myConnection = new MySqlConnection(myConnectionString);
|
||||
// Öffnen Sie eine Verbindung
|
||||
myConnection.Open();
|
||||
|
||||
// create a MySQL command and set the SQL statement with parameters
|
||||
MySqlCommand myCommand = new MySqlCommand();
|
||||
myCommand.Connection = myConnection;
|
||||
myCommand.CommandText = @"SELECT * FROM user";
|
||||
//myCommand.Parameters.AddWithValue("@code", "12");
|
||||
|
||||
// execute the command and read the results
|
||||
using MySqlDataReader myReader = myCommand.ExecuteReader();
|
||||
|
||||
while (myReader.Read())
|
||||
// Datei einlesen
|
||||
string dateiPfad = "C:/Schule/PMC/import_yutani.csv";
|
||||
if (File.Exists(dateiPfad))
|
||||
{
|
||||
int id = myReader.GetInt32("id");
|
||||
string name = myReader.GetString("firstname");
|
||||
string nachname = myReader.GetString("lastname");
|
||||
Console.WriteLine(id + " " + nachname + " " + name);
|
||||
using (StreamReader sr = new StreamReader(dateiPfad))
|
||||
{
|
||||
string zeile;
|
||||
while ((zeile = sr.ReadLine()) != null)
|
||||
{
|
||||
string[] werte = zeile.Split(',');
|
||||
|
||||
if (werte.Length == 2)
|
||||
{
|
||||
string vorname = werte[0];
|
||||
string nachname = werte[1];
|
||||
|
||||
// Verarbeiten der Daten (z.B. Ausgabe)
|
||||
Console.WriteLine("Vorname: " + vorname + ", Nachname: " + nachname);
|
||||
|
||||
// Daten in die Datenbank einfügen (Beispiel)
|
||||
string abfrage = "INSERT INTO user (firstname, lastname) VALUES (@vorname, @nachname)";
|
||||
using (MySqlCommand myCommand = new MySqlCommand(abfrage, myConnection))
|
||||
{
|
||||
myCommand.Parameters.AddWithValue("@vorname", vorname);
|
||||
myCommand.Parameters.AddWithValue("@nachname", nachname);
|
||||
myCommand.ExecuteNonQuery();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Console.WriteLine("Datei nicht gefunden.");
|
||||
}
|
||||
|
||||
// Verbindung schließen
|
||||
myConnection.Close();
|
||||
}
|
||||
catch (MySql.Data.MySqlClient.MySqlException ex)
|
||||
catch (MySqlException ex)
|
||||
{
|
||||
|
||||
Console.WriteLine("Fehler: " + ex.Message);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
@ -14,7 +14,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("PMCProjekt")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+6e07e4dea071a35b06e962046985cf1cd31297aa")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e9e49af1be84151f586fad3e1633f2fa660d3d71")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("PMCProjekt")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("PMCProjekt")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
@ -1 +1 @@
|
||||
5131e033b58c501fd00152c6e10aa3c9848e6c9048af06f45bb3e21b5d72b61b
|
||||
497b76da71a0f65b1b63963994b6e814d84ab84904760acee03801e220cdfd81
|
||||
|
@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = PMCProjekt
|
||||
build_property.ProjectDir = C:\c++ c#\PMCProjekt\PMCProjekt\PMCProjekt\
|
||||
build_property.ProjectDir = C:\Users\bib\Documents\PMC_Projekt\PMCProjekt\PMCProjekt\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
|
Binary file not shown.
@ -1,17 +1,17 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\c++ c#\\PMCProjekt\\PMCProjekt\\PMCProjekt\\PMCProjekt.csproj": {}
|
||||
"C:\\Users\\bib\\Documents\\PMC_Projekt\\PMCProjekt\\PMCProjekt\\PMCProjekt.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\c++ c#\\PMCProjekt\\PMCProjekt\\PMCProjekt\\PMCProjekt.csproj": {
|
||||
"C:\\Users\\bib\\Documents\\PMC_Projekt\\PMCProjekt\\PMCProjekt\\PMCProjekt.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\c++ c#\\PMCProjekt\\PMCProjekt\\PMCProjekt\\PMCProjekt.csproj",
|
||||
"projectUniqueName": "C:\\Users\\bib\\Documents\\PMC_Projekt\\PMCProjekt\\PMCProjekt\\PMCProjekt.csproj",
|
||||
"projectName": "PMCProjekt",
|
||||
"projectPath": "C:\\c++ c#\\PMCProjekt\\PMCProjekt\\PMCProjekt\\PMCProjekt.csproj",
|
||||
"projectPath": "C:\\Users\\bib\\Documents\\PMC_Projekt\\PMCProjekt\\PMCProjekt\\PMCProjekt.csproj",
|
||||
"packagesPath": "C:\\Users\\bib\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\c++ c#\\PMCProjekt\\PMCProjekt\\PMCProjekt\\obj\\",
|
||||
"outputPath": "C:\\Users\\bib\\Documents\\PMC_Projekt\\PMCProjekt\\PMCProjekt\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
|
@ -1791,11 +1791,11 @@
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\c++ c#\\PMCProjekt\\PMCProjekt\\PMCProjekt\\PMCProjekt.csproj",
|
||||
"projectUniqueName": "C:\\Users\\bib\\Documents\\PMC_Projekt\\PMCProjekt\\PMCProjekt\\PMCProjekt.csproj",
|
||||
"projectName": "PMCProjekt",
|
||||
"projectPath": "C:\\c++ c#\\PMCProjekt\\PMCProjekt\\PMCProjekt\\PMCProjekt.csproj",
|
||||
"projectPath": "C:\\Users\\bib\\Documents\\PMC_Projekt\\PMCProjekt\\PMCProjekt\\PMCProjekt.csproj",
|
||||
"packagesPath": "C:\\Users\\bib\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\c++ c#\\PMCProjekt\\PMCProjekt\\PMCProjekt\\obj\\",
|
||||
"outputPath": "C:\\Users\\bib\\Documents\\PMC_Projekt\\PMCProjekt\\PMCProjekt\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
|
@ -1,8 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "hmjpczB20rO9+XIWVQE6LffNwpIbJnVyQpbAXGcthVX7MhdlK2/SeQpWsyghUPz07HV2wtAYW2lx3ET7P7TDlg==",
|
||||
"dgSpecHash": "Jmj3WRDtSrMYQNSWXK2x6TEKWOlCmkjM6nbeQ2iYrfCgkzMw4GiPixfUmBUGiPiTU/KE5IO8pzSrja1hWLPpDA==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\c++ c#\\PMCProjekt\\PMCProjekt\\PMCProjekt\\PMCProjekt.csproj",
|
||||
"projectFilePath": "C:\\Users\\bib\\Documents\\PMC_Projekt\\PMCProjekt\\PMCProjekt\\PMCProjekt.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\bib\\.nuget\\packages\\bouncycastle.cryptography\\2.2.1\\bouncycastle.cryptography.2.2.1.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\google.protobuf\\3.25.1\\google.protobuf.3.25.1.nupkg.sha512",
|
||||
|
Loading…
Reference in New Issue
Block a user