This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / Npgsql / RELEASENOTES.txt
1
2
3 2004-05-24
4     Npgsql 0.6 development release
5     
6     New Features:
7         
8         NpgsqlException now gives aceess to error collection through 
9         the Errors property. This property return a collection of NpgsqlErrors objects. Also it gives access 
10         to error message, hint, severity and code. This fixes the feature request 689 in gborg. Note the most of them are 
11         only available in 7.4+ server versions. (Glen Parker (glenebob at nwlink dot com) )
12         
13         NpgsqlException is now used exclusively to sign erros from backend interation. In past, it was being used to sign other
14         errors inside provider. This change gives more consistency to error handling logic. (Glen Parker (glenebob at nwlink dot com) )
15         
16     
17     Bug fixes:
18         
19         Using Command and Prepare adds single quotes to strings twice (ID: 772) (Glen Parker)
20         
21         
22         
23         
24
25
26 2002-06-10
27     Npgsql 0.2 development release.
28     
29     In this version we got many things working...
30     
31     - You can send insert, update, delete queries through NpgsqlCommand.ExecuteNonQuery() method.
32     - You can send queries like, select count(*) from table, select version() with 
33       NpgsqlCommand.ExecuteScalar() method.
34     - There is logging support. (Thanks Dave Page)
35       To use it, place code like that in your program:
36       
37       // Enable logging.
38           NpgsqlEventLog.Level = LogLevel.Debug;            // LogLevel.
39           NpgsqlEventLog.LogName = "NpgsqlTests.LogFile";   // LogFile.
40     
41     - You can use Npgsql with Mono (Thanks Kristis Makris). It is not working perfectly. :( 
42     - There is a winforms test suite (Thanks Dave Page).
43     - Clearer code in NpgsqlConnection removing *magic* numbers and constants. (Thanks Kristis Makris)
44     - Better support of ODBC-like ConnectionString in NpgsqlConnection (Thanks Dave Page)
45     - Thanks Ulrich Sprick for all discussion and ideas.
46     
47     And much more to come! 
48     Thanks all team !
49
50 2002-05-18
51         
52         First Npgsql beta release.
53         In this version there is a limited functionality. It is only possible to
54 connect and disconnect from server.
55         Only clear text authentication is supported right now.
56         To compile you can use the SharpDevelop to open the Combine file (Npgsql.cmbx) or
57 type at command console: csc /t:library /out:Npgsql.dll NpgsqlConnection.cs AssemblyInfo.cs NpgsqlException.cs
58 This will create the file Npgsql.dll that can be copied to the application directory.
59
60         I will be working in the Command functionality now.
61         
62         
63         Play with it and send your bugs and comments :)
64         (fxjr)