本文整理匯總了Python中phildb.database.PhilDB._PhilDB__meta_data_db方法的典型用法代碼示例。如果您正苦於以下問題:Python PhilDB._PhilDB__meta_data_db方法的具體用法?Python PhilDB._PhilDB__meta_data_db怎麽用?Python PhilDB._PhilDB__meta_data_db使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類phildb.database.PhilDB
的用法示例。
在下文中一共展示了PhilDB._PhilDB__meta_data_db方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_add_ts_entry
# 需要導入模塊: from phildb.database import PhilDB [as 別名]
# 或者: from phildb.database.PhilDB import _PhilDB__meta_data_db [as 別名]
def test_add_ts_entry(self):
create(self.temp_dir)
db = PhilDB(self.temp_dir)
db.add_timeseries('410730')
conn = sqlite3.connect(db._PhilDB__meta_data_db())
c = conn.cursor()
c.execute("SELECT * FROM timeseries;")
pk, primary_id = c.fetchone();
self.assertEqual(primary_id, '410730')
示例2: test_add_measurand_entry
# 需要導入模塊: from phildb.database import PhilDB [as 別名]
# 或者: from phildb.database.PhilDB import _PhilDB__meta_data_db [as 別名]
def test_add_measurand_entry(self):
create(self.temp_dir)
db = PhilDB(self.temp_dir)
db.add_measurand('P', 'PRECIPITATION', 'Precipitation')
conn = sqlite3.connect(db._PhilDB__meta_data_db())
c = conn.cursor()
c.execute("SELECT * FROM measurand;")
pk, measurand_short_id, measurand_long_id, measurand_description = c.fetchone();
self.assertEqual(measurand_short_id, 'P')
self.assertEqual(measurand_long_id, 'PRECIPITATION')
self.assertEqual(measurand_description, 'Precipitation')
示例3: test_create_existing_dir
# 需要導入模塊: from phildb.database import PhilDB [as 別名]
# 或者: from phildb.database.PhilDB import _PhilDB__meta_data_db [as 別名]
def test_create_existing_dir(self):
db_name = os.path.join(self.temp_dir)
create(db_name)
db = PhilDB(db_name)
self.assertEqual(os.path.exists(db._PhilDB__meta_data_db()), True)
示例4: test_create_new
# 需要導入模塊: from phildb.database import PhilDB [as 別名]
# 或者: from phildb.database.PhilDB import _PhilDB__meta_data_db [as 別名]
def test_create_new(self):
db_name = os.path.join(self.temp_dir, 'new_project')
create(db_name)
db = PhilDB(db_name)
self.assertEqual(os.path.exists(db._PhilDB__meta_data_db()), True)