Add MedicusWithClaude project - DB exploration scripts and notes

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-13 14:37:00 +01:00
parent 490374b83d
commit 27338a9b85
8 changed files with 390 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
import fdb
conn = fdb.connect(
dsn=r'localhost:c:\medicus 3\data\medicus.fdb',
user='SYSDBA', password='masterkey', charset='win1250'
)
cur = conn.cursor()
cur.execute("""
SELECT FIRST 1 ID, DATUM, DEKURS
FROM DEKURS
WHERE DEKURS IS NOT NULL
ORDER BY DATUM DESC
""")
row = cur.fetchone()
text = row[2].read() if hasattr(row[2], 'read') else row[2]
if isinstance(text, bytes):
text = text.decode('windows-1250', errors='replace')
print(f"ID={row[0]} DATUM={row[1]}")
print(f"Délka: {len(text)} znaků")
print("\n--- CELÝ TEXT ---")
print(text)
conn.close()