Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 14, 2019 16:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/4b30110c9509e212a09e90f97e84dce4 to your computer and use it in GitHub Desktop.
Save parzibyte/4b30110c9509e212a09e90f97e84dce4 to your computer and use it in GitHub Desktop.
/*
Conexión a SQLServer con Python
Ejemplo de CRUD evitando inyecciones SQL
@author parzibyte
Más tutoriales en:
parzibyte.me/blog
*/
CREATE TABLE IF NOT EXISTS peliculas(
id bigint identity(1,1) primary key,
titulo VARCHAR(255) NOT NULL,
anio SMALLINT NOT NULL
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment