or
Sign in to turn on 1-Click ordering.
or
Amazon Prime Free Trial required. Sign up when you check out. Learn More
Sell Back Your Copy
For a $1.70 Gift Card
Trade in
More Buying Choices
Have one to sell? Sell yours here
SQLite
 
See larger image
 
Tell the Publisher!
I'd like to read this book on Kindle

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.

SQLite [Paperback]

Chris Newman (Author)
2.8 out of 5 stars  See all reviews (4 customer reviews)

List Price: $39.99
Price: $25.12 & this item ships for FREE with Super Saver Shipping. Details
You Save: $14.87 (37%)
  Special Offers Available
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
In Stock.
Ships from and sold by Amazon.com. Gift-wrap available.
Only 1 left in stock--order soon.
Want it delivered Tuesday, January 31? Choose One-Day Shipping at checkout. Details
Textbook Student FREE Two-Day Shipping for Students. Learn more


Book Description

067232685X 978-0672326851 November 19, 2004 1

SQLite is a small, fast, embeddable database. What makes it popular is the combination of the database engine and interface into a single library as well as the ability to store all the data in a single file. Its functionality lies between MySQL and PostgreSQL, however it is faster than both databases.

In SQLite, author Chris Newman provides a thorough, practical guide to using, administering and programming this up-and-coming database. If you want to learn about SQLite or about its use in conjunction with PHP this is the book for you.


Special Offers and Product Promotions

  • Buy $50 in qualifying physical textbooks, get $5 in Amazon MP3 Credit. Here's how (restrictions apply)

Frequently Bought Together

SQLite + The Definitive Guide to SQLite + Using SQLite
Price For All Three: $106.17

Show availability and shipping details

Buy the selected items together
  • In Stock.
    Ships from and sold by Amazon.com.
    This item ships for FREE with Super Saver Shipping. Details

  • The Definitive Guide to SQLite $38.36

    In Stock.
    Ships from and sold by Amazon.com.
    This item ships for FREE with Super Saver Shipping. Details

  • Using SQLite $42.69

    In Stock.
    Ships from and sold by Amazon.com.
    This item ships for FREE with Super Saver Shipping. Details



Editorial Reviews

About the Author

Chris Newman is a consultant programmer specializing in the development of custom web-based database applications to a loyal international client base.

A graduate of Keele University, Chris lives in Stoke-on-Trent, England, where he runs Lightwood Consultancy Ltd, the company he founded in 1999 to further his interest in Internet technology. Lightwood operates web hosting services under the DataSnake brand and is proud to be one of the first hosting companies to offer and support SQLite as a standard feature on all accounts.

More information on Lightwood Consultancy Ltd can be found at http://www.lightwood.net, and Chris can be contacted at chris@lightwood.net.

Excerpt. © Reprinted by permission. All rights reserved.

Introduction: SQLite

Introduction

Welcome to SQLite

SQLite is one of the fastest-growing database engines around, but that's growth in terms of popularity, not anything to do with its size. In fact one of SQLite's greatest strengths is that it is extremely lightweight indeed yet still manages to retain a large number of features.

Why Use SQLite?

There are many reasons for choosing SQLite, including

  • Performance—SQLite performs database operations efficiently and is faster than other free databases such as MySQL and PostgreSQL.

  • Size—SQLite has a small memory footprint and only a single library is required to access databases, making it ideal for embedded database applications.

  • Portability—SQLite runs on many platforms and its databases can be ported easily with no client/server setup or ongoing administration required.

  • Stability—SQLite is ACID-compliant, meeting all four criteria—Atomicity, Consistency, Isolation, and Durability.

  • SQL support—SQLite implements a large subset of the ANSI-92 SQL standard, including views, subqueries, and triggers.

  • Interfaces—SQLite has language APIs for C/C++, PHP, Perl, Python, Tcl, and many more beyond those covered in this book.

  • Cost—SQLite is in the public domain and therefore is free to use for any purpose without cost and can be freely redistributed.

Who This Book Is For

This book is aimed at intermediate- to advanced-level programmers looking to include database functionality within their applications. You should have at least a basic working knowledge of one of the languages covered by this book—C/C++, PHP, Perl, Python, or Tcl. The underlying library is written in C/C++; however, it is not necessary to understand that language in order to use the full capabilities of SQLite in your applications.

If you are a new programmer you should still be able to pick up SQLite fairly quickly, but this book does not cover programming basics in any of the languages for which there is a SQLite interface. The benefits of SQLite are only realized through using a programming API as it does not include the tools required to operate as a standalone database system.

It is not a prerequisite to have used a relational database in the past. If SQLite will be the first SQL-based database you have encountered, the book gives a thorough SQL tutorial covering the syntax as understood by SQLite. SQL veterans will still benefit from reviewing the sections that cover features included and omitted by SQLite.

How the Book Is Organized

This book is organized into three parts.

Part I—General SQLite Use

  • Chapter 1: Getting Started—Gives some background on SQLite and discusses its strengths and weaknesses. Covers a few basic SQL commands to get things going and looks at the interactive interfaces to SQLite.

  • Chapter 2: Working with Data—A concise SQLite tutorial introduces working with the SQLite back end. Discusses programming and database design issues related to SQLite.

  • Chapter 3: SQLite Syntax and Use—Examines SQL syntax as supported by SQLite and suggests workarounds for the unsupported features.

  • Chapter 4: Query Optimization—Discusses performance considerations related to SQL queries and gives some techniques that can be used to speed up your database application.

Part II—Using SQLite Programming Interfaces

  • Chapter 5: The PHP Interface—How to use the SQLite library within PHP scripts to create dynamic, database-driven web pages.

  • Chapter 6: The C/C++ Interface—How to write C/C++ programs using the SQLite library.

  • Chapter 7: The Perl Interface—How to write Perl scripts using the Database Interface module and SQLite Database Driver.

  • Chapter 8: The Tcl Interface—How to write Tcl scripts using the supplied SQLite extension.

  • Chapter 9: The Python Interface—How to write Python programs using the PySQLite extension.

Part III—SQLite Administration

  • Chapter 10: General Database Administration—Discusses basic administration of SQLite and examines SQLite's internal architecture and the Virtual Database Engine (VDBE).

Versions of Software Covered

At the time of writing, the most recent stable version of SQLite is 2.8.15; however, SQLite 3 is already available as a beta and includes some changes and enhancements over the version 2 series. This book was written with the established, stable, and well-supported version 2 series in mind.

For the other software discussed in this book, the current versions are as follows:

  • PHP 5.0.1

  • Perl 5.8.5

  • Perl::DBI 1.4.3

  • DBD::SQLite2 0.32

  • Tcl 8.4.7

  • Python 2.3.4

Additional Resources

The following are the primary web pages for each of the packages used in this book:

  • SQLite—http://www.sqlite.org/

  • PHP—http://www.php.net/

  • Perl DBI—http://dbi.perl.org/

  • Tcl—http://www.tcl.tk/

  • Python—http://www.python.org/

For support with any of these technologies the relevant mailing list is a good place to start. Instructions on joining them can be found in the following locations:

  • SQLite—http://www.sqlite.org/support.html

  • PHP—http://www.php.net/mailing-lists.php

  • Perl DBI—http://dbi.perl.org/support/

  • Tcl—http://wiki.tcl.tk/1301

  • Python—http://www.python.org/community/lists.html


© Copyright Pearson Education. All rights reserved.


Product Details

  • Paperback: 336 pages
  • Publisher: Sams; 1 edition (November 19, 2004)
  • Language: English
  • ISBN-10: 067232685X
  • ISBN-13: 978-0672326851
  • Product Dimensions: 9 x 7 x 0.8 inches
  • Shipping Weight: 1.2 pounds (View shipping rates and policies)
  • Average Customer Review: 2.8 out of 5 stars  See all reviews (4 customer reviews)
  • Amazon Best Sellers Rank: #1,011,377 in Books (See Top 100 in Books)

More About the Author

Discover books, learn about writers, read author blogs, and more.

 

Customer Reviews

4 Reviews
5 star:    (0)
4 star:
 (1)
3 star:
 (1)
2 star:
 (2)
1 star:    (0)
 
 
 
 
 
Average Customer Review
2.8 out of 5 stars (4 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

13 of 17 people found the following review helpful:
2.0 out of 5 stars Not great - doesn't cover SQLite 3.0, July 21, 2006
This review is from: SQLite (Paperback)
This is an old book, and doesn't cover the newer SQLite 3.x information.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


11 of 16 people found the following review helpful:
2.0 out of 5 stars Not very useful, March 5, 2006
This review is from: SQLite (Paperback)
As far as I know, this is the first book on SQLite and for that Chris Newman deserves a compliment.
Beyond that, this book is not very useful though:
1) It explains some basic SQL syntax but I didn't buy this book to learn SQL.
2) Very little information about the specifics and pitfalls of SQLite syntax, I rarely find what I'm looking for.
3) Being a PHP developer I don't need the chapters on C++, Perl, TCL and Python (about 25% of the book).
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


13 of 22 people found the following review helpful:
4.0 out of 5 stars faster than MySQL, December 24, 2004
This review is from: SQLite (Paperback)
My impression was that PHP and MySQL were de facto two sides of the same coin. Many websites using PHP deploy MySQL on the backend. Indeed, there have been several books written about implementing this combination. But Newman offers a simple alternative. A stripped down SQL database that he claims will suffice for many websites. Indeed, he points out that SQLite has proved persuasive enough that PHP5 ships with it.

Going over its syntax, the book shows much of SQLite to be generic SQL. Given that whatever database you choose, you should probably stick to standard SQL as much as possible, then SQLite suffers from no particular deficiency here.

What is distinctive is that its data resides in just one file. Greatly eases administration. Plus, other databases are often implemented as client-server, so as to service queries coming in from the Net. It is indeed a disadvantage that SQLite cannot do this. But in return, by eliminating a network layer, it can be twice as fast as MySQL. Wow.

Cautiously, I'd say it may be attractive to some websites.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No

Share your thoughts with other customers: Create your own review
 
 
 
Most Recent Customer Reviews


Only search this product's reviews



What Other Items Do Customers Buy After Viewing This Item?


Tags Customers Associate with This Product

 (What's this?)
Click on a tag to find related items, discussions, and people.
 
(1)

Your tags: Add your first tag
 

Sell a Digital Version of This Book in the Kindle Store

If you are a publisher or author and hold the digital rights to a book, you can sell a digital version of it in our Kindle Store. Learn more

Customer Discussions

This product's forum
Discussion Replies Latest Post
No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
 


Active discussions in related forums
Search Customer Discussions
Search all Amazon discussions
   
Related forums



So You'd Like to...


Create a guide


Look for Similar Items by Category


Look for Similar Items by Subject