commit auf HiDrive - woher auch immer die Aenderungen kommen
@@ -0,0 +1,27 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<classpath>
|
||||||
|
<classpathentry kind="src" output="target/classes" path="src/main/java">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="optional" value="true"/>
|
||||||
|
<attribute name="maven.pomderived" value="true"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
|
<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
|
||||||
|
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="optional" value="true"/>
|
||||||
|
<attribute name="maven.pomderived" value="true"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="maven.pomderived" value="true"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
|
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="maven.pomderived" value="true"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
|
<classpathentry kind="output" path="target/classes"/>
|
||||||
|
</classpath>
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<projectDescription>
|
||||||
|
<name>Transaktionen</name>
|
||||||
|
<comment></comment>
|
||||||
|
<projects>
|
||||||
|
</projects>
|
||||||
|
<buildSpec>
|
||||||
|
<buildCommand>
|
||||||
|
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
<buildCommand>
|
||||||
|
<name>org.maven.ide.eclipse.maven2Builder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
<buildCommand>
|
||||||
|
<name>org.eclipse.m2e.core.maven2Builder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
</buildSpec>
|
||||||
|
<natures>
|
||||||
|
<nature>org.eclipse.m2e.core.maven2Nature</nature>
|
||||||
|
<nature>org.maven.ide.eclipse.maven2Nature</nature>
|
||||||
|
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||||
|
</natures>
|
||||||
|
</projectDescription>
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
#Thu Dec 22 10:40:15 CET 2011
|
||||||
|
eclipse.preferences.version=1
|
||||||
|
line.separator=\n
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
eclipse.preferences.version=1
|
||||||
|
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
#Mon Sep 12 11:28:16 CEST 2011
|
||||||
|
activeProfiles=
|
||||||
|
eclipse.preferences.version=1
|
||||||
|
fullBuildGoals=process-test-resources
|
||||||
|
resolveWorkspaceProjects=true
|
||||||
|
resourceFilterGoals=process-resources resources\:testResources
|
||||||
|
skipCompilerPlugin=true
|
||||||
|
version=1
|
||||||
@@ -51,4 +51,9 @@ CREATE CACHED TABLE "Kategorien_Tilman"("ID" INTEGER GENERATED BY DEFAULT AS IDE
|
|||||||
CREATE CACHED TABLE "Transaktionen_Tilman"("ID" INTEGER GENERATED BY DEFAULT AS IDENTITY(START WITH 0) NOT NULL PRIMARY KEY,"Datum" DATE NOT NULL,"Kategorie" INTEGER NOT NULL,"Betrag" DECIMAL(50,2) NOT NULL,"Beschreibung" VARCHAR(255));
|
CREATE CACHED TABLE "Transaktionen_Tilman"("ID" INTEGER GENERATED BY DEFAULT AS IDENTITY(START WITH 0) NOT NULL PRIMARY KEY,"Datum" DATE NOT NULL,"Kategorie" INTEGER NOT NULL,"Betrag" DECIMAL(50,2) NOT NULL,"Beschreibung" VARCHAR(255));
|
||||||
|
|
||||||
ALTER TABLE "Transaktionen" ADD "Auslage" INTEGER DEFAULT 0 NOT NULL;
|
ALTER TABLE "Transaktionen" ADD "Auslage" INTEGER DEFAULT 0 NOT NULL;
|
||||||
INSERT INTO "Kategorien_Tilman" VALUES (null, 'Freizeit - Sport')
|
INSERT INTO "Kategorien_Tilman" VALUES (null, 'Freizeit - Sport')
|
||||||
|
|
||||||
|
Neue Kategorie einfügen:
|
||||||
|
UPDATE "Kategorien" SET "ID"="ID"+1 WHERE "ID">7;
|
||||||
|
UPDATE "Transaktionen" SET "Kategorie"="Kategorie"+1 WHERE "Kategorie">7;
|
||||||
|
INSERT INTO "Kategorien" ("ID", "Name") VALUES (8, 'Familie - Baby');
|
||||||
@@ -1,56 +1,59 @@
|
|||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
<modelVersion>4.0.0</modelVersion>
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
<groupId>Transaktionen</groupId>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<artifactId>Transaktionen</artifactId>
|
<groupId>Transaktionen</groupId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<artifactId>Transaktionen</artifactId>
|
||||||
<build>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<plugins>
|
<build>
|
||||||
<plugin>
|
<plugins>
|
||||||
<groupId>org.mortbay.jetty</groupId>
|
<plugin>
|
||||||
<artifactId>jetty-maven-plugin</artifactId>
|
<groupId>org.mortbay.jetty</groupId>
|
||||||
<version>8.0.1.v20110908</version>
|
<artifactId>jetty-maven-plugin</artifactId>
|
||||||
</plugin>
|
<version>8.0.1.v20110908</version>
|
||||||
<plugin>
|
</plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<plugin>
|
||||||
<artifactId>exec-maven-plugin</artifactId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<version>1.2</version>
|
<artifactId>exec-maven-plugin</artifactId>
|
||||||
<executions>
|
<version>1.2</version>
|
||||||
<execution><goals><goal>java</goal></goals></execution>
|
<executions>
|
||||||
</executions>
|
<execution>
|
||||||
<configuration>
|
<goals>
|
||||||
<mainClass>org.example.HelloWorld</mainClass>
|
<goal>java</goal>
|
||||||
</configuration>
|
</goals>
|
||||||
</plugin>
|
</execution>
|
||||||
</plugins>
|
</executions>
|
||||||
</build>
|
<configuration>
|
||||||
<dependencies>
|
<mainClass>org.example.HelloWorld</mainClass>
|
||||||
<dependency>
|
</configuration>
|
||||||
<groupId>log4j</groupId>
|
</plugin>
|
||||||
<artifactId>log4j</artifactId>
|
</plugins>
|
||||||
<version>1.2.14</version>
|
</build>
|
||||||
<type>jar</type>
|
<dependencies>
|
||||||
<scope>compile</scope>
|
<dependency>
|
||||||
</dependency>
|
<groupId>log4j</groupId>
|
||||||
<dependency>
|
<artifactId>log4j</artifactId>
|
||||||
<groupId>org.mortbay.jetty</groupId>
|
<version>1.2.17</version>
|
||||||
<artifactId>jetty-embedded</artifactId>
|
</dependency>
|
||||||
<version>6.1.26</version>
|
<dependency>
|
||||||
<type>jar</type>
|
<groupId>org.mortbay.jetty</groupId>
|
||||||
<scope>compile</scope>
|
<artifactId>jetty-embedded</artifactId>
|
||||||
</dependency>
|
<version>6.1.26</version>
|
||||||
<dependency>
|
<type>jar</type>
|
||||||
<groupId>hsqldb</groupId>
|
<scope>compile</scope>
|
||||||
<artifactId>hsqldb</artifactId>
|
</dependency>
|
||||||
<version>1.8.0.10</version>
|
<dependency>
|
||||||
<type>jar</type>
|
<groupId>hsqldb</groupId>
|
||||||
<scope>compile</scope>
|
<artifactId>hsqldb</artifactId>
|
||||||
</dependency>
|
<version>1.8.0.10</version>
|
||||||
<dependency>
|
<type>jar</type>
|
||||||
<groupId>org.apache.commons</groupId>
|
<scope>compile</scope>
|
||||||
<artifactId>commons-lang3</artifactId>
|
</dependency>
|
||||||
<version>3.0.1</version>
|
<dependency>
|
||||||
<type>jar</type>
|
<groupId>org.apache.commons</groupId>
|
||||||
<scope>compile</scope>
|
<artifactId>commons-lang3</artifactId>
|
||||||
</dependency>
|
<version>3.0.1</version>
|
||||||
</dependencies>
|
<type>jar</type>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
|
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 4.6 KiB |
|
Before Width: | Height: | Size: 143 KiB After Width: | Height: | Size: 143 KiB |
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |