Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: alicebob/sqlittle
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: refs
Choose a base ref
...
head repository: alicebob/sqlittle
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 11 commits
  • 24 files changed
  • 3 contributors

Commits on Mar 18, 2020

  1. Merge pull request #31 from alicebob/refs

    support "REFERENCES" in column defs
    alicebob authored Mar 18, 2020
    Configuration menu
    Copy the full SHA
    16dcf4b View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2020

  1. Configuration menu
    Copy the full SHA
    478877b View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2020

  1. add a pager for windows

    ecordell committed Apr 10, 2020
    Configuration menu
    Copy the full SHA
    3b19a46 View commit details
    Browse the repository at this point in the history
  2. refactor sqlite locking constants

    constants are shared between os lock implementations, so move them
    out of os-specific files
    
    also camelcases them
    ecordell committed Apr 10, 2020
    Configuration menu
    Copy the full SHA
    8532e88 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #33 from ecordell/win-pager

    Add a pager for windows
    alicebob authored Apr 10, 2020
    Configuration menu
    Copy the full SHA
    528efd8 View commit details
    Browse the repository at this point in the history
  4. update README

    alicebob committed Apr 10, 2020
    Configuration menu
    Copy the full SHA
    932e06a View commit details
    Browse the repository at this point in the history

Commits on May 6, 2020

  1. let's make a database/sql driver (#32)

    * driver skeleton
    
    * comments
    
    * basic tablescan
    
    * '*' is a special token
    
    * parse the query and get the tablename from the SELECT
    
    If it's a SELECT, otherwise we'll complain.
    
    * Update driver/driver.go
    
    Co-Authored-By: Sebastien Binet <[email protected]>
    
    * use the current Go version
    
    * add db.Columns() method
    
    * use the main sqlittle to access the tables
    
    It already has all the details about columns and rows, which can get
    weird sometimes.
    
    * don't pretend Exec() works
    
    * support column names in SELECT
    
    It doesn't yet error on invalid column names.
    
    * introduce `SelectDone()`, which can stop iterating
    
    * make rows.Close() stop the iterating, no go routine leak
    
    * don't drop the error for invalid column names
    
    "invalid column" errors will only be returned via rows.Err() for now.
    
    * implement QueryContext instead
    
    * test for QueryRow
    
    Nothing we need to do to support that function, but just a test to be
    sure it really works.
    
    * no more autoreadme :(
    
    It doesn't support Go modules. Any alternative?
    
    * add driver to the main README
    
    * comment typo
    
    * be more explicit about the implemented interfaces
    
    Co-authored-by: Sebastien Binet <[email protected]>
    alicebob and sbinet authored May 6, 2020
    Configuration menu
    Copy the full SHA
    e4b4152 View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2021

  1. Configuration menu
    Copy the full SHA
    142d147 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2023

  1. Configuration menu
    Copy the full SHA
    949ca90 View commit details
    Browse the repository at this point in the history
  2. go mod tidy

    alicebob committed Jan 10, 2023
    Configuration menu
    Copy the full SHA
    63757c5 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2023

  1. go get and go mod tidy

    alicebob committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    4edd256 View commit details
    Browse the repository at this point in the history
Loading