Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

FreshBooksArchives/sqlcop

Repository files navigation

sqlcop

A cli tool to check and guard against anti-patterns

https://badge.fury.io/py/sqlcop.png https://travis-ci.org/freshbooks/sqlcop.svg?branch=master https://pypip.in/d/sqlcop/badge.png

Installation

From PyPI:

pip install sqlcop

Usage

sqlcop is designed to use with nose-sqlcapture.

First, you use nose-sqlcapture to generate a SQL capture file:

nosetests [other options] --with-sqlcapture --sqlcapture-filename=sql.log --sqlcapture-format=json

Run sqlcop on the generated sql log fie:

sqlcop sql.log

For some checks, a database schema is needed. In that case, you need to supply the url to the database so sqlcop can grab the metadata:

sqlcop --db-urls=mysql://user:pwd@host:port/db sql.log

You can specify more than one db_urls at once:

sqlcop --db-urls=mysql://user:pwd@host:port/db1,mysql://user:pwd@host:port/db2 sql.log

About

A cli tool that checks against common SQL anti-patterns

Resources

License

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors