Releases: v1a0/sqllex
Release list
Public alpha v0.1.8.5
- SQLite3x.insert() speed up 17 times by fast_insert_stmt
- SQLite3xTable.find() method added
- Auto connect and disconnect fixed for all execut-s
- del added for SQLite3x
- mistaken warnings removed
- from select_all method remover SELECT var
- For all 'selects' unknown kwargs now getting as WHERE conditions
Public alpha v0.1.8.4
Public alpha v0.1.8.3
Public alpha v0.1.8.2
-
SQLite3xTable class added, you can get it like this SQLite3x["tablen_ame"], or SQLite3x.tables (to get all of them)
-
Now you can work with table as object. like takle.select() without menthion table name. table.drop()
-
connect / disconnect methods added for SQLite3x to speed up large inserts.
-
Fixed methods of SQLite3xTable
-
new tests added
-
Bugfix for python 3.8
-
SQLite3xTable methtods bugfixing
-
Readme upd
Public alpha v0.1.7.2
- AUTOINCREMENT issue fixed
- select return tuples or empty lists bug fixed
- logo added
Public alpha v0.1.7.1
v0.1.7:
-
Adeed JOIN support for SELECT method ( join )
-
- INNER_JOIN
-
- LEFT_JOIN
-
- CROSS_JOIN
-
- ON
-
For FROM arg added "AS" support ( for_as )
v0.1.7.1:
- create_stmt fixed
Public alpha v0.1.6.5
- BLOB type added
- Column type issue fixed
- Minor bug fix
Public alpha v0.1.6.3
Change order of arguments for SELECT method
Now TABLE arg is the 1'st and SELECT arg 2'nd
Public Alpha v0.1.6.2-hotfix
Public alpha v0.1.6.1-hotfix
-
Change args names for public methods:
with_ -> WITH
where -> WHERE
or_ -> OR
order_by -> ORDER_BY
limit -> LIMIT
offset -> OFFSET
set_ -> SET
table -> TABLE
select -> SELECT
if_exist -> IF_EXIST -
from_as arg remover because it is not used
-
WHERE "<" or ">" issue partially fixed
-
Logging level-control added, debug_mode added
-
Removed mistaken spaces in scripts (fixed)
-
Dir "types_" renamed to "types"
-
New tests added
-
UPDATE method major fixed