April 2005 - Posts

SP2 includes a variety of improvements to the initial product release. Documentation for this release is provided in the SP2readme_lang.htm, which can be downloaded below or found in the Reporting Services installation directory after Setup is complete.

Quick Info
Download Size: 74 KB - 22111 KB
Date Published: 22-apr-2005
Version: 8.00.1038
Download: http://www.microsoft.com/downloads/details.aspx?familyid=502c0d89-1308-4662-8f58-cec55ef1235b&displaylang=en
 

Gentle.NET (hoy en versión 1.2.2) es un marco de persistencia de objetos .NET independiente del sistema de base de datos subyacente. Gentle.NET está disponible con código fuente en http://sourceforge.net/projects/gopf. Para leer la documentación ir directamente a:

http://www.mertner.com/confluence/display/Gentle/Documentation+Home

Un ejemplo de uso, copiado de la documentación:

[TableName]
public class User : Persistent
{
    private int userId;
    private string userName;

    // this is used by clients to construct new users
    public User( string userName ) : this( 0, userName ) {}

    // this is used by Gentle to reconstruct objects read from the database
    public User( int userId, string userName )
    {
        this.userId = userId;
        this.userName = userName;
    }

    // this is used by client to fetch users from the database
    static public User Retrieve( int userId )
    {
        Key key = new Key( typeof(User), true, "Id", userId );
        return Broker.RetrieveInstance( typeof(User), key ) as User;
    }

    [TableColumn("UserId"), PrimaryKey(AutoGenerated=true)]
    public int Id
    {
        get{ return userId; }
        set{ userId = value; }
    }

    [TableColumn(NotNull=true)]
    public string Name
    {
        get{ return userName; }
        set{ userName = value; }
    }
}
User ford = new User( "Ford Prefect" );
ford.Persist(); // save the new user and assign an id value
User prefect = User.Retrieve( ford.Id ); // retrieve the existing user
 

La Etapa Uruguay de la gira INETA se realizará el SABADO 16 DE ABRIL en la Universidad Católica, Montevideo (Uruguay). La agenda es:

  • 08.30 hs – recepción del público
  • 09.00 hs – presentación del evento
  • 09.30 hs a 10:50 – charla 1 (1 h. 20’)
    Fernando Guerrero - “Desarrollo de aplicaciones de bases de datos con SQL Server 2005
  • 10.50 hs – intervalo 1 (10')
  • 11.00 hs a 12.20 hs –charla 2 (1 h. 20’)
    Guillermo Som Cerezo - "Desarrollo rápido de aplicaciones con Visual Basic 2005"
  • 12.20 a 12.30 - intervalo 2 (10')
  • 12.30 a 13.50 –  charla 3 (1 h. 20’)
    Daniel Seara - “Aplicaciones para la Web con acceso a datos, con Visual Studio 2005”
  • 13:50 a 14:00 - despedida y cierre del evento

La Universidad Católica está ubicada en: Avda. 8 de Octubre 2738, entre Garibaldi y Estero Bellaco, Montevideo (Uruguay).

Los detalles de las charlas están en http://www.mugcordoba.net.ar/#Gira

Saludos, nos veremos allí.
~gux

 

Este mes hay una gran cantidad de conferencias para ver online (en inglés) acerca de SQL Server 2005. Ver la lista completa en: http://www.microsoft.com/events/series/msdnsqlserver2005.mspx

Saludos
~gux

with 0 Comments