aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/Npgsql.dll (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update NPGSQL from version 2.0.14.3 to 2.1.3. This is a relatively big ↵Geir Nøklebye2017-05-141-0/+0
| | | | | | | | update where 2.1.0 has a number of bug fixes, new functionality and improved performance. (see details at https://github.com/npgsql/npgsql/releases/tag/v2.1.0) The binaries supplied are for .NET 4.0 If you need binaries for older versions they can be dowloaded from https://github.com/npgsql/npgsql/releases/tag/v2.1.3. There are also binaries for 4.5. The performance improvement is particularly evident on terrain load and other repeated queries to the database. This version will automatically generate prepare statements if it sees 5 consecutive identical statements and cache them for later use. The prepare statement will skip the analyze portion of the query planner once a statement has been created. In addition there are improvements in the connection pool logic that will improve performance once connections get scarce. Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
* Updated Npgsql.dll to version 2.0.14.3 built for .NET 4.0 Mono.Security has ↵Geir Nøklebye2017-05-141-0/+0
| | | | | | been updated for the same build. Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
* Set executable bit on Npgsql.dll for cygwinJustin Clark-Casey (justincc)2014-03-181-0/+0
|
* This is Npgsql2.0.12.0-bin-ms-net3.5sp1Justin Clark-Casey (justincc)2013-10-141-0/+0
| | | | | From http://pgfoundry.org/frs/download.php/3354/Npgsql2.0.12.0-bin-ms.net3.5sp1.zip This is identical to the version added in ff8a7682, removed and readded to check and record version
* Remove to re-add with version information for future referenceJustin Clark-Casey (justincc)2013-10-141-0/+0
|
* Fernando Oliveira's Postgress SQL Server Data Connector as a single commit.Fernando Oliveira2013-10-121-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added PostGreSQL support * Added MySQL/MySQLXGroupData.cs * PostgreSQL data access implementation * PostgreSQL dll binarie and RegionStore.migrations * Migrations Scripts from MSSQL to POSTGRES * Postgres SQL Type fixes * Postgres SQL Connection string * Data type issues * more fixes * tests and +tests * UUID x string - FIGHT! * Fixed PG types to internal csharp types * More data type fix (PostgreSQL fields are case sensitive) :( * more field case sensitive fixes * changed the migration files to be case sensitive for fields. * fixed fields case * finished converting, now search for hidden bugs. * some more fixes * bool type fixed * more case fixes; * creatorID case fixed * case fields fixed * fixed default now() for TMStamp fields with don't allow nulls. * fix case sensitve for Region name and Estate name * fixed case for names for search * fix class name Error * Bug fixed on select and migrations * Un-Reverting my change due to Postgres issue with the ILIKE function * Fixed some issued for Diva Distro * Fixes for integration with Diva Distro * Added System.Core to prebuild.xml for PG project * Configured to make DIff for Push to OpenSim Project * Diffs only to PostgreSQL mods.
* remove unused postgresql dllJustin Clark-Casey (justincc)2011-09-301-0/+0
|
* add the executable bit to all bundled DLLs so that these are preserved when ↵Justin Clark-Casey (justincc)2011-04-271-0/+0
| | | | | | using git or untarring releases under cygwin on windows Mono doesn't care if the
* Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-01-231-0/+0
* Added Npgsql.dll and Mono.Security.dll which are NpgsqlDriver dlls. * Added missing field to schema creation scripts: PathTaperY. * Added schema creation scripts for PostgreSQL. * Added unit test classes for PostgreSQL. * Added schema creation script folder to NHibernate project in prebuild.xml * Added Npgsql.dll to NHibernate test project dependencies in prebuild.xml * Ensured that build works with both nant and Visual Studio. * Executed build unit tests with nant and NHibernate unit tests with NUnitGUI - Couple of region tests fail due to double precission float rounding errors need to sort out how these are handles in unit tests and if higher precission numeric field needs to be used in Postgresql.