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

Commit

Permalink
INCR to v3.9.60 - the snapshot of v3
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Sep 12, 2013
1 parent 2ec0a88 commit d66068e
Show file tree
Hide file tree
Showing 40 changed files with 28 additions and 16 deletions.
1 change: 1 addition & 0 deletions NuGet/NuGetPack.cmd
Expand Up @@ -6,4 +6,5 @@ nuget pack ServiceStack.OrmLite.MySql\servicestack.ormlite.mysql.nuspec
nuget pack ServiceStack.OrmLite.PostgreSQL\servicestack.ormlite.postgresql.nuspec
nuget pack ServiceStack.OrmLite.Oracle\servicestack.ormlite.oracle.nuspec
nuget pack ServiceStack.OrmLite.Firebird\servicestack.ormlite.firebird.nuspec
nuget pack ServiceStack.OrmLite.T4\servicestack.ormlite.t4.nuspec

Expand Up @@ -3,7 +3,7 @@
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>ServiceStack.OrmLite.Firebird</id>
<title>OrmLite.FireBird - Fast, code-first, config-free Poco ORM</title>
<version>3.9.59</version>
<version>3.9.60</version>
<authors>Demis Bellot, Angel Colmenares</authors>
<owners>Demis Bellot, Angel Colmenares</owners>
<description>
Expand Down
Expand Up @@ -3,7 +3,7 @@
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>ServiceStack.OrmLite.MySql</id>
<title>OrmLite.MySQL - Fast, code-first, config-free Poco ORM</title>
<version>3.9.59</version>
<version>3.9.60</version>
<authors>Demis Bellot, Thomas Grassauer</authors>
<owners>Demis Bellot, Thomas Grassauer</owners>
<description>
Expand Down
Expand Up @@ -3,7 +3,7 @@
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>ServiceStack.OrmLite.Oracle</id>
<title>OrmLite.Oracle - Fast, code-first, config-free Poco ORM</title>
<version>3.9.59</version>
<version>3.9.60</version>
<authors>Demis Bellot, Guru Kathiresan</authors>
<owners>Demis Bellot, Guru Kathiresan</owners>
<description>
Expand Down
Expand Up @@ -3,7 +3,7 @@
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>ServiceStack.OrmLite.PostgreSQL</id>
<title>OrmLite.PostgreSQL - Fast, code-first, config-free Poco ORM</title>
<version>3.9.59</version>
<version>3.9.60</version>
<authors>Demis Bellot, Tomasz Kubacki</authors>
<owners>Demis Bellot, Tomasz Kubacki</owners>
<description>
Expand Down
Expand Up @@ -3,7 +3,7 @@
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>ServiceStack.OrmLite.SqlServer</id>
<title>OrmLite.SqlServer - Fast, code-first, config-free Poco ORM</title>
<version>3.9.59</version>
<version>3.9.60</version>
<authors>Demis Bellot</authors>
<owners>Demis Bellot</owners>
<description>
Expand Down
Expand Up @@ -3,7 +3,7 @@
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>ServiceStack.OrmLite.Sqlite.Mono</id>
<title>OrmLite.Sqlite - Compatible with Mono. inc. win x86/64 sqlite.dll</title>
<version>3.9.59</version>
<version>3.9.60</version>
<authors>Demis Bellot</authors>
<owners>Demis Bellot</owners>
<description>
Expand Down
Expand Up @@ -3,7 +3,7 @@
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>ServiceStack.OrmLite.Sqlite32</id>
<title>OrmLite.Sqlite.32bit - Fast, code-first, config-free Poco ORM</title>
<version>3.9.59</version>
<version>3.9.60</version>
<authors>Demis Bellot</authors>
<owners>Demis Bellot</owners>
<description>
Expand Down
Expand Up @@ -3,7 +3,7 @@
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>ServiceStack.OrmLite.Sqlite64</id>
<title>OrmLite.Sqlite.64bit - Fast, code-first, config-free Poco ORM</title>
<version>3.9.59</version>
<version>3.9.60</version>
<authors>Demis Bellot</authors>
<owners>Demis Bellot</owners>
<description>
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -52,7 +52,7 @@ extracting them from the published NuGet packages. The url to download a nuget p

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

wget -O OrmLite.MySql.zip http://packages.nuget.org/api/v1/package/ServiceStack.OrmLite.MySql/3.9.59
wget -O OrmLite.MySql.zip http://packages.nuget.org/api/v1/package/ServiceStack.OrmLite.MySql/3.9.60
unzip OrmLite.MySql.zip 'lib/*'

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

## New API's to execute custom SQL

Prior to v3.9.59 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:
Prior to v3.9.60 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:

```csharp
List<Poco> results = db.SqlList<Poco>("EXEC GetAnalyticsForWeek 1");
Expand Down
Binary file modified lib/ServiceStack.Common.dll
Binary file not shown.
Binary file modified lib/ServiceStack.Common.pdb
Binary file not shown.
Binary file modified lib/ServiceStack.Interfaces.dll
Binary file not shown.
6 changes: 6 additions & 0 deletions lib/ServiceStack.Text.XML

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified lib/ServiceStack.Text.dll
Binary file not shown.
Binary file modified lib/ServiceStack.Text.pdb
Binary file not shown.
Binary file modified lib/tests/ServiceStack.Common.Tests.dll
Binary file not shown.
Binary file modified lib/tests/ServiceStack.Common.Tests.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion src/GlobalAssemblyInfo.cs
@@ -1,3 +1,3 @@
using System.Reflection;

[assembly: AssemblyVersion("3.9.59.0")]
[assembly: AssemblyVersion("3.9.60.0")]
2 changes: 1 addition & 1 deletion src/ServiceStack.OrmLite.Sqlite32/packages.config
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="System.Data.SQLite.x86" version="1.0.86.0" targetFramework="net35" />
<package id="System.Data.SQLite.x86" version="1.0.88.0" targetFramework="net35" />
</packages>
2 changes: 1 addition & 1 deletion src/ServiceStack.OrmLite.Sqlite64/packages.config
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="System.Data.SQLite.x64" version="1.0.86.0" targetFramework="net35" />
<package id="System.Data.SQLite.x64" version="1.0.88.0" targetFramework="net35" />
</packages>
11 changes: 8 additions & 3 deletions src/ServiceStack.OrmLite.sln
@@ -1,8 +1,6 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.20617.1 PREVIEW
MinimumVisualStudioVersion = 10.0.40219.1
# Visual Studio 2012
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{6CEB3EDE-9F02-4F4F-BD8A-1B2939C1AE6E}"
ProjectSection(SolutionItems) = preProject
..\build\build.bat = ..\build\build.bat
Expand Down Expand Up @@ -106,6 +104,13 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServiceStack.OrmLite.DDLTes
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServiceStack.OrmLite.Sqlitev40", "ServiceStack.OrmLite.Sqlite\ServiceStack.OrmLite.Sqlitev40.csproj", "{8CA77485-7F0F-4C59-8C25-312D43EF1F8C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "T4", "T4", "{ACB237F8-B931-4945-9533-FA2207510F75}"
ProjectSection(SolutionItems) = preProject
T4\OrmLite.Core.ttinclude = T4\OrmLite.Core.ttinclude
T4\OrmLite.Poco.tt = T4\OrmLite.Poco.tt
T4\OrmLite.SP.tt = T4\OrmLite.SP.tt
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit d66068e

Please sign in to comment.