Skip to main content

Microsoft SQL Server for applications, like magic

Project description

Magical SQL Server

A tool that integrates Microsoft SQL Server into applications like magic.

What is this?

Do you have an application that needs to consume data stored on SQL Server Database, or needs to post data into this database? Magical SQL Server will handle that for you easily.

Requirements

To use this module, you have to install python3 and pymssql:

pip3 install pymssql

Bulk insert method uses BCP to copy multiple rows efficiently. See Microsoft Documentation to install it on your machine.

Usage

Let's say that you have a table called my_database.dbo.users:

id name team
1 example example
2 new_user users

To retrieve all the data from the table:

from magical_sqlserver import SQLServer
sql = SQLServer (
    user,
    password,
    host,
    my_database,
    port=1433,
)

data = sql.select("users")

This will return:

[
  {
    "id": 1,
    "name": "example",
    "team": "example"
  },
  {
    "id": 2,
    "name": "new_user",
    "team": "users"
  }
]

You can filter columns and get specific columns:

data = sql.select("users", condition={"id":1}, columns=["name"])

With result {"name":"example"}.

With Context

You may use with statement then Magical SQL Server will open and close a connection for you as your statement ends:

with SQLServer(user, host, password, my_database) as sql:
    sql.select("users")

You can close your connection manually with sql.close() method too.

As a decorator

You may want to decorate your funciton with this module. To to that, simply use the provide_session module. It will try replace sql argument if it exists in your funcion, or add a kwarg argument called sql. This decorator opens an close an SQL Server connection for you. Example:

from magical_sqlserver import provide_session

@provide_session(user, host, password, my_database)
def awesome_function(sql=None):
  sql.select("users")

Or with kwargs:

@provide_session(user, host, password, my_database)
def awesome_function(**kwargs):
  sql = kwargs["sql"]
  sql.select("users")

Writing data

Single records

To create new record:

data = {"id":3, "name":"bar"}

sql.insert("users", data)

To update existing records:

sql.update("users", data={"name":"new_name"}, contition={"id":1})

You can delete records too:

sql.delete("users", {"id":2, "name":"new_user"})

It's important to say that all conditions are additive. For example, if your update has condition {"id": 1, "name": "new_user"}, this module will build an sql query that has id = 1 and name = 'new_user' and will try this against the database. In the table above, no data will be updated.

Bulk Insert

Simply pass a list of dicts to bulk_insert method. It will transform it to csv temporary files and copy it to table with BCP method. See requirements for more details.

data = [{"id":4, "name":"me"},{"id":5, "name":"you"}]

sql.bulk_insert("users", data)

Other Stuff

You can run generic queries with the method query:

data = sql.query("select top(10) * from my_table join users on my_table.id = users.id")

And retrieve all tables from Sql Server Schema:

tables_list = sql.tables()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

magical_sqlserver-0.4.0.tar.gz (4.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

magical_sqlserver-0.4.0-py3-none-any.whl (6.2 kB view details)

Uploaded Python 3

File details

Details for the file magical_sqlserver-0.4.0.tar.gz.

File metadata

  • Download URL: magical_sqlserver-0.4.0.tar.gz
  • Upload date:
  • Size: 4.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.7

File hashes

Hashes for magical_sqlserver-0.4.0.tar.gz
Algorithm Hash digest
SHA256 96b98762109200b3eedd1e102eac8e24463926f3c436c711677703a5f9e9af93
MD5 af7662cd80027dfceeff124a8c6fbaa4
BLAKE2b-256 c2c85717f67515953b7d29ec492530b4c1b37b81ec1335f5b09fb5bc8b8f48bc

See more details on using hashes here.

File details

Details for the file magical_sqlserver-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: magical_sqlserver-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 6.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.7

File hashes

Hashes for magical_sqlserver-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c4eff87b064ebd5fa4099045a4c37d3cfc6ed404efc05e270c262846ea131d52
MD5 e34065c87805180ea947ffa855d373a7
BLAKE2b-256 ce0259b57d74da76ec48b4c1636fb64bec239c245da1ae699e4ac582c873ad1e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page