Skip to content

Instantly share code, notes, and snippets.

View DavidKloucek's full-sized avatar

David Klouček DavidKloucek

View GitHub Profile
# http://www.gaia-gis.it/gaia-sins/spatialite-sql-latest.html
# http://www.gaia-gis.it/gaia-sins/spatialite-cookbook/index.html
# $em->getConnection()->getNativeConnection()->loadExtension('mod_spatialite.dylib');
CREATE TABLE IF NOT EXISTS city (
id integer primary key AUTOINCREMENT unique not null,
name text not null
);