v1.0.1
dart_mssql
Driver de alto desempenho para Microsoft SQL Server em Dart (32 e 64 bits)
32Curtidas 30Downloads em 30 dias40Pontos Pub
Plataformas indisponíveis
Driver de alto desempenho para Microsoft SQL Server em Dart (32 e 64 bits)
^1.1.6^1.14.11^0.2.0^0.2.0^0.2.1^0.2.2Texto original em inglês. Visite o GitHub para a versão atual.
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: