Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
B

baymyo

@baymyo
About
Posts
5
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Connect to the database with more than one single layer.
    B baymyo

    Description Image http://baymyo.com/gallery/pimage/multi_sql_code_generate_gif-50cf8.gif[^] Open Source Code, Downlaod Click Here! MSSQL, ORACLE, MySQL, and OleDb to establish connections to servers via a single layer. The following block of code to show the connection layer.

    public class MConnection : IDisposable
    {
    #region IDisposable Members
    public void Dispose()
    {
    this.Close();
    if (this.m_ClientConnection != null)
    this.m_ClientConnection.Dispose();
    GC.SuppressFinalize(this);
    }
    #endregion

        #region --- Member ---
        IMConnection m\_ClientConnection;
        internal IMConnection ClientConnection
        {
            get { return m\_ClientConnection; }
        }
    
        private MClientProvider m\_ClientProvider;
        public MClientProvider ClientProvider
        {
            get { return m\_ClientProvider; }
        }
    
        private string m\_ConnectionString;
        public string ConnectionString
        {
            get { return m\_ConnectionString; }
        }
    
        private System.Data.ConnectionState m\_State;
        public System.Data.ConnectionState State
        {
            get { return m\_State; }
        }
    
        public System.ComponentModel.ISite Site
        {
            get
            {
                return m\_ClientConnection.Site;
            }
            set
            {
                m\_ClientConnection.Site = value;
            }
        }
    
        public string ServerVersion
        {
            get
            {
                return m\_ClientConnection.ServerVersion;
            }
        }
    
        public string Database
        {
            get
            {
                return m\_ClientConnection.Database;
            }
        }
    
        public string DataSource
        {
            get
            {
                return m\_ClientConnection.DataSource;
            }
        }
        #endregion
    
        #region --- Constructor ---
        public MConnection(MClientProvider clientProvider)
        {
            this.m\_ClientProvider = clientProvider;
            switch (this.m\_Cli
    
    Database database mysql sql-server oracle com

  • Free "ORM" Application [modified]
    B baymyo

    http://www.codeproject.com/Messages/3656015/ORM-Application-and-Open-Source-database-layer.aspx[^]

    Database database com

  • Free "ORM" Application [modified]
    B baymyo

    i can't understand your comment? can you describe it?

    Database database com

  • Free "ORM" Application [modified]
    B baymyo

    See link below for detailed information about the application. http://www.codeproject.com/Messages/3656015/ORM-Application-and-Open-Source-database-layer.aspx[^]

    modified on Thursday, November 4, 2010 10:04 AM

    Database database com

  • "ORM" Application and Open Source "database layer"
    B baymyo

    I developed this application. Application of a brief "ORM" application has a similar structure. "ORM" application "as Insert, Update, Delete, Select" Options like the current. - Implementation of a practice in the external chat application, chat, your server does not show the other user. By using the chat input, allows you to chat with the developers. - Personalize the settings available. - MS SQL database create script. - Table structure in MS SQL, ORACLE creates the script for a transfer. - MS SQL Stored Procedures to create and associate with the created class. - Oracle Stored Procedures to create and associate with the created class. - Creates classes in C # or VB.NET. - The application's reference to "DLL" is distributed as open source. Reference "DLL" is very important. There are classes in English and Turkish. You need to do is "to download, install and use." Application using the following link to the site as a member you know. Application Download Click Here![^] The application of video http://vimeo.com/16447552[^] Application Screenshots http://www.baymyo.com/Images/resimgaleri/1/75cacab8-65f8-4255-8ed9-6346c55f591f/02112010123603d65b6744c35742a6.png[^] Application, Open Source "database layer" http://www.baymyo.com/page/d/DatabaseClient.rar[^] "database layer" ClassDiagram Screenshots http://www.baymyo.com/userfiles/image/screens/DatabaseClient_ClassDiagrams.png[^] Sample Project

    .NET (Core and Framework) database csharp oracle com
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups