anaki_mssql 0.1.0 copy "anaki_mssql: ^0.1.0" to clipboard
anaki_mssql: ^0.1.0 copied to clipboard

SQL Server driver for AnakiORM. Native connector via Rust FFI.

anaki_mssql #

SQL Server driver for Anaki ORM — native performance via Rust FFI.

This package provides the Microsoft SQL Server database driver for Anaki ORM, enabling high-performance database operations through native Rust bindings (tiberius).

Documentation #

For complete documentation, installation guides, API reference, and examples, please visit the main repository:

👉 https://github.com/Flutterando/anakiORM

Quick Start #

dependencies:
  anaki_orm: ^0.1.0
  anaki_mssql: ^0.1.0
import 'package:anaki_orm/anaki_orm.dart';
import 'package:anaki_mssql/anaki_mssql.dart';

void main() async {
  final db = AnakiDb(MssqlDriver(
    host: 'localhost',
    port: 1433,
    database: 'myapp',
    username: 'sa',
    password: 'YourStrong@Password',
  ));
  await db.open();
  // ... your code
  await db.close();
}

License #

MIT

0
likes
150
points
39
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

SQL Server driver for AnakiORM. Native connector via Rust FFI.

Homepage

License

MIT (license)

Dependencies

anaki_orm, code_assets, ffi, hooks

More

Packages that depend on anaki_mssql