We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15d97cc commit d77e478Copy full SHA for d77e478
src/main/java/edu/ie3/datamodel/Main.java
@@ -0,0 +1,21 @@
1
+package edu.ie3.datamodel;
2
+
3
+import edu.ie3.datamodel.exceptions.EntityProcessorException;
4
+import edu.ie3.datamodel.exceptions.ProcessorProviderException;
5
+import edu.ie3.datamodel.io.SqlUtils;
6
+import edu.ie3.datamodel.models.input.system.type.StorageTypeInput;
7
8
+public class Main {
9
+ public static void main(String[] args) {
10
+ try {
11
+ System.out.println(SqlUtils.queryCreateTableUniqueEntity(
12
+ StorageTypeInput.class,
13
+ "public"
14
+ ));
15
+ } catch (EntityProcessorException e) {
16
+ throw new RuntimeException(e);
17
+ } catch (ProcessorProviderException e) {
18
19
+ }
20
21
+}
0 commit comments