- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
“使事情尽可能简单,但不要简单。”
我们能否找到解决Python数据库世界的解决方案?
更新:A 'lustdb' prototype has been written by Alex Martelli-如果您知道任何轻量级的,具有多个后端的高级数据库库,我们可以包装语法糖蜜,请权衡一下!
from someAmazingDB import *
#we imported a smart model class and db object which talk to database adapter/s
class Task (model):
title = ''
done = False #native types not a custom object we have to think about!
db.taskList = []
#or
db.taskList = expandableTypeCollection(Task) #not sure what this syntax would be
db['taskList'].append(Task(title='Beat old sql interfaces',done=False))
db.taskList.append(Task('Illustrate different syntax modes',True)) # ok maybe we should just use kwargs
#at this point it should be autosaved to a default db option
#by default we should be able to reload the console and access the default db:
>> from someAmazingDB import *
>> print 'Done tasks:'
>> for task in db.taskList:
>> if task.done:
>> print task.title
'Illustrate different syntax modes'
最佳答案
出于特定原因,无论您要求什么,都无法在Python 2中完成。您要写:
class Task(model):
title = ''
isDone = False
model
可能是什么,但不能通过
来预测两个字段的任何“排序”,因为class
语句的语义是:dict
Task('Illustrate different syntax modes', True)
db.tasklist
和db['tasklist']
的愿望更加令人难以置信)。__prepare__
函数,该函数在上述简化列表中的“步骤1”之前运行,这使它可以更好地控制类的主体。具体来说,引用PEP 3115 ...:
__prepare__
returns a dictionary-like object which is used to store the class member definitions during evaluation of the class body. In other words, the class body is evaluated as a function block (just like it is now), except that the local variables dictionary is replaced by the dictionary returned from__prepare__
. This dictionary object can be a regular dictionary or a custom mapping type.
...
An example would be a metaclass that uses information about the ordering of member declarations to create a C struct. The metaclass would provide a custom dictionary that simply keeps a record of the order of insertions.
model
获得)将具有__prepare__
类方法返回有序字典。这消除了特定的问题,但是,当然,只有在您愿意使用此“魔术ORM”将所有代码切换到Python 3时,您才能这么做吗?taskList
属性名称是否特殊,或者分配给db
对象的任何其他属性是否应在使用时“自动保存”(按名称和其他特性)并“自动检索”?是否有删除实体,更改实体,定位实体的方法(不是曾经被列出在db
对象的同一属性中)?您的示例代码如何知道要使用的数据库服务以及如何对其进行身份验证(例如,通过用户名和密码)(如果需要身份验证)?model
的元类将内省(introspection)该类的字段并为该类生成GAE Model
,db
对象将使用__setattr__
设置一个atexit
触发器以存储属性的最终值(作为实体,当然是另一种Model
中的实体) ,以及__getattr__
从存储中取回该属性的信息。当然,如果没有一些额外的数据库功能,所有这些都将毫无用处;-)。lustdb.py
(太长了,无法在此处发布)和两个大致等效的小测试文件到OP的原件:test0.py
是...:from lustdb import *
class Task(Model):
title = ''
done = False
db.taskList = []
db.taskList.append(Task(title='Beat old sql interfaces', done=False))
db.taskList.append(Task(title='Illustrate different syntax modes', done=True))
test1.p1
是...:from lustdb import *
print 'Done tasks:'
for task in db.taskList:
if task.done:
print task
test0.py
(在具有可写/tmp
目录的机器上-即任何Unix-y OS,或者在Windows上以前曾运行过mkdir \tmp
的操作系统上;-)没有输出;之后,运行test1.py
输出:Done tasks:
Task(done=True, title=u'Illustrate different syntax modes')
1. no (expletive delete) redundancy whereby `db.taskList` is a synonym of `db['taskList']`, only the sensible former syntax (attribute-access) is supported
2. no mysterious (and totally crazy) way whereby a `done` attribute magically becomes `isDone` instead midway through the code
3. no mysterious (and utterly batty) way whereby a `print task` arbitrarily (or magically?) picks and prints just one of the attributes of the task
4. no weird gyrations and incantations to allow positional-attributes in lieu of named ones (this one the OP agreed to)
lustdb
和 friend 的传统,模块的lustdb
名称是带有OP首字母(名字和姓氏的每个前两个字母)的单词的游戏-我认为听起来不错(以及大多数其他明显的名称,例如因为采用awk
和simpledb
;-)。
关于database - Django模型/SQLAlchemy肿!有没有真正的Pythonic数据库模型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2978138/
我们使用 Azure 弹性池,生成多个客户端数据库和一个引用客户端数据库的主数据库。 我们已经拥有多个数据库,并且正在开发新版本的代码。我们使用 EF6 代码优先。当我们对模型进行更改(添加属性)时,
我们使用 Azure 弹性池,生成多个客户端数据库和一个引用客户端数据库的主数据库。 我们已经拥有多个数据库,并且正在开发新版本的代码。我们使用 EF6 代码优先。当我们对模型进行更改(添加属性)时,
我希望将一些信息分发到不同的机器上,以便在没有任何网络开销的情况下实现高效和极快的访问。数据存在于关系模式中,实体之间的关系是“加入”的要求,但根本不是写入数据库的要求(它会离线生成)。 我非常相信
我使用 GrapheneDB 来托管我的 neo4j 数据库 (db)。 问题 我有 N客户并且正在寻找自动分离他们的内容(他们独特的数据库)的方法,以便: 它不重叠数据 操作速度不受影响。 选项 1
当服务器开始工作(Tomcat)时,日志显示此错误: org.springframework.beans.factory.BeanDefinitionStoreException: Invalid b
我在 Oracle 数据库实例中按以下方式创建了一个触发器。 CREATE OR REPLACE TRIGGER after_logon_on_database AFTER LOGON ON DATA
原谅我的无知,我是数据库约定的初学者。 这是我的 SQLite 代码:(由我的数据库浏览器自动生成) CREATE TABLE `ResearchItems` ( `ID` INTEGER NO
是的是的是的,我已经在整个互联网上搜索过这个问题。一些结果发现,甚至来自 Stackoverflow。但是他们中的大多数人说“你应该自动加载数据库”,或者“parent::__construct();
我正在创建一个 Mac 应用程序,它将一些数据保存到 SQLite 数据库中。问题是:当我关闭数据库并再次打开时,数据不存在了。这是我的代码: NSString *sql = [NSString st
我正在建立一个网站,我打算发布各种帖子,比如教程、文章等。我打算用 php 来管理它,但是当涉及到存储每个帖子的内容时,将要显示的文本,更好的选择是:使用单独的文本文件还是将其添加为数据库中的每个条目
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 3 年前。 Improve this qu
对不起,这个关键字对我来说没有任何意义...有人可以给我一个定义吗? 提前致谢... 最佳答案 这是一个品牌。 http://pervasive.com/这是他们的数据库产品的链接 http://ww
我已经在 docker 版本 1.10.1 的 docker 镜像中安装了 PostgreSQL 9.4.6。根据这张官方图片: https://github.com/docker-library/p
当我的 android 应用程序尝试读取 android 短信数据库时,我遇到了这个崩溃。读取android短信数据库的代码类似于下面的代码 fragment : String SMS_URI = "
我有一个 public kit repo,我推送了 v1.0.3 并具有以下结构 go -database --database.go --go.mod --go.sum 我需要它 require g
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 9 年前。 Improve this qu
我们正在使用MySQL数据库在Go中创建一个Web应用程序。我们的用户一次只能拥有一个活跃的客户端。就像Spotify一样,您一次只能在一台设备上听音乐。为此,我制作了一个映射,将用户ID和作为其值的
我已经尝试在 PostgreSQL 中创建数据库好几天了,遇到了几个问题,但似乎卡住了。 我在 PostgreSQL 中手动创建了一个名为 postgres_development 的数据库,因为 b
我正在创建一个 iMessage 应用程序,它需要连接到与我的常规应用程序相同的数据库。 我调用 FirebaseApp.configure() 并对用户进行身份验证,但出于某种原因,在所有 Data
就像std::unordered_map但所有数据都应存储在磁盘上而不是内存中。 按照我的理解,应该做两部分:索引和存储。我已经学习了一些关于索引的数据结构,比如 Linear-Hash 或 B-Tr
我是一名优秀的程序员,十分优秀!