zoukankan      html  css  js  c++  java
  • Database

    1. SQLite

    SQLite is a C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine. 

    "SQLite is not directly comparable to client/server SQL database engines such as MySQL, Oracle, PostgreSQL, or SQL Server since SQLite is trying to solve a different problem.

    Client/server SQL database engines strive to implement a shared repository of enterprise data. They emphasize scalability, concurrency, centralization, and control. SQLite strives to provide local data storage for individual applications and devices. SQLite emphasizes economy, efficiency, reliability, independence, and simplicity." ----------- from "https://www.sqlite.org/whentouse.html"

    2. Installation

     My system is Ubuntu 14.04

     $sudo apt-get install sqlite3 libsqlite3-dev

    3. Enter/terminate SQLite from command line(a program named sqlite3 will be executed)

      $ sqlite3 hello

      $ ctrl-D

      $ Ctrl-C    will stop a long-running SQL statement

      each SQL statement should be ending with a semicolon(;)

    4. dot-commands: commands that starts with a dot

        $ .help    will show all the supported dot-commands 

    5. writting results to a file

  • 相关阅读:
    构建之法读书笔记04
    团队冲刺06
    12.23——周总
    团队冲刺05
    团队冲刺04
    用户场景分析
    团队冲刺03
    返回一个二维数组中最大联通子数组的和
    团队冲刺02
    FFT/NTT基础题总结
  • 原文地址:https://www.cnblogs.com/sarah-zhang/p/12122576.html
Copyright © 2011-2022 走看看