Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification.
The following page has been changed by KevinWilliams: http://wiki.apache.org/ws/Tuscany/TuscanyJava/DAS_Java_Overview/RDBDAS_Java_User_Guide/Basic_CRUD ------------------------------------------------------------------------------ = Basic CRUD = + The RDB DAS provides a simple, command-oriented approach for reading and writing to the database. + == Reading Data == - The RDB DAS provides a simple, command-oriented approach for reading and writing to the database. The following illustrates the simplest possible read: + The following illustrates the simplest possible read: {{{ DAS das = DAS.FACTORY.createDAS(getConnection()); Command readCustomers = das.createCommand("select * from CUSTOMER where ID = 22590"); @@ -21, +23 @@ The first line retreives the first Customer from the root's list of returned Customers (since we queried by ID, thereis only one). The second line pulls the LASTNAME value from the customer. + == Writing changes == + --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
