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: stephencelis/SQLite.swift
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: hemuhan/SQLite.swift
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.
  • 5 commits
  • 1 file changed
  • 1 contributor

Commits on Jun 14, 2016

  1. add Row function toDictionary()

    this function can fast convert row's all key:value to dictionary 
    now you can use Row["key"] get the value 
    this func auto convert Int64 to Int
    hemuhan authored Jun 14, 2016
    Configuration menu
    Copy the full SHA
    a980b2b View commit details
    Browse the repository at this point in the history
  2. remove key "

    remove key "
    hemuhan authored Jun 14, 2016
    Configuration menu
    Copy the full SHA
    52e46b9 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2016

  1. remove Optional property from toDictionary

    old fun can get String type for Optional Property 
    now change String to NSString  for remove Property
    hemuhan authored Jun 15, 2016
    Configuration menu
    Copy the full SHA
    ce839e1 View commit details
    Browse the repository at this point in the history
  2. add insert(NSDictionary) method

    now you can use underside code to insert data
    
    insert(["id":1,"name":"this is test","null_code":NSNULL(),"bool":false])
    
    fixed toDictionary() method 
    if column is null , now return NSNULL()
    hemuhan authored Jun 15, 2016
    Configuration menu
    Copy the full SHA
    9e5eb9e View commit details
    Browse the repository at this point in the history
  3. fix insert(NSDictionary) bug

    now you can call  insert(["id":1,"double":12.22,"bool":false,"null":NSNULL()]) 
    
    this method not support BLOB type
    hemuhan authored Jun 15, 2016
    Configuration menu
    Copy the full SHA
    fde408e View commit details
    Browse the repository at this point in the history
Loading