sqlite-dbeaver-heidisql

http://www.sqlite.org/

http://www.sqliteexpert.com/  gui工具    这个网站的大部分信息在2015-10-9阅读完毕,下一步是阅读软件自带的帮助文档

将下面的格式化数据存入数据库

可以参考下面的sqlite数据类型的翻译

http://www.cnblogs.com/kfqcome/archive/2011/06/27/2137000.html

http://www.cnblogs.com/stephen-liu74/archive/2012/02/22/2325258.html

 

http://www.sqlite.org/arch.html

 

 

http://www.sqlite.org/opcode.html
"VDBE" or "Virtual DataBase Engine".  
vdbe.c source file narrative  adj. 叙事的,叙述的;叙事体的
canonical  adj.有权威的;公认的;规范的,典范的;标准的
substantial  adj. 大量的;实质的;内容充实的
routines  n. 常规,惯例(routine的复数);日常生活;日常活动
scattered  adj. 分散的;散乱的
complier-time
run-time
so far forth 到如此程度
so forth 等等


游标 cursor

那么游标就像您打开文件所得到的文件句柄一样,只要文件打开成功,该文件句柄就可代表该文件。对于游标而言,其道理是相同的。可见游标能够实现按与传统程序读取平面文件类似的方式处理来自基础表的结果集,从而把表中数据以平面文件的形式呈现给程序。
游标把作为面向集合的数据库管理系统和面向行的程序设计两者联系起来,使两个数据处理方式能够进行沟通。

 

sqlite expert personal edition version 3.5.76.2496
sqlite library version 3.8.8.3 

SQLite Expert version 3.5

Copyright © 2014 Coral Creek Software  珊瑚湾

coral   n. 珊瑚;珊瑚虫

creek  n. 小溪;小湾

vacuum  真空,清空

SQL As Understood By SQLite  sqlite所理解的sql

traverse  vt. 穿过;反对;详细研究;在…来回移动  You can use Up, Down, PageUp and PageDown keys to traverse the grid cells.
grid cell其实就是一行一行的  row,cell,grid

Additional software discounts are available for students, teachers, and employees of accredited learning institutions. 

discounts  n. 优惠,折价;扣减额(discount的复数形式)

accredited learning institutions
认可的学习机构

For multiple site licenses, please contact sales@sqliteexpert.com to obtain a quote.

quote  vi. 报价;引用;引证

single
adj. 单一的;单身的;单程的
n. 一个;单打;单程票

dota2
Single License Retail = 单人授权零售码    
就是全球的

SQLite Expert Professional - Single License
SQLite Expert Professional - Site License

 

 

 


SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.
单词:implements:p883:nonu-工具,器具:verb-贯彻,执行,实施
单词:self-contained:p1575:adj-独立的,自给的
翻译:sqlite是一个独立实施,无服务器,零配置,事务型sql数据库引擎。
SQLite is the most widely deployed SQL database engine in the world.
翻译:sqlite在全球是最广泛部署的sql数据库引擎。
The source code for SQLite is in the public domain.
翻译:sqlite的源代码在

 

About SQLite

SQLite is an in-process library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.
单词:in-process:adj. 进程内的;同进程的
翻译:SQLite是一个进程内的库,它实现了一个独立的,无服务器的,零配置的,事务型SQL数据库引擎。
The code for SQLite is in the public domain and is thus free for use for any purpose, commercial or private.
单词:thus:因此
翻译:SQLite的代码现在处于公用域,也因此可以以任何目的来使用,商业或私有。
SQLite is currently found in more applications than we can count, including several high-profile projects.
单词:high-profile:adj. 高调的;备受瞩目的;知名度高的
句型:more...than
翻译:SQLite被发现在多于我们能够计数的程序里,包括一些知名的项目。

SQLite is an embedded SQL database engine. Unlike most other SQL databases, SQLite does not have a separate server process.
SQLite是一个嵌入式sql数据库引擎。不像其它多数sql数据库,sqlite没有一个独立的服务器进程。
SQLite reads and writes directly to ordinary disk files. A complete SQL database with multiple tables, indices, triggers, and views, is contained in a single disk file.
sqlite直接读写普通磁盘文件。一个完全包含多表,目录,触发器,视图的sql数据库被包含在单个磁盘文件里。
The database file format is cross-platform - you can freely copy a database between 32-bit and 64-bit systems or between big-endian and little-endian architectures.
数据库文件格式是跨平台的-你可以自由地拷贝一个数据库在32位与64位系统之间,或者在大字节序与小字节序架构之间。
These features make SQLite a popular choice as an Application File Format. Think of SQLite not as a replacement for Oracle but as a replacement for fopen()
这些特性使得sqlite作为应用程序文件格式成为一个流行的选择。考虑sqlite不是作为oracle的一个替代,而是fopen()的一个替代。

SQLite is a compact library. With all features enabled, the library size can be less than 500KiB, depending on the target platform and compiler optimization settings.
单词:compact:adj.简洁的,紧凑的
sqlite是一个简洁的库。依赖于目标平台和编译器优化设置,即使所有特性启用,库大小也不超过500KB。
(64-bit code is larger. And some compiler optimizations such as aggressive function inlining and loop unrolling can cause the object code to be much larger.)
(64位代码更大。还有一些编译器优化例如:积极的内联函数和循环展开能引起目标代码变得更大。)
If optional features are omitted, the size of the SQLite library can be reduced below 300KiB.
如果可选特性省略,sqlite库大小能被减少到300KB以下。
SQLite can also be made to run in minimal stack space (4KiB) and very little heap (100KiB), making SQLite a popular database engine choice on memory constrained gadgets such as cellphones, PDAs, and MP3 players.
单词:memory constrained gadgets:内存受限的小玩意
sqlite同样能被制作成运行在最小的栈空间和非常小的堆之上,使得sqlite成为一个在内存受限的小玩意例如蜂窝电话,pda,mp3播放器之上的流行数据库引擎选择。
There is a tradeoff between memory usage and speed. SQLite generally runs faster the more memory you give it.
单词:tradeoff:n. 权衡;折衷;
在内存使用与速度之间有一个权衡。sqlite通常在你给他更多内存时运行的更快。
Nevertheless, performance is usually quite good even in low-memory environments.
然而,性能甚至在低内存环境下经常还更好。

SQLite is very carefully tested prior to every release and has a reputation for being very reliable. Most of the SQLite source code is devoted purely to testing and verification.
sqlite被仔细的测试在每次发布之前并且拥有了一个非常可靠的名声。sqlite的多数代码是纯粹用于测试和确认的。
An automated test suite runs millions and millions of test cases involving hundreds of millions of individual SQL statements and achieves 100% branch test coverage.
运行数以千万次的测试的一个自动化测试套件调用数以百万次的独立sql语句并且完成了100%分支测试覆盖。
SQLite responds gracefully to memory allocation failures and disk I/O errors. Transactions are ACID even if interrupted by system crashes or power failures.
sqlite优雅地应答于内存分配失败和磁盘I/O错误。即使由于系统宕机或电源失败而中断,事务依然是ACID的。
All of this is verified by the automated tests using special test harnesses which simulate system failures. Of course, even with all this testing, there are still bugs.
被自动化测试校验的所有这一切,使用模拟系统失败的特殊测试装置。当然做了这么多的测试,依然有bugs。
But unlike some similar projects (especially commercial competitors) SQLite is open and honest about all bugs and provides bugs lists including lists of critical bugs and minute-by-minute chronologies of bug reports and code changes.
但不像一些相似的项目(尤其商业竞争对手)sqlite是开放与诚实的关于所有的bugs,并提供包括严重bugs和分分钟年表bug报告的bug列表和代码更新。

The SQLite code base is supported by an international team of developers who work on SQLite full-time.
sqlite代码库由一个全职sqlite工作的国际开发团队提供支持。
The developers continue to expand the capabilities of SQLite and enhance its reliability and performance while maintaining backwards compatibility with the published interface spec, SQL syntax, and database file format.
开发者继续扩展sqlite的能力并加强它的可靠性和性能,与此同时在发布接口规范,sql语法,和数据库文件格式时保持向后兼容。
The source code is absolutely free to anybody who wants it, but professional support is also available.
源代码对想使用它的任何人绝对自由,反而专业支持也是可用的。

We the developers hope that you find SQLite useful and we charge you to use it well: to make good and beautiful products that are fast, reliable, and simple to use.
我们开发者希望你发现sqlite有用并且我们负责你更好地使用它:变成快速,可靠,使用简单的美好产品。
Seek forgiveness for yourself as you forgive others. And just as you have received SQLite for free, so also freely give, paying the debt forward.
就像你已经收到的免费SQLite,所以自由地给予,向前传递。

 

 

 

 

http://dbeaver.jkiss.org/

 

从这里了解的概念http://dbeaver.jkiss.org/docs/features/

DBeaver 3.5.1
October 5th, 2015

Free Universal Database Manager

universal  通用

Why “DBeaver”?
DBeaver is named in contrast to SQuirreL, the popular java-based database client.
It’s something like “database beaver versus SQL squirrel”.
DBeaver is pronounced as dee-beaver.

What is “JKISS”?
It’s our company name. It’s an acronym (“Just Keep It Straight and Simple” or “Just Keep It Simple, Stupid”).
JKISS is pronounced as jey-kiss.

beaver    n. 海狸;海狸皮毛
in contrast    与此相反;比较起来
squirrel    n. 松鼠;松鼠毛皮
versus    prep. 对;与...相对;对抗

DBeaver is written on Java (version 3.x language level 1.6). Required Java version is 1.6 or higher.
DBeaver based on Eclipse RCP platform. For DBeaver 3.x default Eclipse version is 4.5.x (Mars).

Starting from version 3.x you can download Community Edition or Enterprise Edition versions. Both versions are free to use but only Community Edition is open-source.
Main difference is that Enterprise Edition shipped with NoSQL databases support (MongoDB and Cassandra in 3.x). Also EE version supports document-based results presentation (you can view/edit documents as XML or JSON).

2. Database-specific features
2.2. Oracle

    XML, Cursor datatypes support
    Packages, procedures, triggers, indexes, tablespaces and other metadata objects browse/edit
    Metadata DDL view

3. Supported databases and platforms
3.1. Supported (tested) relational databases
    MySQL
    Oracle
    PostgreSQL
    IBM DB2
    Microsoft SQL Server
    Microsoft Access
    Sybase
    Java DB (Derby)
    Firebird (Interbase)
    Derby (JavaDB)
    SQLite
    Mimer
    HSQLDB
    H2
    IBM Informix
    Teradata
    SAP MAX DB
    Cache
    Ingres
    Linter
    Vertica
    ODBC
    Any JDBC compliant data source
3.2. Supported NoSQL databases
    MongoDB
    Cassandra
3.3. Supported OSes
    Windows (2000/XP/2003/Vista/7/8)
    Linux
    Mac OS
    Solaris
    AIX
    HP-UX

 

heidisql

http://www.heidisql.com/help.php

 

存储引擎的图标是不一样的,函数,过程,事件的图标也是不一样的

innodb  没有标识的

federated

memory

转载于:https://www.cnblogs.com/createyuan/p/4351438.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值