zepben.ewb 1.0.0b4__py3-none-any.whl → 1.0.0b5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (127) hide show
  1. zepben/ewb/__init__.py +1 -1
  2. zepben/ewb/database/sql/__init__.py +4 -0
  3. zepben/ewb/database/{sqlite/tables → sql}/column.py +1 -1
  4. zepben/ewb/database/sql/sql_table.py +142 -0
  5. zepben/ewb/database/sqlite/tables/associations/table_asset_organisation_roles_assets.py +1 -1
  6. zepben/ewb/database/sqlite/tables/associations/table_assets_power_system_resources.py +1 -1
  7. zepben/ewb/database/sqlite/tables/associations/table_battery_units_battery_controls.py +1 -1
  8. zepben/ewb/database/sqlite/tables/associations/table_circuits_substations.py +1 -1
  9. zepben/ewb/database/sqlite/tables/associations/table_circuits_terminals.py +1 -1
  10. zepben/ewb/database/sqlite/tables/associations/table_customer_agreements_pricing_structures.py +1 -1
  11. zepben/ewb/database/sqlite/tables/associations/table_end_devices_end_device_functions.py +1 -1
  12. zepben/ewb/database/sqlite/tables/associations/table_equipment_equipment_containers.py +1 -1
  13. zepben/ewb/database/sqlite/tables/associations/table_equipment_operational_restrictions.py +1 -1
  14. zepben/ewb/database/sqlite/tables/associations/table_equipment_usage_points.py +1 -1
  15. zepben/ewb/database/sqlite/tables/associations/table_loops_substations.py +1 -1
  16. zepben/ewb/database/sqlite/tables/associations/table_pricing_structures_tariffs.py +1 -1
  17. zepben/ewb/database/sqlite/tables/associations/table_protection_relay_functions_protected_switches.py +1 -1
  18. zepben/ewb/database/sqlite/tables/associations/table_protection_relay_functions_sensors.py +1 -1
  19. zepben/ewb/database/sqlite/tables/associations/table_protection_relay_schemes_protection_relay_functions.py +1 -1
  20. zepben/ewb/database/sqlite/tables/associations/table_usage_points_end_devices.py +1 -1
  21. zepben/ewb/database/sqlite/tables/extensions/iec61968/assetinfo/table_reclose_delays.py +1 -1
  22. zepben/ewb/database/sqlite/tables/extensions/iec61968/assetinfo/table_relay_info.py +1 -1
  23. zepben/ewb/database/sqlite/tables/extensions/iec61968/metering/table_pan_demand_response_functions.py +1 -1
  24. zepben/ewb/database/sqlite/tables/extensions/iec61970/base/feeder/table_lv_feeders.py +1 -1
  25. zepben/ewb/database/sqlite/tables/extensions/iec61970/base/protection/table_distance_relays.py +1 -1
  26. zepben/ewb/database/sqlite/tables/extensions/iec61970/base/protection/table_protection_relay_function_thresholds.py +1 -1
  27. zepben/ewb/database/sqlite/tables/extensions/iec61970/base/protection/table_protection_relay_function_time_limits.py +1 -1
  28. zepben/ewb/database/sqlite/tables/extensions/iec61970/base/protection/table_protection_relay_functions.py +1 -1
  29. zepben/ewb/database/sqlite/tables/extensions/iec61970/base/protection/table_protection_relay_schemes.py +1 -1
  30. zepben/ewb/database/sqlite/tables/extensions/iec61970/base/protection/table_protection_relay_systems.py +1 -1
  31. zepben/ewb/database/sqlite/tables/extensions/iec61970/base/wires/table_battery_controls.py +1 -1
  32. zepben/ewb/database/sqlite/tables/extensions/iec61970/base/wires/table_power_transformer_end_ratings.py +1 -1
  33. zepben/ewb/database/sqlite/tables/iec61968/assetinfo/table_no_load_tests.py +1 -1
  34. zepben/ewb/database/sqlite/tables/iec61968/assetinfo/table_open_circuit_tests.py +1 -1
  35. zepben/ewb/database/sqlite/tables/iec61968/assetinfo/table_short_circuit_tests.py +1 -1
  36. zepben/ewb/database/sqlite/tables/iec61968/assetinfo/table_shunt_compensator_info.py +1 -1
  37. zepben/ewb/database/sqlite/tables/iec61968/assetinfo/table_switch_info.py +1 -1
  38. zepben/ewb/database/sqlite/tables/iec61968/assetinfo/table_transformer_end_info.py +1 -1
  39. zepben/ewb/database/sqlite/tables/iec61968/assetinfo/table_transformer_tank_info.py +1 -1
  40. zepben/ewb/database/sqlite/tables/iec61968/assetinfo/table_transformer_test.py +1 -1
  41. zepben/ewb/database/sqlite/tables/iec61968/assetinfo/table_wire_info.py +1 -1
  42. zepben/ewb/database/sqlite/tables/iec61968/assets/table_assets.py +1 -1
  43. zepben/ewb/database/sqlite/tables/iec61968/assets/table_streetlights.py +1 -1
  44. zepben/ewb/database/sqlite/tables/iec61968/common/table_documents.py +1 -1
  45. zepben/ewb/database/sqlite/tables/iec61968/common/table_location_street_addresses.py +1 -1
  46. zepben/ewb/database/sqlite/tables/iec61968/common/table_organisation_roles.py +1 -1
  47. zepben/ewb/database/sqlite/tables/iec61968/common/table_position_points.py +1 -1
  48. zepben/ewb/database/sqlite/tables/iec61968/common/table_street_addresses.py +1 -1
  49. zepben/ewb/database/sqlite/tables/iec61968/common/table_town_details.py +1 -1
  50. zepben/ewb/database/sqlite/tables/iec61968/customers/table_customer_agreements.py +1 -1
  51. zepben/ewb/database/sqlite/tables/iec61968/customers/table_customers.py +1 -1
  52. zepben/ewb/database/sqlite/tables/iec61968/infiec61968/infassetinfo/table_current_transformer_info.py +1 -1
  53. zepben/ewb/database/sqlite/tables/iec61968/infiec61968/infassetinfo/table_potential_transformer_info.py +1 -1
  54. zepben/ewb/database/sqlite/tables/iec61968/infiec61968/infassets/table_poles.py +1 -1
  55. zepben/ewb/database/sqlite/tables/iec61968/metering/table_end_device_functions.py +1 -1
  56. zepben/ewb/database/sqlite/tables/iec61968/metering/table_end_devices.py +1 -1
  57. zepben/ewb/database/sqlite/tables/iec61968/metering/table_usage_points.py +1 -1
  58. zepben/ewb/database/sqlite/tables/iec61970/base/auxiliaryequipment/table_auxiliary_equipment.py +1 -1
  59. zepben/ewb/database/sqlite/tables/iec61970/base/auxiliaryequipment/table_current_transformers.py +1 -1
  60. zepben/ewb/database/sqlite/tables/iec61970/base/auxiliaryequipment/table_potential_transformers.py +1 -1
  61. zepben/ewb/database/sqlite/tables/iec61970/base/core/table_base_voltages.py +1 -1
  62. zepben/ewb/database/sqlite/tables/iec61970/base/core/table_conducting_equipment.py +1 -1
  63. zepben/ewb/database/sqlite/tables/iec61970/base/core/table_curve_data.py +1 -1
  64. zepben/ewb/database/sqlite/tables/iec61970/base/core/table_equipment.py +1 -1
  65. zepben/ewb/database/sqlite/tables/iec61970/base/core/table_feeders.py +1 -1
  66. zepben/ewb/database/sqlite/tables/iec61970/base/core/table_identified_objects.py +1 -1
  67. zepben/ewb/database/sqlite/tables/iec61970/base/core/table_name_types.py +1 -1
  68. zepben/ewb/database/sqlite/tables/iec61970/base/core/table_names.py +1 -1
  69. zepben/ewb/database/sqlite/tables/iec61970/base/core/table_power_system_resources.py +1 -1
  70. zepben/ewb/database/sqlite/tables/iec61970/base/core/table_sub_geographical_regions.py +1 -1
  71. zepben/ewb/database/sqlite/tables/iec61970/base/core/table_substations.py +1 -1
  72. zepben/ewb/database/sqlite/tables/iec61970/base/core/table_terminals.py +1 -1
  73. zepben/ewb/database/sqlite/tables/iec61970/base/diagramlayout/table_diagram_object_points.py +1 -1
  74. zepben/ewb/database/sqlite/tables/iec61970/base/diagramlayout/table_diagram_objects.py +1 -1
  75. zepben/ewb/database/sqlite/tables/iec61970/base/diagramlayout/table_diagrams.py +1 -1
  76. zepben/ewb/database/sqlite/tables/iec61970/base/equivalents/table_equivalent_branches.py +1 -1
  77. zepben/ewb/database/sqlite/tables/iec61970/base/generation/production/table_battery_units.py +1 -1
  78. zepben/ewb/database/sqlite/tables/iec61970/base/generation/production/table_power_electronics_units.py +1 -1
  79. zepben/ewb/database/sqlite/tables/iec61970/base/meas/table_analogs.py +1 -1
  80. zepben/ewb/database/sqlite/tables/iec61970/base/meas/table_controls.py +1 -1
  81. zepben/ewb/database/sqlite/tables/iec61970/base/meas/table_measurements.py +1 -1
  82. zepben/ewb/database/sqlite/tables/iec61970/base/protection/table_current_relays.py +1 -1
  83. zepben/ewb/database/sqlite/tables/iec61970/base/scada/table_remote_controls.py +1 -1
  84. zepben/ewb/database/sqlite/tables/iec61970/base/scada/table_remote_sources.py +1 -1
  85. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_ac_line_segments.py +1 -1
  86. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_breakers.py +1 -1
  87. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_clamps.py +1 -1
  88. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_conductors.py +1 -1
  89. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_cuts.py +1 -1
  90. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_earth_fault_compensators.py +1 -1
  91. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_energy_consumer_phases.py +1 -1
  92. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_energy_consumers.py +1 -1
  93. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_energy_source_phases.py +1 -1
  94. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_energy_sources.py +1 -1
  95. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_fuses.py +1 -1
  96. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_grounding_impedances.py +1 -1
  97. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_linear_shunt_compensators.py +1 -1
  98. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_per_length_sequence_impedances.py +1 -1
  99. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_petersen_coils.py +1 -1
  100. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_phase_impedance_data.py +1 -1
  101. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_power_electronics_connection_phases.py +1 -1
  102. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_power_electronics_connections.py +1 -1
  103. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_power_transformer_ends.py +1 -1
  104. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_power_transformers.py +1 -1
  105. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_protected_switches.py +1 -1
  106. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_ratio_tap_changers.py +1 -1
  107. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_regulating_cond_eq.py +1 -1
  108. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_regulating_controls.py +1 -1
  109. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_rotating_machines.py +1 -1
  110. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_series_compensators.py +1 -1
  111. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_shunt_compensators.py +1 -1
  112. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_static_var_compensator.py +1 -1
  113. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_switches.py +1 -1
  114. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_synchronous_machines.py +1 -1
  115. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_tap_changer_controls.py +1 -1
  116. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_tap_changers.py +1 -1
  117. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_transformer_ends.py +1 -1
  118. zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_transformer_star_impedances.py +1 -1
  119. zepben/ewb/database/sqlite/tables/iec61970/infiec61970/feeder/table_circuits.py +1 -1
  120. zepben/ewb/database/sqlite/tables/sqlite_table.py +21 -118
  121. zepben/ewb/database/sqlite/tables/table_metadata_data_sources.py +1 -1
  122. zepben/ewb/database/sqlite/tables/table_version.py +2 -1
  123. {zepben_ewb-1.0.0b4.dist-info → zepben_ewb-1.0.0b5.dist-info}/METADATA +1 -1
  124. {zepben_ewb-1.0.0b4.dist-info → zepben_ewb-1.0.0b5.dist-info}/RECORD +127 -125
  125. {zepben_ewb-1.0.0b4.dist-info → zepben_ewb-1.0.0b5.dist-info}/WHEEL +0 -0
  126. {zepben_ewb-1.0.0b4.dist-info → zepben_ewb-1.0.0b5.dist-info}/licenses/LICENSE +0 -0
  127. {zepben_ewb-1.0.0b4.dist-info → zepben_ewb-1.0.0b5.dist-info}/top_level.txt +0 -0
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableCustomers"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61968.common.table_organisation_roles import TableOrganisationRoles
10
10
 
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableCurrentTransformerInfo"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61968.assets.table_asset_info import TableAssetInfo
10
10
 
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TablePotentialTransformerInfo"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61968.assets.table_asset_info import TableAssetInfo
10
10
 
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TablePoles"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61968.assets.table_structures import TableStructures
10
10
 
11
11
 
@@ -7,7 +7,7 @@ __all__ = ["TableEndDeviceFunctions"]
7
7
 
8
8
  from abc import ABC
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61968.assets.table_asset_functions import TableAssetFunctions
12
12
 
13
13
 
@@ -7,7 +7,7 @@ __all__ = ["TableEndDevices"]
7
7
 
8
8
  from abc import ABC
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61968.assets.table_asset_containers import TableAssetContainers
12
12
 
13
13
 
@@ -3,7 +3,7 @@
3
3
  # License, v. 2.0. If a copy of the MPL was not distributed with this
4
4
  # file, You can obtain one at https://mozilla.org/MPL/2.0/.
5
5
 
6
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
6
+ from zepben.ewb.database.sql.column import Column, Nullable
7
7
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_identified_objects import TableIdentifiedObjects
8
8
 
9
9
 
@@ -7,7 +7,7 @@ __all__ = ["TableAuxiliaryEquipment"]
7
7
 
8
8
  from abc import ABC
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_equipment import TableEquipment
12
12
 
13
13
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableCurrentTransformers"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.auxiliaryequipment.table_sensors import TableSensors
10
10
 
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TablePotentialTransformers"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.auxiliaryequipment.table_sensors import TableSensors
10
10
 
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableBaseVoltages"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_identified_objects import TableIdentifiedObjects
10
10
 
11
11
 
@@ -7,7 +7,7 @@ __all__ = ["TableConductingEquipment"]
7
7
 
8
8
  from abc import ABC
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_equipment import TableEquipment
12
12
 
13
13
 
@@ -8,7 +8,7 @@ __all__ = ["TableCurveData"]
8
8
  from typing import List, Generator
9
9
 
10
10
  from zepben.ewb import SqliteTable
11
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
11
+ from zepben.ewb.database.sql.column import Column, Nullable
12
12
 
13
13
 
14
14
  class TableCurveData(SqliteTable):
@@ -7,7 +7,7 @@ __all__ = ["TableEquipment"]
7
7
 
8
8
  from abc import ABC
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_power_system_resources import TablePowerSystemResources
12
12
 
13
13
 
@@ -7,7 +7,7 @@ __all__ = ["TableFeeders"]
7
7
 
8
8
  from typing import List, Generator
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_equipment_containers import TableEquipmentContainers
12
12
 
13
13
 
@@ -8,7 +8,7 @@ __all__ = ["TableIdentifiedObjects"]
8
8
  from abc import ABC
9
9
  from typing import List, Generator
10
10
 
11
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
11
+ from zepben.ewb.database.sql.column import Column, Nullable
12
12
  from zepben.ewb.database.sqlite.tables.sqlite_table import SqliteTable
13
13
 
14
14
 
@@ -7,7 +7,7 @@ __all__ = ["TableNameTypes"]
7
7
 
8
8
  from typing import List, Generator
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.sqlite_table import SqliteTable
12
12
 
13
13
 
@@ -7,7 +7,7 @@ __all__ = ["TableNames"]
7
7
 
8
8
  from typing import List, Generator
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.sqlite_table import SqliteTable
12
12
 
13
13
 
@@ -7,7 +7,7 @@ __all__ = ["TablePowerSystemResources"]
7
7
 
8
8
  from abc import ABC
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_identified_objects import TableIdentifiedObjects
12
12
 
13
13
 
@@ -7,7 +7,7 @@ __all__ = ["TableSubGeographicalRegions"]
7
7
 
8
8
  from typing import List, Generator
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_identified_objects import TableIdentifiedObjects
12
12
 
13
13
 
@@ -7,7 +7,7 @@ __all__ = ["TableSubstations"]
7
7
 
8
8
  from typing import List, Generator
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_equipment_containers import TableEquipmentContainers
12
12
 
13
13
 
@@ -7,7 +7,7 @@ __all__ = ["TableTerminals"]
7
7
 
8
8
  from typing import List, Generator
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_ac_dc_terminals import TableAcDcTerminals
12
12
 
13
13
 
@@ -7,7 +7,7 @@ __all__ = ["TableDiagramObjectPoints"]
7
7
 
8
8
  from typing import List, Generator
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.sqlite_table import SqliteTable
12
12
 
13
13
 
@@ -7,7 +7,7 @@ __all__ = ["TableDiagramObjects"]
7
7
 
8
8
  from typing import List, Generator
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_identified_objects import TableIdentifiedObjects
12
12
 
13
13
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableDiagrams"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_identified_objects import TableIdentifiedObjects
10
10
 
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableEquivalentBranches"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.equivalents.table_equivalent_equipment import TableEquivalentEquipment
10
10
 
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableBatteryUnits"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.generation.production.table_power_electronics_units import TablePowerElectronicsUnits
10
10
 
11
11
 
@@ -8,7 +8,7 @@ __all__ = ["TablePowerElectronicsUnits"]
8
8
  from abc import ABC
9
9
  from typing import List, Generator
10
10
 
11
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
11
+ from zepben.ewb.database.sql.column import Column, Nullable
12
12
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_equipment import TableEquipment
13
13
 
14
14
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableAnalogs"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.meas.table_measurements import TableMeasurements
10
10
 
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableControls"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.meas.table_io_points import TableIoPoints
10
10
 
11
11
 
@@ -8,7 +8,7 @@ __all__ = ["TableMeasurements"]
8
8
  from abc import ABC
9
9
  from typing import List, Generator
10
10
 
11
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
11
+ from zepben.ewb.database.sql.column import Column, Nullable
12
12
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_identified_objects import TableIdentifiedObjects
13
13
 
14
14
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableCurrentRelays"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.extensions.iec61970.base.protection.table_protection_relay_functions import TableProtectionRelayFunctions
10
10
 
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableRemoteControls"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.scada.table_remote_points import TableRemotePoints
10
10
 
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableRemoteSources"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.scada.table_remote_points import TableRemotePoints
10
10
 
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableAcLineSegments"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_conductors import TableConductors
10
10
 
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableBreakers"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_protected_switches import TableProtectedSwitches
10
10
 
11
11
 
@@ -7,7 +7,7 @@ __all__ = ["TableClamps"]
7
7
 
8
8
  from abc import ABC
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_conducting_equipment import TableConductingEquipment
12
12
 
13
13
 
@@ -7,7 +7,7 @@ __all__ = ["TableConductors"]
7
7
 
8
8
  from abc import ABC
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_conducting_equipment import TableConductingEquipment
12
12
 
13
13
 
@@ -7,7 +7,7 @@ __all__ = ["TableCuts"]
7
7
 
8
8
  from abc import ABC
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_switches import TableSwitches
12
12
 
13
13
 
@@ -7,7 +7,7 @@ __all__ = ["TableEarthFaultCompensators"]
7
7
 
8
8
  from abc import ABC
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_conducting_equipment import TableConductingEquipment
12
12
 
13
13
 
@@ -7,7 +7,7 @@ __all__ = ["TableEnergyConsumerPhases"]
7
7
 
8
8
  from typing import List, Generator
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_power_system_resources import TablePowerSystemResources
12
12
 
13
13
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableEnergyConsumers"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_energy_connections import TableEnergyConnections
10
10
 
11
11
 
@@ -7,7 +7,7 @@ __all__ = ["TableEnergySourcePhases"]
7
7
 
8
8
  from typing import List, Generator
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_power_system_resources import TablePowerSystemResources
12
12
 
13
13
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableEnergySources"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_energy_connections import TableEnergyConnections
10
10
 
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableFuses"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_switches import TableSwitches
10
10
 
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableGroundingImpedances"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_earth_fault_compensators import TableEarthFaultCompensators
10
10
 
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableLinearShuntCompensators"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_shunt_compensators import TableShuntCompensators
10
10
 
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TablePerLengthSequenceImpedances"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_per_length_impedances import TablePerLengthImpedances
10
10
 
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TablePetersenCoils"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_earth_fault_compensators import TableEarthFaultCompensators
10
10
 
11
11
 
@@ -8,7 +8,7 @@ __all__ = ["TablePhaseImpedanceData"]
8
8
  from typing import List, Generator
9
9
 
10
10
  from zepben.ewb import SqliteTable
11
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
11
+ from zepben.ewb.database.sql.column import Column, Nullable
12
12
 
13
13
 
14
14
  class TablePhaseImpedanceData(SqliteTable):
@@ -7,7 +7,7 @@ __all__ = ["TablePowerElectronicsConnectionPhases"]
7
7
 
8
8
  from typing import List, Generator
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_power_system_resources import TablePowerSystemResources
12
12
 
13
13
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TablePowerElectronicsConnections"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_regulating_cond_eq import TableRegulatingCondEq
10
10
 
11
11
 
@@ -7,7 +7,7 @@ __all__ = ["TablePowerTransformerEnds"]
7
7
 
8
8
  from typing import List, Generator
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_transformer_ends import TableTransformerEnds
12
12
 
13
13
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TablePowerTransformers"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_conducting_equipment import TableConductingEquipment
10
10
 
11
11
 
@@ -7,7 +7,7 @@ __all__ = ["TableProtectedSwitches"]
7
7
 
8
8
  from abc import ABC
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_switches import TableSwitches
12
12
 
13
13
 
@@ -7,7 +7,7 @@ __all__ = ["TableRatioTapChangers"]
7
7
 
8
8
  from typing import List, Generator
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_tap_changers import TableTapChangers
12
12
 
13
13
 
@@ -7,7 +7,7 @@ __all__ = ["TableRegulatingCondEq"]
7
7
 
8
8
  from abc import ABC
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_energy_connections import TableEnergyConnections
12
12
 
13
13
 
@@ -7,7 +7,7 @@ __all__ = ["TableRegulatingControls"]
7
7
 
8
8
  from abc import ABC
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_power_system_resources import TablePowerSystemResources
12
12
 
13
13
 
@@ -6,7 +6,7 @@
6
6
  __all__ = ["TableRotatingMachines"]
7
7
 
8
8
  from zepben.ewb import TableRegulatingCondEq
9
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
9
+ from zepben.ewb.database.sql.column import Column, Nullable
10
10
 
11
11
 
12
12
  class TableRotatingMachines(TableRegulatingCondEq):
@@ -5,7 +5,7 @@
5
5
 
6
6
  __all__ = ["TableSeriesCompensators"]
7
7
 
8
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
8
+ from zepben.ewb.database.sql.column import Column, Nullable
9
9
  from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_conducting_equipment import TableConductingEquipment
10
10
 
11
11
 
@@ -7,7 +7,7 @@ __all__ = ["TableShuntCompensators"]
7
7
 
8
8
  from abc import ABC
9
9
 
10
- from zepben.ewb.database.sqlite.tables.column import Column, Nullable
10
+ from zepben.ewb.database.sql.column import Column, Nullable
11
11
  from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_regulating_cond_eq import TableRegulatingCondEq
12
12
 
13
13