Changes

Swift iOS 8 Database Implementation using SQLite

30 bytes added, 04:28, 10 November 2016
Preparing an iOS Application Project for SQLite Integration
<htmlet>ios10</htmlet>
== Preparing an iOS Application Project for SQLite Integration ==
<htmlet>adsdaqbox_flow</htmlet>
By default, the Xcode environment does not assume that you will be including SQLite in your application. When developing SQLite based applications a few additional steps are required to ensure the code will compile when the application is built. First, the project needs to be configured to include the libsqlite3.tbd dynamic library during the link phase of the build process. To achieve this select the target entry in the Xcode project navigator (the top entry with the product name) to display the summary information. Select the Build Phases tab to display the build information.
The Link Binary with Libraries section lists the libraries and frameworks already included in the project. To add another library or framework click on the ‘+’ button to display the full list. From this list, select the required item (in this case libsqlite3.tbd) and click Add.
== SQLite, Swift and Wrappers ==