• Complain

Kevin Languedoc - Build iOS Database Apps with Swift and SQLite

Here you can read online Kevin Languedoc - Build iOS Database Apps with Swift and SQLite full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2016, publisher: Apress, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

No cover
  • Book:
    Build iOS Database Apps with Swift and SQLite
  • Author:
  • Publisher:
    Apress
  • Genre:
  • Year:
    2016
  • Rating:
    5 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 100
    • 1
    • 2
    • 3
    • 4
    • 5

Build iOS Database Apps with Swift and SQLite: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Build iOS Database Apps with Swift and SQLite" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

This book leads you through the essential concepts and new iOS 10 SDK and Swift 3 programming language APIs to build iPhone and iPad database driven applications using the defacto standard for data storage for mobile apps, SQLite. Readers will learn about SQL operations like selecting, inserting, updating and deleting data using various data types like text, numerical types, images and even audio/video data. After working through this book, you will gain an expert view of developing iOS apps using SQlite as a data storage using Objective-C and Swift. With Build iOS Database Apps with Swift and SQLite you will also gain expert knowledge on how to create databases at runtime, including creating or modifying indexes, triggers, tables, columns, and views. The examples use time-tested code from working applications.

Kevin Languedoc: author's other books


Who wrote Build iOS Database Apps with Swift and SQLite? Find out the surname, the name of the author of the book and a list of all author's works by series.

Build iOS Database Apps with Swift and SQLite — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Build iOS Database Apps with Swift and SQLite" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
SQLite Kevin Languedoc Build iOS Database Apps with Swift and SQLite - photo 1
SQLite Kevin Languedoc Build iOS Database Apps with Swift and SQLite - photo 2

SQLite

Picture 3

Kevin Languedoc

Build iOS Database Apps with Swift and SQLite

Kevin Languedoc

Montreal

C a n a d a

ISBN-13 (pbk): 978-1-4842-2231-7 ISBN-13 (electronic): 978-1-4842-2232-4 DOI 10.1007/978-1-4842-2232-4

Library of Congress Control Number: 2016958726

Copyright 2016 by Kevin Languedoc

This work is subject to copyright. All rights are reserved by the Publisher, whether the whole or part of the material is concerned, specifically the rights of translation, reprinting, reuse of illustrations, recitation, broadcasting, reproduction on microfilms or in any other physical way, and transmission or information storage and retrieval, electronic adaptation, computer software, or by similar or dissimilar methodology now known or hereafter developed.

Trademarked names, logos, and images may appear in this book. Rather than use a trademark symbol with every occurrence of a trademarked name, logo, or image we use the names, logos, and images only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark. The use in this publication of trade names, trademarks, service marks, and similar terms, even if they are not identified as such, is not to be taken as an expression of opinion as to whether or not they are subject to proprietary rights.

While the advice and information in this book are believed to be true and accurate at the date of publication, neither the authors nor the editors nor the publisher can accept any legal responsibility for any errors or omissions that may be made. The publisher makes no warranty, express or implied, with respect to the material contained herein.

Managing Director: Welmoed Spahr

Lead Editor: Aaron Black

Technical Reviewer: Massimo Nardone

Editorial Board: Steve Anglin, Pramila Balan, Laura Berendson, Aaron Black, Louise Corrigan, Jonathan Gennick, Robert Hutchinson, Celestin Suresh John, Nikhil Karkal, James Markham, Susan McDermott, Matthew Moodie, Natalie Pao, Gwenan Spearing

Coordinating Editor: Jessica Vakili

Copy Editor: April Rondeau

Compositor: SPi Global

Indexer: SPi Global

Artist: SPi Global

Distributed to the book trade worldwide by Springer Science+Business Media New York, 233 Spring Street, 6th Floor, New York, NY 10013. Phone 1-800-SPRINGER, fax (201) 348-4505, e-mail orders-ny@springer-sbm.com , or visit www.springeronline.com . Apress Media, LLC is a California LLC and the sole member (owner) is Springer

Science + Business Media Finance Inc (SSBM Finance Inc). SSBM Finance Inc is a Delaware corporation. For information on translations, please e-mail rights@apress.com , or visit www.apress.com .

Apress and friends of ED books may be purchased in bulk for academic, corporate, or promotional use. eBook versions and licenses are also available for most titles. For more information, reference our Special Bulk SaleseBook Licensing web page at www.apress.com/bulk-sales . Any source code or other supplementary materials referenced by the author in this text are available to readers at www.apress.com . For detailed information about how to locate your books source code, go to

www.apress.com/source-code/ . Readers can also access source code at SpringerLink in the Supplementary

Material section for each chapter.

Printed on acid-free paper

I dedicate this book to my wife, Louisa, and my children, Patrick and Megan.

About the Author - photo 4

About the Author .....................................................................................................xv

About the Technical Reviewer ...............................................................................xvii

Acknowledgments ..................................................................................................xix

Preface ...................................................................................................................xxi

Chapter 1: Creating the Objective-C Wrapper ........................................................ 1

Chapter 2: Creating SQLite Databases ................................................................. 11

Chapter 3: Creating Databases During Runtime .................................................. 25

Chapter 4: Altering Databases and Other Features ............................................. 45

Chapter 5: Inserting Records ............................................................................... 63

Chapter 6: Selecting Records .............................................................................. 89

Chapter 7: Updating Records ............................................................................. 113

Chapter 8: Deleting Records .............................................................................. 131

Chapter 9: Searching for Records in SQLite ...................................................... 145

Chapter 10: Working with Multiple Databases .................................................. 161

Chapter 11: Backing Up SQLite Databases ........................................................ 175

Chapter 12: Analyzing SQLite Databases........................................................... 187

Index ..................................................................................................................... 197

About the Author - photo 5

About the Author .....................................................................................................xv

About the Technical Reviewer ...............................................................................xvii

Acknowledgments ..................................................................................................xix

Preface ...................................................................................................................xxi

Chapter 1: Creating the Objective-C Wrapper ........................................................ 1

Getting Started ................................................................................................................. 1

Creating the Swift iOS Project .......................................................................................... 2

Create the Db Mgr Project Structure ...................................................................................................... 3

Adding the SQLite 3 Library .................................................................................................................... 3

Creating the Bridge .......................................................................................................... 5

Creating the Bridge Header File.............................................................................................................. 5

Con guring the Swift Compiler .............................................................................................................. 7

Creating the Swift Wrapper Functions.............................................................................. 7

Add the DbMgrDAO Class ....................................................................................................................... 8

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Build iOS Database Apps with Swift and SQLite»

Look at similar books to Build iOS Database Apps with Swift and SQLite. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Build iOS Database Apps with Swift and SQLite»

Discussion, reviews of the book Build iOS Database Apps with Swift and SQLite and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.