Skip to content

Releases: stonebig/baresql

mysql support with CTE !

05 Mar 10:35
Compare
Choose a tag to compare
v0.6

update readme (mysql support) before 0.6 release

bug correction + latest SQLite 3.8.3 beta from 2013-01-22

24 Jan 06:37
Compare
Choose a tag to compare

add missing files

24 Jan 07:04
Compare
Choose a tag to compare
v.0.5.1b

struggling with git add -f

with true SQLite CTE (a dream about to come true!)

19 Jan 17:32
Compare
Choose a tag to compare

small bug fix

01 Jan 17:43
Compare
Choose a tag to compare
v0.4.2

updated example with source

basice CTE in-lining

01 Jan 17:11
Compare
Choose a tag to compare

CTE transformation into SQLite acceptable instructions

  • "with x as (y) z" CTEs can be transformed :
    . in one 'inlined' select
    . or optionally in "create tmp view x as y ;z"
  • "with x(b) as (y) z" CTEs is transformed in "create tmp table x(b);insert into x y;z"

Add the handling of comments in the sql

28 Dec 15:45
Compare
Choose a tag to compare

handle CTE with views instead of tables (whenever possible)

26 Dec 10:25
Compare
Choose a tag to compare

CTE translator for SQLITE now translates

  • "with x as (" as a temporary VIEW
  • "with x() as(" as a temporary TABLE

first feature complete version with SQLite and pandas

25 Dec 17:05
Compare
Choose a tag to compare

Change since v0.2

  • .column output (to get the result in a list of values),
  • Common Table Expression over SQLite,
  • auditable log of the sql instructions made (to show how CTE are implemented over SQLite),
  • examples, in the examples directory.