Changes between Version 15 and Version 16 of MapGuideRfc86


Ignore:
Timestamp:
Sep 24, 2009, 8:01:12 PM (15 years ago)
Author:
leaf
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MapGuideRfc86

    v15 v16  
    3434  * MgFeatureSerive::!BeginTransaction will do something on the DRBMS serverwhen opening a transaction. This has consequences such as updates are only visible in this transaction, and data gets locked.
    3535
    36 Another issue is that it may result in a whole bunch of connections are open when using MgFeatureReader, MgDataReader or MgSqlDataReader. Each reader will use an FDO connection exclusively. So in the example below, it will have all of a sudden a whole bunch of admin connections open when you open a connection with admin rights.
     36Another issue is that it may result in a whole bunch of connections are open when using !MgFeatureReader, !MgDataReader or !MgSqlDataReader. Each reader will use an FDO connection exclusively. So in the example below, it will have all of a sudden a whole bunch of admin connections open when you open a connection with admin rights.
    3737
    3838{{{
     
    4646        }
    4747        reader2.Close();
    48         reader.Dispose();
     48        reader2.Dispose();
    4949    }
    5050    reader1.Close();