fastmssql 0.2.4__cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fastmssql might be problematic. Click here for more details.

fastmssql/__init__.py ADDED
@@ -0,0 +1,18 @@
1
+ """
2
+ fastmssql: A high-performance Python library for Microsoft SQL Server
3
+
4
+ This library provides a Python interface to Microsoft SQL Server using the Tiberius
5
+ Rust driver for excellent performance and memory safety.
6
+
7
+ Example (async):
8
+ >>> from fastmssql import Connection
9
+ >>> async with Connection("DATABASE_CONNECTION_STRING") as conn:
10
+ ... result = await conn.execute("SELECT * FROM users WHERE age > @P1", [18])
11
+ ... for row in result:
12
+ ... print(row['name'], row['age'])
13
+ """
14
+
15
+ # Import everything from the main API module
16
+ from .fastmssql import *
17
+
18
+ __version__ = version()