BDD TableGenerator #4

This commit is contained in:
JunkJumper 2020-04-29 15:18:48 +02:00
parent e0e8278da7
commit 19d1e6cdd6
2 changed files with 3 additions and 3 deletions

View File

@ -13,9 +13,9 @@ import java.sql.Statement;
public class DatabaseTesting {
public static void main(String[] args) {
Table a = new Table("a");
a.remplirTableAllFrom("CartesLumiere");
a.remplirTableAllFrom("CartesAll");
System.out.println(a.toString());
//BufferedImage jpg = new BufferedImage(467, 652, 1);
BufferedImage jpg = new BufferedImage(467, 652, 1);
/*

View File

@ -15,7 +15,7 @@ public class QueryGenerator {
}
public static String getTable(String s) {
return "public.\"" + s + "\"";
return "public." + '"' + s + '"';
}
}