(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / Npgsql / STATUS.txt
blob0512b782a9e5396fcd9f41ca536f5c370b5c872e
2 2002-06-03
3         - Npgsql can now be compiled in Mono(mono-0.11_baselabs-20020603.i386.rpm).
4         It can run also in Mono, but just the connection estabilishment is working.
5         Other tests code fail when compiling.
7 2002-06-01
8         - Npgsql is now capable get correct results from queries that return more
9         than one row or field in ExecuteScalar() method call.
11 2002-05-26
12         - Npgsql is now capable of sending some queries like select count(*) from table
13         with NpgsqlCommand.ExecuteScalar() method. 
14         Note that this method is yet very much instable. Queries like 
15         "select field, field from table" still crashs it. :(
17 2002-05-25
19         - Npgsql is now capable of sending some queries like insert, update and delete.
20         Note that parameters in these queries aren't work yet. So they must be 'full'
21         queries like insert into <table> values (<value1>, <value2>, ...).