Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 56104b7

Browse files
committed
update README.md
1 parent 226d90b commit 56104b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ extracting them from the published NuGet packages. The url to download a nuget p
5050

5151
So to get the OrmLite MySQL provider in OSX/Linux (or using gnu tools for Windows) you can just do:
5252

53-
wget -O OrmLite.MySql.zip http://packages.nuget.org/api/v1/package/ServiceStack.OrmLite.MySql/3.9.42
53+
wget -O OrmLite.MySql.zip http://packages.nuget.org/api/v1/package/ServiceStack.OrmLite.MySql/3.9.43
5454
unzip OrmLite.MySql.zip 'lib/*'
5555

5656
which will download and extract the dlls into your local local `lib/` folder.
@@ -93,7 +93,7 @@ Apart from a slight performance increase, parameterized API's now lets you inser
9393

9494
## New API's to execute custom SQL
9595

96-
Prior to v3.9.42 the ways to execute custom SQL was with `db.ExecuteSql()` which as it only returned an int code, users were using `db.Query` to read arbitrary sql returning tabular resultsets. However db.Query is only intended for SELECT statements. For this purpose we've introduced new API's for executing custom sql, e.g:
96+
Prior to v3.9.43 the ways to execute custom SQL was with `db.ExecuteSql()` which as it only returned an int code, users were using `db.Query` to read arbitrary sql returning tabular resultsets. However db.Query is only intended for SELECT statements. For this purpose we've introduced new API's for executing custom sql, e.g:
9797

9898
```csharp
9999
List<Poco> results = db.SqlList<Poco>("EXEC GetAnalyticsForWeek 1");

0 commit comments

Comments
 (0)