⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 connectionparams.cs

📁 Adding and making operations LOB data in a database with C#
💻 CS
字号:
/**************************************************************************
@author  Chandar
@version 1.0
Development Environment        :  Visual C#.Net Beta2
Name of the File               :  ConnectionParams.cs
Creation/Modification History  :
                                  02-AUG-2001     Created

File Overview
This file defines the variables for connection parameters for database
**************************************************************************/

using System;
namespace LOBSample
{

	public class ConnectionParams
	{
        //Parameters for database connection
		//Change the values to those applicable to your database
		public static string Datasource="ifso817";         //Database SID
		public static string Username="OLEDBBACKUP";      //Username
		public static string Password="OLEDBBACKUP";      //Password
	}
}
			

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -