ソース掲示板




すべてから検索

キーワード   条件 表示 現行ログ 過去ログ トピックス 名前 本文

  メンテナンス 前画面に戻る

対象スレッド 件名: C# Console (1) : 最低限のスケルトン
名前: lightbox
処理選択
パスワード

件名 C# Console (1) : 最低限のスケルトン
名前 lightbox
コメント
@DIV
using System.Data.Odbc;
using System;
using System.IO;
using System.Text;
using System.Windows.Forms;

// ********************************************************
// * 実行
// ********************************************************
public class App
{

	public static void Main() {

	}

}

// <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
// 処理クラス
// <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
public class lightbox
{

	// 接続オブジェクト
	private OdbcConnection myCon = new OdbcConnection();
	// コマンドオブジェクト
	private OdbcCommand myCommand = new OdbcCommand();
	// 接続文字列
	public String strCon = String.Empty;

	// ********************************************************
	// コンストラクタの定義( クラスと同名 )
	// ********************************************************
	public lightbox( String str ) {

		strCon = str;

	}

}
@END