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: