v1.0.1
dart_mssql
适用于 Dart 的高性能 Microsoft SQL Server 驱动程序(32 位和 64 位)
32喜欢 30近 30 天下载40Pub 分数
平台暂无数据
适用于 Dart 的高性能 Microsoft SQL Server 驱动程序(32 位和 64 位)
^1.1.6^1.14.11^0.2.0^0.2.0^0.2.1^0.2.2以下为英文项目原文快照,最新内容请访问 GitHub。
High Performance Microsoft SQL Server (MS-SQL Server) Driver for Dart (32 & 64bits)
Demo code to perform Raw SQL queries
import 'dart:io';
import 'package:dart_mssql/dart_mssql.dart';
void main() async {
SqlConnection connection = SqlConnection(host:"SERVERNAME", db:"DBNAME", user:"USERNAME", password:"PASSWORD");
String cmd = "select email from usuario where id_usuario=?";
SqlResult result = connection.execute(cmd,[4]);
result.rows.forEach((e) {
print("${e.email}");
});
print("end of printing.");
connection.close();
stdin.readLineSync();
}
Problem:
The specified module could not be found.
error: library handler failed
Cause:
Missing installing Microsoft OLE DB Driver OR missing dart_mssql.dll file into project main directory OR missing Microsoft Visual C++ Redistributable
Solution:
Copy dart_mssql.dll file into project main directory.
Problem:
%1 is not a valid Win32 application.
error: library handler failed
Cause:
incorrect dart_mssql.dll version (32 bits with dart VM 64 bits or vice versa)
Solution:
Copy correct dart_mssql.dll file into project main directory.
IF AND ONLY IF you want to compile library source code (C++ part) follow the instructions below: