當前位置: 首頁>>代碼示例>>Python>>正文


Python PhilDB._PhilDB__meta_data_db方法代碼示例

本文整理匯總了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')
開發者ID:cc272309126,項目名稱:phildb,代碼行數:13,代碼來源:test_database.py

示例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')
開發者ID:cc272309126,項目名稱:phildb,代碼行數:15,代碼來源:test_database.py

示例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)
開發者ID:amacd31,項目名稱:phildb,代碼行數:7,代碼來源:test_create.py

示例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)
開發者ID:amacd31,項目名稱:phildb,代碼行數:7,代碼來源:test_create.py


注:本文中的phildb.database.PhilDB._PhilDB__meta_data_db方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。