jennifer_sqlite3_adapter

SQLite3 adapter for Jennifer ORM sqlite3 adapter
0.1.0 released

Jennifer SQLite3 adapter

SQLite3 adapter for Jennifer.

Installation

  1. Add the dependency to your shard.yml:
dependencies:
  jennifer_sqlite3_adapter:
    github: imdrasil/jennifer_sqlite3_adapter
  1. Run shards install

Usage

This shard requires Jennifer ~> 0.7.0. It is tested with SQLite 3.22.0 version.

require "jennifer"
require "jennifer_sqlite3_adapter"

Supported data types

| Method | SQLite3 | Crystal type | | --- | --- | --- | | #bool | INTEGER | Bool | | #integer | INTEGER | Int32 | | #bigint | INTEGER | Int32 | | #short | INTEGER | Int32 | | #tinyint | INTEGER | Int32 | | #float| REAL | Float64 | | #double | REAL | Float64 | | #real | REAL | Float64 | | #text | TEXT | String | | #string | TEXT | String | | #varchar | TEXT | String | | #time | TEXT | Time | | #timestamp | TEXT | Time |

Altering table

SQLite has no mechanism to alter existing table (except renaming it). Therefore operations, listed below, do multiple steps to achieve altering table: coping table schema to new temp table, coping data to new table, extending new table with required options, dropping old table and renaming temp table to original name:

  • dropping column
  • changing column
  • adding foreign key
  • dropping foreign key

It is necessary to notice that all those operations keep all data and indexes.

Contributing

  1. Fork it (https://github.com/imdrasil/jennifer_sqlite3_adapter/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors

jennifer_sqlite3_adapter:
  github: imdrasil/jennifer_sqlite3_adapter
  version: ~> 0.1.0
License MIT
Crystal 0.27.0

Authors

Dependencies 1

  • sqlite3
    {'github' => 'crystal-lang/crystal-sqlite3'}

Development Dependencies 2

  • jennifer release/0.7.0
    {'branch' => 'release/0.7.0', 'github' => 'imdrasil/jennifer.cr'}
  • sam
    {'github' => 'imdrasil/sam.cr'}

Dependents 1

Last synced .
search fire star recently