connectionparams.cs
来自「Adding and making operations LOB data in」· CS 代码 · 共 26 行
CS
26 行
/**************************************************************************
@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="toshins"; //Database SID
public static string Username="oraole"; //Username
public static string Password="oraole"; //Password
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?