extractor erstmal fertig

- er findet fast alle tabellen
- quellcode wird entpackt wenn er in einer variable ist
This commit is contained in:
2026-08-09 00:47:23 +02:00
parent 24caf23986
commit d4337ad1a5
116 changed files with 887 additions and 864 deletions
+12 -12
View File
@@ -19,7 +19,7 @@
"*sql_table.update([sql_table.street], [value])"
],
"kwargs": {},
"code": "cursor.execute(*sql_table.update([sql_table.street], [value]))",
"code": "(Transaction().connection.cursor()).execute(*sql_table.update(\n [sql_table.street],\n [value]))",
"phase": "after_super",
"condition": "table.column_exist('streetbis')"
},
@@ -35,7 +35,7 @@
"[value]"
],
"kwargs": {},
"code": "sql_table.update([sql_table.street], [value])",
"code": "sql_table.update(\n [sql_table.street],\n [value])",
"phase": "after_super",
"condition": "table.column_exist('streetbis')"
},
@@ -75,7 +75,7 @@
"country.select(country.code, where=country.id == table.country)"
],
"kwargs": {},
"code": "table.update([table.country_code], country.select(country.code, where=country.id == table.country))",
"code": "table.update(\n [table.country_code],\n country.select(\n country.code,\n where=country.id == table.country))",
"phase": "after_super",
"condition": "table_h.column_exist('country')"
},
@@ -92,7 +92,7 @@
"kwargs": {
"where": "country.id == table.country"
},
"code": "country.select(country.code, where=country.id == table.country)",
"code": "country.select(\n country.code,\n where=country.id == table.country)",
"phase": "after_super",
"condition": "table_h.column_exist('country')"
},
@@ -105,7 +105,7 @@
"*query"
],
"kwargs": {},
"code": "cursor.execute(*query)",
"code": "(Transaction().connection.cursor()).execute(*(table.update(\n [table.language_code],\n language.select(\n Substring(language.code, 0, 2),\n where=language.id == table.language))))",
"phase": "after_super",
"condition": "table_h.column_exist('country')"
},
@@ -137,7 +137,7 @@
"language.select(Substring(language.code, 0, 2), where=language.id == table.language)"
],
"kwargs": {},
"code": "table.update([table.language_code], language.select(Substring(language.code, 0, 2), where=language.id == table.language))",
"code": "table.update(\n [table.language_code],\n language.select(\n Substring(language.code, 0, 2),\n where=language.id == table.language))",
"phase": "after_super",
"condition": "table_h.column_exist('language')"
},
@@ -154,7 +154,7 @@
"kwargs": {
"where": "language.id == table.language"
},
"code": "language.select(Substring(language.code, 0, 2), where=language.id == table.language)",
"code": "language.select(\n Substring(language.code, 0, 2),\n where=language.id == table.language)",
"phase": "after_super",
"condition": "table_h.column_exist('language')"
},
@@ -167,7 +167,7 @@
"*query"
],
"kwargs": {},
"code": "cursor.execute(*query)",
"code": "(Transaction().connection.cursor()).execute(*(table.update(\n [table.language_code],\n language.select(\n Substring(language.code, 0, 2),\n where=language.id == table.language))))",
"phase": "after_super",
"condition": "table_h.column_exist('language')"
},
@@ -252,7 +252,7 @@
"party.select(party.id, party.lang)"
],
"kwargs": {},
"code": "table.insert([table.party, table.lang], party.select(party.id, party.lang))",
"code": "table.insert(\n [table.party, table.lang],\n party.select(party.id, party.lang))",
"phase": "after_super",
"condition": "party_h.column_exist('lang')"
},
@@ -281,7 +281,7 @@
"*query"
],
"kwargs": {},
"code": "cursor.execute(*query)",
"code": "(Transaction().connection.cursor()).execute(*(table.insert(\n [table.party, table.lang],\n party.select(party.id, party.lang))))",
"phase": "after_super",
"condition": "party_h.column_exist('lang')"
},
@@ -319,7 +319,7 @@
"*party.select(party.id, party.vat_number, party.vat_country, where=(party.vat_number != Null) | (party.vat_country != Null))"
],
"kwargs": {},
"code": "cursor.execute(*party.select(party.id, party.vat_number, party.vat_country, where=(party.vat_number != Null) | (party.vat_country != Null)))",
"code": "(Transaction().connection.cursor()).execute(*party.select(\n party.id, party.vat_number, party.vat_country,\n where=(party.vat_number != Null)\n | (party.vat_country != Null)))",
"phase": "after_super",
"condition": "party_h.column_exist('vat_number') and party_h.column_exist('vat_country')"
},
@@ -338,7 +338,7 @@
"kwargs": {
"where": "(party.vat_number != Null) | (party.vat_country != Null)"
},
"code": "party.select(party.id, party.vat_number, party.vat_country, where=(party.vat_number != Null) | (party.vat_country != Null))",
"code": "party.select(\n party.id, party.vat_number, party.vat_country,\n where=(party.vat_number != Null)\n | (party.vat_country != Null))",
"phase": "after_super",
"condition": "party_h.column_exist('vat_number') and party_h.column_exist('vat_country')"
},