本文整理汇总了Python中dNG.data.data_linker.DataLinker.save方法的典型用法代码示例。如果您正苦于以下问题:Python DataLinker.save方法的具体用法?Python DataLinker.save怎么用?Python DataLinker.save使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类dNG.data.data_linker.DataLinker
的用法示例。
在下文中一共展示了DataLinker.save方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: save
# 需要导入模块: from dNG.data.data_linker import DataLinker [as 别名]
# 或者: from dNG.data.data_linker.DataLinker import save [as 别名]
def save(self):
"""
Saves changes of the database task instance.
:since: v0.1.00
"""
with self, self.local.connection.no_autoflush:
if (self.local.db_instance.vfs_type is None or self.local.db_instance.vfs_type == 0):
is_vfs_object_opened = (self.vfs_object is not None)
self._ensure_vfs_object_instance(True)
try:
if (self.vfs_object is None):
if (self.local.db_instance.mimeclass == "directory"): self.local.db_instance.vfs_type = Entry.VFS_TYPE_DIRECTORY
else: self.local.db_instance.vfs_type = (Entry.VFS_TYPE_DIRECTORY if (self.vfs_object.is_directory()) else Entry.VFS_TYPE_ITEM)
finally:
if (not is_vfs_object_opened): self.close()
#
#
DataLinker.save(self)