orm-database 0.3.14__tar.gz → 0.3.15__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: orm_database
3
- Version: 0.3.14
3
+ Version: 0.3.15
4
4
  Summary: This module is written to launch your programs with any database you want in the shortest time
5
5
  Home-page: https://github.com/sisrsis/orm-database
6
6
  Author: SISRSIS
@@ -100,7 +100,6 @@ class PostgreSQL:
100
100
  try:
101
101
  query=query_baseModel_create_table(table,class_BaseModel)
102
102
  await self.db.execute(query)
103
- await self.db.close()
104
103
  return True
105
104
  except:
106
105
  return False
@@ -108,20 +107,17 @@ class PostgreSQL:
108
107
  async def teble_create(self, table: str, field: dict):
109
108
  query=query_create_table(table,field)
110
109
  await self.db.execute(query)
111
- await self.db.close()
112
110
 
113
111
 
114
112
  async def insert_value(self, table: str, value: dict):
115
113
  query = query_insert_value(table,value)
116
114
  await self.db.execute(query)
117
- await self.db.close()
118
115
 
119
116
 
120
117
  async def insert_values(self, table: str, values: list):
121
118
  for value in values:
122
119
  query = query_insert_values(table=table,value=value)
123
120
  await self.db.execute(query)
124
- await self.db.close()
125
121
 
126
122
  async def select_all(self, table: str, filed: list, all: bool = False):
127
123
  if all == True:
@@ -145,7 +141,6 @@ class PostgreSQL:
145
141
  data[filed[conter]] = b
146
142
  conter += 1
147
143
  data_row.append(dict(data))
148
- await self.db.close()
149
144
  print(data_row)
150
145
  return data_row
151
146
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: orm_database
3
- Version: 0.3.14
3
+ Version: 0.3.15
4
4
  Summary: This module is written to launch your programs with any database you want in the shortest time
5
5
  Home-page: https://github.com/sisrsis/orm-database
6
6
  Author: SISRSIS
@@ -6,7 +6,7 @@ long_description = (this_directory / "README.md").read_text()
6
6
 
7
7
  setup(
8
8
  name='orm_database',
9
- version='0.3.14',
9
+ version='0.3.15',
10
10
  description='This module is written to launch your programs with any database you want in the shortest time ',
11
11
  license="MIT",
12
12
  author='SISRSIS',
File without changes
File without changes
File without changes