Blog Home  Home Feed your aggregator (RSS 2.0)  
kevin Mocha - Monday, April 16, 2007
Bookmarks collected from web.
 
 Monday, April 16, 2007

http://www.manifold.net/doc/7x/sql_server_express_...

 

SQL Server Express Edition

The Manifold DVD includes a complete distribution of Microsoft® SQL Server™ 2005 Express Edition. SQL Server Express provides the power of SQL Server to Manifold System users at no additional charge.

Introduction

SQL Server 2005 Express Edition is derived from the same engine upon which Microsoft SQL Server 2005 is built. It is a newer and, in many key ways, better alternative to the SQL Server 2000 Desktop Engine (known as MSDE) distributed in earlier Manifold releases.

When delivered in SQL Server Express form, Microsoft has limited SQL Server in several ways:

§ A database cannot exceed 4 gigabytes in size.

§ SQL Server Express may be installed on a multiple CPU machine, but it will execute (run) only on a single processor or a single processor core if multi-core processors are used.

§ SQL Server Express may be installed on a server with any amount of memory, but will use only up to 1 GB of available RAM memory.

Other than these limitations SQL Server Express provides virtually the full power and breadth of SQL Server capabilities. Although MSDE was limited to no more than five users, SQL Server Express no longer has such an artificial throttle on performance. Within the limits of processor, RAM and maximum database size, SQL Server Express always runs at full speed.

 

SQL Server 2005 Features Comparison

http://www.microsoft.com/sql/prodinfo/features/com...

Note:  If SQL Server 2005 Express is running on Windows XP Home, it is limited to five simultaneous connections. If it is running on Windows 2000 or Windows XP Professional, it is limited to 10 simultaneous connections. However, these are limitations of the operating system and not of SQL Server 2005 Express.

 

Upgrading MSDE 2000 to SQL Server 2005 Express

http://www.microsoft.com/technet/prodtechnol/sql/2...

 

MySQL Community Server

http://dev.mysql.com/downloads/mysql/5.0.html

dual license model: http://www.mysql.com/company/legal/licensing/faq.h...

MySQL Enterprise Basic $595

Monday, April 16, 2007 8:38:08 PM UTC  #    Comments [0]    |  Trackback

http://webhost4life.com/wss.asp ($29.95/Month)

http://www.sharepointhosting.com/ (Video tutorials available)

Monday, April 16, 2007 7:44:10 PM UTC  #    Comments [0]    |  Trackback
 Friday, April 13, 2007
Friday, April 13, 2007 3:34:33 PM UTC  #    Comments [0]    |  Trackback
 Thursday, April 12, 2007
Thursday, April 12, 2007 9:41:22 PM UTC  #    Comments [0]    |  Trackback

Copy and paste the text below
<marquee scrollamount="1" scrolldelay="10" direction="up" width="200" height="50" style="font-family: Verdana; font-size: 8pt">
ENTER TEXT MESSAGE HERE 
</marquee>

 

http://www.comriesoftware.net/codewidgets/product....

Thursday, April 12, 2007 5:43:35 PM UTC  #    Comments [0]    |  Trackback
 Wednesday, April 11, 2007
  • SQLite (only C/C++ interfaces are provided)
  • Firebird (Previously Borland "interbase"
  • WilsonXmlDbClient (ADO.NET provider simulating database)
  • Microsoft potable database
Wednesday, April 11, 2007 4:02:27 PM UTC  #    Comments [0]    |  Trackback
 Tuesday, April 10, 2007
 Monday, April 09, 2007

Web 2.0 affirms that you can develop a better application, faster, with a handful of developers who know
what they are doing. Conversely, nine mothers cannot make a baby in one month.

The most popular mashups and remixes follow a similar pattern. For example, Google Maps (which
kick-started the rich browser application movement) was developed by a very small company in
approximately two weeks. Productivity and, consequently, business impact is so high because developers
have the tools they need on hand, and because, at the end of the day, the developers know what
they’re doing.

Amazon as a company has adopted the Web 2.0 line of thinking with open arms. Having weathered the
dot-com bubble
, it has its sights fixed firmly on the future, and is making great strides toward defining
the direction of its company and, to some degree, the Internet itself.

Amazon allows customers to review products, tag and categorize them, rate products, and even rate
product reviews by other customers.

The Web is alive and well and more compelling than ever. I once sat in a conference room where one
CEO likened the creation of the Internet to the discovery of fire. Now, even with my best propeller hat
firmly in place, I think fire was a little more significant. Nevertheless, there is a wealth of opportunity on
the Web for developers and business people alike.

Monday, April 09, 2007 9:06:35 PM UTC  #    Comments [0]    |  Trackback
 Saturday, April 07, 2007

http://msdn2.microsoft.com/en-us/library/ms178116.aspx

ApplicationPath

Gets the root path of the current application, regardless of where in the application you request it. For the example, the property returns the following: /

CurrentExecutionFilePath

Gets the virtual path of the current request. Differs from the FilePath property in that CurrentExecutionFilePath is correct if the request has been redirected in server code. For the example, the property returns the following: /MyApplication/MyPages/Default.aspx

If you get the property in code that is running as a result of a call to Transfer or Execute, the path reflects the location of the code.

FilePath

Gets the virtual path of the current request. For the example, the property returns the following: /MyApplication/MyPages/Default.aspx

Unlike the CurrentExecutionFilePath property, FilePath does not reflect server-side transfers.

Path

Gets the virtual path of the current request. For the example, the property returns the following: /MyApplication/MyPages/default.aspx

PhysicalApplicationPath

Gets the physical file system path of the currently executing application's root directory. For the example, the property returns the following: C:\inetpub\wwwroot\

PhysicalPath

Gets the physical file-system path that corresponds to the requested URL. For the example, the property returns the following: C:\inetpub\wwwroot\MyApplication\MyPages\default.aspx

Saturday, April 07, 2007 3:30:06 AM UTC  #    Comments [1]    |  Trackback
 Thursday, April 05, 2007

http://en.csharp-online.net/BCL_Generics%E2%80%94S...
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;

namespace SortedListTest
{
    public class Customer
    {
        private int id;
        private string name;
        private string category;
        public int Id
        {
            get
            {
                return id;
            }
            set
            {
                if (id == value)
                    return;
                id = value;
            }
        }
        public string Name
        {
            get
            {
                return name;
            }
            set
            {
                if (name == value)
                    return;
                name = value;
            }
        }
        public string Category
        {
            get
            {
                return category;
            }
            set
            {
                if (category == value)
                    return;
                category = value;
            }
        }

        /// <summary>
        /// Creates a new instance of customer
        /// </summary>
        /// <param name="id"></param>
        /// <param name="name"></param>
        /// <param name="category"></param>
        public Customer(int id, string name, string category)
        {
            this.id = id;
            this.name = name;
            this.category = category;
        }

        public override string ToString()
        {
            return string.Format("{0}-{1}-{2}", id, name, category);
        }
    }


    class Program
    {
        static void Main(string[] args)
        {
            List<Customer> collCustList =
                new List<Customer>();
            collCustList.Add(new Customer(99,
               "Happy Gillmore", "Platinum"));
            collCustList.Add(new Customer(77,
               "Billy Madison", "Gold"));
            collCustList.Add(new Customer(55,
               "Bobby Boucher", "Gold"));
            collCustList.Add(new Customer(88,
               "Barry Egan", "Platinum"));
            collCustList.Add(new Customer(11,
               "Longfellow Deeds", "Other"));

            Console.Out.WriteLine("Before:");
            foreach (Customer cust in collCustList)
                Console.Out.WriteLine(cust);

            collCustList.Sort
               (delegate(Customer cust1,
               Customer cust2)
            {
                return Comparer<int>.Default.Compare
                   (cust1.Id, cust2.Id);
            });

            Console.Out.WriteLine("After:");
            foreach (Customer cust in collCustList)
                Console.Out.WriteLine(cust);

            collCustList.Reverse();

            Console.Out.WriteLine("Reversed:");
            foreach (Customer cust in collCustList)
                Console.Out.WriteLine(cust);

            Console.In.ReadLine();
        }

   
    }
}
Thursday, April 05, 2007 9:47:57 PM UTC  #    Comments [0]    |  Trackback
Copyright © 2009 Kevin Mocha. All rights reserved.
DasBlog 'Portal' theme by Johnny Hughes.
Pick a theme: