计算机概念体系

元数据,最小单元
用nosql来表达概念体系,一些概念要联系起来理解才更深入与透彻。

块存储,文件存储,对象存储
程序与数据
grid,cell,row.网格,单元格,行

 

从sqlite expert 网站上了解更多的数据库相关概念
以下概念的英文解释清晰明了
SQL Query Builder
If you are not an SQL expert but want to create complex queries visually, you can use the integrated Query Builder to generate SQL SELECT queries in a visual interface.

Executing SQL Queries
SQLite Expert allows users to easily execute SQL scripts and display the results in the grid or as text.

Displaying and editing data in the grid
You can use Up, Down, PageUp and PageDown keys to traverse the grid cells.

 

SQLite Expert currently supports the following methods for importing and exporting data:
    Import data from SQLite, SQL script, ADO data source using the Data Transfer Wizard.
    Import data from text files (CSV, TSV).
    Export data to SQLite, SQL script using the Data Transfer Wizard.
    Export data to text files(CSV, TSV), XML, HTML or Excel.
    Transfer tables between SQLite databases using drag and drop.
    Transfer records between SQLite tables or to Excel via clipboard.

sql tabs,ddl tabs,data tabs,design tabs,各个标签,还可打开多个sql标签multiple SQL tabs

code completion

table designer
设计模式

数据库编码采用utf-8
用sql脚本创建表(即ddl语句),添加数据(即dml语句),查询(dql)

 

导入sql,导出为sql,其实就是将

表结构,记录,约束,索引转化为sql语句的过程

encrypted database

使用 MD5 编码实现数据库用户密码字段的加密,可以有效防止系统维护人员直接进入数据库时出现系统安全漏洞

 

4A认证

account    先得有账户信息

autheciate    客户端进行连接某个服务的时候,弹出对话框,要求认证,然后用户输入账户信息,这个调用收集完并与服务端进行匹配,成功则通过,否则失败

authority    认证通过以后,并检索相关账户权限,并授权

audit    每个账户的操作都作记录

你可能感兴趣的:(计算机概念体系)