zoukankan      html  css  js  c++  java
  • SQLite

    一、简介

    sqlite是个关系型的嵌入式数据库,简单易用,而且在大多数的操作系统上都默认安装了

    二、基本命令

    1、创建数据库

    sqlite3 /data/tmp/wtv.db

    2、查看数据库

    sqlite> .databases
    seq  name             file
    ---  ---------------  ----------------------------------------------------------
    0    main             /data/tmp/wtv.db

    3、创建表

    CREATE TABLE w02840(id integer primary key autoincrement, uuid char(50) not null unique, no int not null);

    4、查看当前数据库下面的表

    sqlite> .tables
    w02840

    三、导出和导入

    # 导出
    sqlite3 /data/tmp/wtv.db .dump > wtv.sql
    # 导入
    sqlite3 /data/tmp/wtv.db < wtv.sql

    四、接口(Python)

    # python已经内置了SQLite3驱动

    #!/usr/bin/env python
    # -*- coding:utf8 -*-
    
    import json
    import sqlite3
    import urllib2
    
    TEMPLATES = ['0281', '0282', '0283', '02838', '0284', '02861', '0285', '02862', '02837', '02860', '0286', '0287', '02836', '0288', '02832', '02833', '02831', '02830', '02827', '0289', '0290', '02858', '02826', '02857', '02825', '0291', '02824', '02856', '0292', '02823', '02855', '0293', '02822', '02854', '0294', '02821', '02853', '0295', '02820', '02851', '0296', '02818', '02813', '02852', '02812', '66666', '02811', '0297', '02850', '02810', '02849', '02848', '02828', '02847', '02846', '02829', '02843', '02814', '02842', '02815', '02841', '02840', '02839', '88884', '02859', '02863', '02801', '02802', '02803', '02804', '02805', '02806', '02844', '0790']
    
    URL = "http://127.0.0.1:6000/ysten-lvoms-epg/epg/getChannels.shtml?templateId=%s"
    
    def ctable(c, template):
        sql = "CREATE TABLE w%s(id integer primary key autoincrement, uuid char(50) not null unique, no int not null);" % template
        c.execute(sql)
    
    
    def wuuid(c, template, url):
        try:
            response = urllib2.urlopen(url, timeout=1)
        except urllib2.URLError:
            print 0  # 接口Error则输出0
            return 0  # 退出当前循环
        else:
            data = json.load(response)
            if data == []:
                print "online %s empty" % template
            else:
                for item in data:
                    sql = "insert into w%s (uuid, no) values ('%s', %d)" % (template, item['uuid'], item['no'])
                    c.execute(sql)
    
    
    if __name__ == '__main__':
    
        conn = sqlite3.connect('/data/tmp/wtv.db')
        c = conn.cursor()
        for template in TEMPLATES:
            ctable(c, template)
            url = URL % template
            wuuid(c, template, url)
        conn.commit()
        print "Records created successfully"
        conn.close()
  • 相关阅读:
    linux free
    uptime
    简述负载均衡&CDN技术(转)
    大胆地去做自己坚信的事情,去做不伤害国家和客户的事情 做企业一定要专注。为企业制定战略目标,绝对不能超过三个。超过三个,你就记不住了,员工也记不住
    同一路由器不同vlan之间的通信(一)
    计算机基础之计算机网络与安全
    LayoutInflater的使用
    插入排序
    Java NIO与IO
    高速排序算法
  • 原文地址:https://www.cnblogs.com/metasequoia/p/9835443.html
Copyright © 2011-2022 走看看