Site search:

Accessing MySQL on VB.NET using MySQL Connector/Net, Part VI: Create Connection

Programming, VB.NET 12 Comments »

Create Connection

After I have prepared many things for showing how to access MySQL Server using VB.NET. Let’s see what I have done so far. Right now, I have a remote MySQL Server at 192.168.125.21 with port 3306 (Default port). Also, a sample database “world” and a user account “worldUser” with password “worldpassword”. Now it’s time to start Microsoft Visual Studio 2005 on a development PC.

Read the rest of this entry »

Accessing MySQL on VB.NET using MySQL Connector/Net, Part V: Install MySQL Connector Net

Programming, VB.NET No Comments »

Install MySQL Connector Net

From last 4 parts, I have prepared MySQL Server with sample database. I’ve done on a database PC. Next, I’ll move to a development PC. Assume that I have already installed Microsoft Visual Studio 2005 already. Now I need to download and install MySQL Connector/Net 5.2 on a Development PC which is a library for connect to MySQL Server from .NET Application.

Read the rest of this entry »

Accessing MySQL on VB.NET using MySQL Connector/Net, Part IV: Create & Grant MySQL User Account

Programming, VB.NET 1 Comment »

Create & Grant MySQL User Account

By default, the root account on MySQL Server has all privileges on every tables on MySQL Server but only localhost can have accessed (remote access is not allowed) and it is recommend to use other user account rather than root account to perform operations on MySQL Server (for security issue). Therefore, you should create a new user account on MySQL and grant at least privileges for the account as possible.

Read the rest of this entry »

Accessing MySQL on VB.NET using MySQL Connector/Net, Part III: Install Sample Database

Programming, VB.NET No Comments »

Install Sample Database

You can download example databases for MySQL at http://dev.mysql.com/doc (Scroll down to Example Databases section). By the time I’m writing the article, there are 4 sample databases available on the page. I choose the world database since it compatible with all MySQL version.

Read the rest of this entry »

Accessing MySQL on VB.NET using MySQL Connector/Net, Part II: Setup MySQL Server

Programming, VB.NET No Comments »

Setup MySQL Server

This section I’ll show how to setup MySQL Server on a database PC. You can see index of this series at Accessing MySQL on VB.NET using MySQL Connector/Net, Part I: Introduction

Read the rest of this entry »

Accessing MySQL on VB.NET using MySQL Connector/Net, Part I: Introduction

Programming, VB.NET 3 Comments »

Introduction

Here comes again, tutorial about programming to access a database server. This tutorial shows you how to use Microsoft Visual Studio’s VB.NET to connect MySQL using MySQL Connector/Net.

Read the rest of this entry »

Optional parameters in Stored Procedure

MS SQL Server, Programming, Windows 4 Comments »

Introduction

When you create a store procedure on Microsoft SQL Server with some input parameters, sometimes you don’t want to assign all of parameters (optional parameters) so you need to specify default value for the parameters. Otherwise, it shows error when execute the store procedure.

Read the rest of this entry »

Create Dynamic RSS Feed from MS SQL Server using ASP.NET, Part II: C#

Programming, Windows 22 Comments »

This post, I’ll cover only in the second section “Create ASP.NET Web Application on MS Visual Studio 2005 (C#)”. I’m not going to repeat other sections again since they’re same as in the previous post. The other sections can be found in “Create Dynamic RSS Feed from MS SQL Server using ASP.NET, Part I: VB.NET”.

Read the rest of this entry »

Create Dynamic RSS Feed from MS SQL Server using ASP.NET, Part I: VB.NET

Programming, Windows 14 Comments »

Introduction

Before I started, let’s get to know what RSS is.

Quoted from Wikipedia.org Read the rest of this entry »

Biztalk Macros on FILE Send Adapter

BizTalk, Programming, Windows No Comments »

Microsoft BizTalk server provides a predefined set of macros to help in create output filenames on File send handler. If you working with sending output as a file, you’ll find these macros are really useful that you don’t have to coding any statement to get these value. These macros can be found on MSDN library but I sometimes find it’s time consuming to search on MSDN every time I forget the macro. Therefore, I decide to quote the table from MSDN to this post instead.

Read the rest of this entry »

Developing a Windows Service, Part IV: Debug the service

Programming, Windows 1 Comment »

Introduction

From previous part, you’ve learned to develop a simple windows service on Microsoft Visual Studio 2005 and how to create a setup wizard for install the service. But it wouldn’t be complete, if you don’t know how to debug a windows service while you’re developing a windows service. This part is about how to debug a windows service.

Read the rest of this entry »

Developing a Windows Service, Part III: Create a setup wizard

Programming, Windows 3 Comments »

Introduction

In this part, I’m going to create an installer project for install my windows service ‘MyService’. The installer wizard helps you to install service easily simply click next, next,.. and finish then you are done. With wizard installation, you can also uninstall the service from Add/Remove Program. If you prefer not to create setup wizard, you can install the service manually, too. You can find the detail about manually install the service at the bottom of this post.

Read the rest of this entry »

Powered by WordPress | WP Theme & Icons by N.Design Studio

Entries RSS Comments RSS Log in