z6c - personal blog about topics

Christian Müller – Letzte Änderung: 08.11.2011 00:22 Uhr

sqlite2mysql - untested

Bei Treibsand.com fand ich folgendes Rezept, sqlite nach MySQL zu konvertieren: Achtung! Ungetestet #!/usr/bin/env python import sys import re file = sys.stdin.read() file = re.sub(r'(CREATE (TABLE|INDEX)[^;]*|COMMIT|BEGIN TRANSACTION...

Tags: dev sqlite mysql

Christian Müller – Letzte Änderung: 08.11.2011 00:18 Uhr

sqlite3 UNIQUE entfernen

Bei Stackoverflow fand ich die Antwort auf die Frage "Wie entferne ich das UNIQUE Flag von Felder in sqlite3 Tabellen?" SQLite does not support the alter table drop constraint command. You will need to create a n...

Tags: dev sqlite