0

Very, very new at Obj-C... that said, I had some problems with code earlier, which seem to be resolved (I guess!). Now, when I do a build, I get this:

Error Message

I am not using vanilla SQLite, but rather SQLCipher, (http://sqlcipher.net)

What symbols is it talking about? and how do I fix it?

Thank you (in advance) for looking at this... I'm "dead in the water" until I can get this fixed!

MPelletier
  • 16,256
  • 15
  • 86
  • 137
SpokaneDude
  • 4,856
  • 13
  • 64
  • 120

1 Answers1

1

It looks like you haven't added the SQLite library to your project. Choose Project->Add to Project... and select the library.

When Xcode says 'symbols not found,' it's telling you that you're using a name for something that's not defined anywhere. The specific symbol it shows you is _sqlite3_open, which looks like the sort of thing that would be defined by the SQLite library.

Caleb
  • 124,013
  • 19
  • 183
  • 272