Code Monkey home page Code Monkey logo

Comments (5)

stephencelis avatar stephencelis commented on August 20, 2024

Using the extensions means you can bypass Blob and not need to call datatypeValue directly. E.g.:

let uuid = Expression<Int>("uuid")
let png = Expression<UIImage?>("png")

if let insertedID = ingredientTable.insert(uuid <- createUUID() ,png <- pic) {
    println("inserted id: \(insertedID)")
}

This also means that you'll get UIImage objects directly when accessing a retrieved row (no need to translate the Blob into a UIImage yourself):

for ingredient in ingredientTable {
    let image = ingredient.get("png") // UIImage?
}

Beyond that, I've copied and pasted your code above and have had no issue compiling. Can you provide more code? I faked the missing data using the following:

let ingredientsTable = Database()["ingredients"]
func createUUID() -> Int { return 1 }
let pic = UIImage(named: "test")

from sqlite.swift.

carl2013 avatar carl2013 commented on August 20, 2024

Thanks for the clarification on the extension usage.

I did get my code above to compile when I changed png <- pic?.datatypeValue to png <- pic!.datatypeValue although I think that is not exactly what I want to be doing here.

I plan on updating my code to follow your extension instructions.

Thanks again. The project is a godsend.

from sqlite.swift.

stephencelis avatar stephencelis commented on August 20, 2024

What is png exactly? In your example, it's:

Expression<Blob?>

But I'd expect the behavior you were getting above if it were:

Expression<Blob>

from sqlite.swift.

stephencelis avatar stephencelis commented on August 20, 2024

Is it safe to close this issue now?

from sqlite.swift.

carl2013 avatar carl2013 commented on August 20, 2024

Oh yes. It's working great now! Thanks again

from sqlite.swift.

Related Issues (20)

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.