Registry / database / tdscpp

tdscpp

JSON →
library20250301vcpkgunverified

C++ library to communicate with Microsoft SQL Server

vcpkg install tdscpp
INSTALL
IMPORT
SIG · TDSCPP
T
tdscpp
databasecppv20250301
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

tds/tds.h
#include <tds/tds.h>

Connect to SQL Server and run a query

#include <tds/tds.h> #include <iostream> int main() { tds::connection conn("server=localhost;database=test;uid=user;pwd=pass"); conn.connect(); auto result = conn.query("SELECT 1"); while (result.next()) { std::cout << result.get<int>(0) << std::endl; } return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
20250301latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
24 hits · last 30 days
node
18
Meta
2
OpenAI (training)
1
Resources

No resource links recorded.

tdscpp — pip install tdscpp · libregistry