Code Monkey home page Code Monkey logo

htsqlite's Introduction

Features

  • The sqlite3 is encapsulated, the dictionary is directly passed, and bound to sql, including blob data can also be bound to sql
  • support updateOrInsert
  • Support transaction transaction

Usage

Example

pod 'HTSQLite', :git => 'https://github.com/hellohublot/HTSQLite.git'
// create
let path = NSHomeDirectory() + "/student.db"
let create = """
    create table if not exists student (
        id integer primary key autoincrement,
        name varchar(50) default '' not null,
        score int default -1 not null,
    );
"""
let sqlite = SQLite.init(path: path, create: create)

// insert
let insert = "insert into student " + SQLBind.insert([
    "name": name,
    "score": score
])
sqlite.execute(insert)

// update
let update = "update student set " + SQLBind.update([
    "score": score,
]) + " where " + SQLBind.whereEqual([
    "id": id
])
sqlite.execute(update)

// transaction + updateOrInsert
sqlite.transaction {
    let success = sqlite.update(tableName: "student", array: [[
        "id": id,
        "score": score
    ]])
    return success
}

Author

hellohublot, [email protected]

htsqlite's People

Contributors

hellohublot avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.