Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

22 lines
844 B
Plaintext
Executable File

2002-06-03
- Npgsql can now be compiled in Mono(mono-0.11_baselabs-20020603.i386.rpm).
It can run also in Mono, but just the connection estabilishment is working.
Other tests code fail when compiling.
2002-06-01
- Npgsql is now capable get correct results from queries that return more
than one row or field in ExecuteScalar() method call.
2002-05-26
- Npgsql is now capable of sending some queries like select count(*) from table
with NpgsqlCommand.ExecuteScalar() method.
Note that this method is yet very much instable. Queries like
"select field, field from table" still crashs it. :(
2002-05-25
- Npgsql is now capable of sending some queries like insert, update and delete.
Note that parameters in these queries aren't work yet. So they must be 'full'
queries like insert into <table> values (<value1>, <value2>, ...).