2002-05-05 Daniel Morgan <danmorg@sc.rr.com>
authorDaniel Morgan <monodanmorg@yahoo.com>
Sun, 5 May 2002 23:23:48 +0000 (23:23 -0000)
committerDaniel Morgan <monodanmorg@yahoo.com>
Sun, 5 May 2002 23:23:48 +0000 (23:23 -0000)
* doc/ado-net: updated the current status which
I kept forgetting to do.

svn path=/trunk/mono/; revision=4324

ChangeLog
doc/ado-net
web/ado-net

index 9a34be5865a4fb47be227b82e142aa5e4821a724..7b33f0d1db09cbd09d2b682b8d93f1dfb0dfb946 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-05-05  Daniel Morgan <danmorg@sc.rr.com>
+
+       * doc/ado-net: updated the current status which
+       I kept forgetting to do.
+
 2002-05-05  Daniel Morgan <danmorg@sc.rr.com>
 
        * doc/ado-net: updated to includes an example for
index 11162c07f247e1fb9cac5300763eb1728a09ef64..87d2f1f86d213356bf1c31afed86d4b785fa5281 100644 (file)
        
 * Current Status
 
-       We are able now to run basic commands (INSERT, DELETE) into a
-       PostgreSQL database (see mcs/class/System.Data/Test/TestSqlInsert.cs).
+       We are able to do simple CREATE TABLE, DROP TABLE, INSERT, and
+       DELETE SQL commands using the ExecuteNonQuery method in SqlCommand.  
+       
+       We are also     able to do simple aggregate functions, 
+       ie, count(), sum(), avg(), min(), and
+       max() in a simple SELECT SQL query using ExecuteSecalar() now.  
+       
+       We are also able to retrieve data with a simple SELECT SQL query 
+       using ExecuteReader() which returns a SqlDataReader.  We are able to
+       GetSchemaTable() get the meta data about the table columns.  We are able
+       to Read() to get each row from the result set.  We are able to get 
+       String data (char, bpchar (character), text, varchar), Int16 (int2 or smallint),
+       and Int32 (int4 or integer), Int64 (int8 or bigint).  More data types will
+       follow later on.
+               
+       Parameters are not working nor has stored procedures been tested - but they will be.
+       
+       A lot of functionality in System.Data is missing, but the infrastructure is
+       starting to come together.
+       
        To compile that test program, you need:
 
        <b>On Linux</b>
index 11162c07f247e1fb9cac5300763eb1728a09ef64..87d2f1f86d213356bf1c31afed86d4b785fa5281 100644 (file)
        
 * Current Status
 
-       We are able now to run basic commands (INSERT, DELETE) into a
-       PostgreSQL database (see mcs/class/System.Data/Test/TestSqlInsert.cs).
+       We are able to do simple CREATE TABLE, DROP TABLE, INSERT, and
+       DELETE SQL commands using the ExecuteNonQuery method in SqlCommand.  
+       
+       We are also     able to do simple aggregate functions, 
+       ie, count(), sum(), avg(), min(), and
+       max() in a simple SELECT SQL query using ExecuteSecalar() now.  
+       
+       We are also able to retrieve data with a simple SELECT SQL query 
+       using ExecuteReader() which returns a SqlDataReader.  We are able to
+       GetSchemaTable() get the meta data about the table columns.  We are able
+       to Read() to get each row from the result set.  We are able to get 
+       String data (char, bpchar (character), text, varchar), Int16 (int2 or smallint),
+       and Int32 (int4 or integer), Int64 (int8 or bigint).  More data types will
+       follow later on.
+               
+       Parameters are not working nor has stored procedures been tested - but they will be.
+       
+       A lot of functionality in System.Data is missing, but the infrastructure is
+       starting to come together.
+       
        To compile that test program, you need:
 
        <b>On Linux</b>