{
  "id": "python/sqlalchemy-invalid-sqlite-url",
  "signature": "sqlalchemy.exc.ArgumentError: Could not parse SQLAlchemy URL from string 'sqlite:////tmp/test.db'",
  "signature_zh": "无法从字符串 'sqlite:////tmp/test.db' 解析 SQLAlchemy URL",
  "regex": "sqlalchemy\\.exc\\.ArgumentError:\\ Could\\ not\\ parse\\ SQLAlchemy\\ URL\\ from\\ string\\ 'sqlite:////tmp/test\\.db'",
  "domain": "python",
  "category": "config_error",
  "subcategory": null,
  "root_cause": "Incorrect number of slashes in SQLite URL; four slashes indicate absolute path, three for relative path, but misplacement often occurs.",
  "root_cause_type": "generic",
  "root_cause_zh": "SQLite URL 中斜杠数量错误；四个斜杠表示绝对路径，三个表示相对路径，但常被误用。",
  "versions": [
    {
      "version": "3.x",
      "introduced": null,
      "deprecated": null,
      "removed": null,
      "behavior_change": null,
      "status": "active"
    }
  ],
  "os_specific": {},
  "dead_ends": [
    {
      "action": "",
      "why_fails": "Changes path interpretation; may point to wrong file.",
      "fail_rate": 0.5,
      "condition": "",
      "sources": []
    },
    {
      "action": "",
      "why_fails": "Makes it a relative path unexpectedly.",
      "fail_rate": 0.4,
      "condition": "",
      "sources": []
    }
  ],
  "workarounds": [
    {
      "action": "",
      "success_rate": 1.0,
      "how": "engine = create_engine('sqlite:////tmp/test.db')  # absolute\n# or\nengine = create_engine('sqlite:///./test.db')  # relative",
      "condition": "",
      "sources": []
    }
  ],
  "workarounds_zh": [],
  "transition_graph": {
    "leads_to": [],
    "preceded_by": [],
    "frequently_confused_with": []
  },
  "official_doc_url": null,
  "official_doc_section": null,
  "error_code": null,
  "verification_tier": "ai_generated",
  "confidence": 0.9,
  "fix_success_rate": 0.8,
  "resolvable": "true",
  "first_seen": "2024-09-20",
  "last_confirmed": "2025-01-01",
  "last_updated": "2025-01-01",
  "evidence_count": 0,
  "tags": [],
  "locale": "en",
  "aliases": []
}