Skip to content

Releases: v1a0/sqllex

Public alpha v0.1.8.5

Choose a tag to compare

@v1a0 v1a0 released this 16 May 06:44
  • 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

Choose a tag to compare

@v1a0 v1a0 released this 14 May 14:06
  • Bugs hotfix

Public alpha v0.1.8.3

Choose a tag to compare

@v1a0 v1a0 released this 14 May 13:27
  • Bugs Hotfix

Public alpha v0.1.8.2

Choose a tag to compare

@v1a0 v1a0 released this 14 May 12:05
  • 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

Choose a tag to compare

@v1a0 v1a0 released this 12 May 10:44
  • AUTOINCREMENT issue fixed
  • select return tuples or empty lists bug fixed
  • logo added

Public alpha v0.1.7.1

Choose a tag to compare

@v1a0 v1a0 released this 22 Apr 10:53

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

Choose a tag to compare

@v1a0 v1a0 released this 22 Apr 04:44
  • BLOB type added
  • Column type issue fixed
  • Minor bug fix

Public alpha v0.1.6.3

Choose a tag to compare

@v1a0 v1a0 released this 19 Apr 14:39

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

Choose a tag to compare

@v1a0 v1a0 released this 18 Apr 07:03
wiki upd

Public alpha v0.1.6.1-hotfix

Choose a tag to compare

@v1a0 v1a0 released this 18 Apr 04:30
  1. 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

  2. from_as arg remover because it is not used

  3. WHERE "<" or ">" issue partially fixed

  4. Logging level-control added, debug_mode added

  5. Removed mistaken spaces in scripts (fixed)

  6. Dir "types_" renamed to "types"

  7. New tests added

  8. UPDATE method major fixed