Tool for importing data to MS SQL Server.
Reason this release was yanked:
More numpy 2.0 compatibility problems
Project description
Python module for uploading numpy arrays to MS SQL Server
This module allows dictionaries of numpy arrays to be uploaded to SQL Server as database tables. The upload is carried out as a bulk insert, which copies binary data to the server without any conversion to or from text. This is faster than uploading text and exactly preserves floating point values.
Compilation
The module uses freetds to communicate with the database server. To build the module, set the location of the freetds library and headers and then run pip install. E.g.:
SYBDB=/cosma/local/freetds/1.4.20/ LDFLAGS="-L${SYBDB}/lib/ -Wl,-rpath=${SYBDB}/lib/" CFLAGS="-I${SYBDB}/include/" pip install .
Usage
Connect to the database:
dbcon = pybcp.DBConnection(username, server, database, password=None)
Here, username and password are the database username and password.
server is the server name defined in freetds.conf and database is
the name of the database which contains the table to be created or
updated.
If the password is None then a password prompt will appear.
Uploading a database table
dbcon.bulk_insert(table_name, columns, create_table=True, drop_existing=True)
Here, table_name is the name of the table to create or append to. columns
is a dict of numpy arrays with the data for each column. If create_table is
true then a new table will be created. If drop_existing is true then any
existing table is removed first.
Table column arrays should be stored in an OrderedDict if the ordering of the columns is important.
Executing SQL commands
For convenience there's a function to execute SQL commands:
dbcon.execute(sql)
where sql is a string with the command to execute. This can be useful for
creating indexes on newly uploaded tables, for example.
This returns a list containing any tables returned by the command. Any returned tables are represented as dictionaries of arrays in the same way as data to be bulk inserted.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pybcp-0.1.2.tar.gz.
File metadata
- Download URL: pybcp-0.1.2.tar.gz
- Upload date:
- Size: 23.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
475d5dd19392e586848144e9075afb6fa6211d56f7c2bb5beef414af5174c03d
|
|
| MD5 |
f29d75d29210927bddb746f27bbdffcc
|
|
| BLAKE2b-256 |
58d76974ba6569e852282fb0294877fe88e23469c1dfa1a957fceba24b947ba1
|
File details
Details for the file pybcp-0.1.2-cp312-cp312-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: pybcp-0.1.2-cp312-cp312-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff1a1ac5c1ac62b4122f722bb234d4a6698a9b603cc6f52fbcb9b876861ffa06
|
|
| MD5 |
0641281f4b59ef13b139823646baf4f2
|
|
| BLAKE2b-256 |
5c7e3e39c7397ce1c3a8df19299f517ebfef33e564b933c9d51ded408c7eb54c
|