Click here to Skip to main content
15,887,596 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to figure out whether an enum is defined in an assembly. Pin
_AnsHUMAN_ 3-Jun-09 22:45
_AnsHUMAN_ 3-Jun-09 22:45 
GeneralRe: How to figure out whether an enum is defined in an assembly. Pin
0x3c03-Jun-09 22:57
0x3c03-Jun-09 22:57 
GeneralRe: How to figure out whether an enum is defined in an assembly. Pin
_AnsHUMAN_ 3-Jun-09 23:43
_AnsHUMAN_ 3-Jun-09 23:43 
GeneralRe: How to figure out whether an enum is defined in an assembly. Pin
0x3c04-Jun-09 1:43
0x3c04-Jun-09 1:43 
AnswerRe: How to figure out whether an enum is defined in an assembly. Pin
S. Senthil Kumar4-Jun-09 2:15
S. Senthil Kumar4-Jun-09 2:15 
GeneralRe: How to figure out whether an enum is defined in an assembly. Pin
_AnsHUMAN_ 4-Jun-09 20:11
_AnsHUMAN_ 4-Jun-09 20:11 
GeneralRe: How to figure out whether an enum is defined in an assembly. Pin
S. Senthil Kumar4-Jun-09 20:41
S. Senthil Kumar4-Jun-09 20:41 
QuestionOracle connection problem in C# Pin
mariamkhaqan3-Jun-09 21:59
mariamkhaqan3-Jun-09 21:59 
Hi I am unable to connect to oracle using c# , its giving me exception like "Connection not open" and sometimes TNS error , i have tried several methods which are as under
string oradb = "Data Source=(DESCRIPTION="
               + "(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ORASRVR)  (PORT=1521)))"
               + "(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=mariam)));"
               + "User Id=system;Password=mariam;";
OracleConnection conn = new OracleConnection(oradb);  // C#
               conn.Open();

and
string strCon = "Driver={Microsoft ODBC for Oracle};SERVER = 10.17.18.62; Uid=system;Pwd=mariam;";
              OdbcConnection odbc_Con = new OdbcConnection("Driver={Microsoft ODBC for Oracle};Server=DEDICATED; UID=system;PWD=mariam;");
                odbc_Con.ConnectionString = "Driver={Microsoft ODBC for Oracle};Server=DEDICATED; UID=system;PWD=mariam;";
              odbc_Con.Open();


and
string strCon = "Driver={Microsoft ODBC for Oracle};SERVER = 10.17.18.62; Uid=system;Pwd=mariam;";
               OleDbConnection  oracleConn = new OleDbConnection();
               oracleConn.ConnectionString = "Provider=\"OraOLEDB.Oracle.1\";User ID=system;Password=mariam; Data Source=XE; Extended Properties=\"\"; Persist Security Info=False ";
            oracleConn.Open();

help will be appreciated

regards,
Questionhelp Pin
Rajdeep.NET3-Jun-09 21:50
Rajdeep.NET3-Jun-09 21:50 
AnswerRe: help [modified] Pin
musefan3-Jun-09 21:51
musefan3-Jun-09 21:51 
GeneralRe: help Pin
0x3c03-Jun-09 22:01
0x3c03-Jun-09 22:01 
GeneralRe: help Pin
musefan3-Jun-09 22:04
musefan3-Jun-09 22:04 
GeneralRe: help Pin
Rajdeep.NET3-Jun-09 22:31
Rajdeep.NET3-Jun-09 22:31 
GeneralRe: help Pin
musefan3-Jun-09 22:35
musefan3-Jun-09 22:35 
GeneralRe: help Pin
0x3c03-Jun-09 22:35
0x3c03-Jun-09 22:35 
Questionwant to allow the user to enter ' but shows error Pin
Mehul_qaz3-Jun-09 21:15
Mehul_qaz3-Jun-09 21:15 
AnswerRe: want to allow the user to enter ' but shows error Pin
Blue_Boy3-Jun-09 21:26
Blue_Boy3-Jun-09 21:26 
GeneralRe: want to allow the user to enter ' but shows error Pin
Guffa3-Jun-09 21:55
Guffa3-Jun-09 21:55 
GeneralRe: want to allow the user to enter ' but shows error Pin
Blue_Boy5-Jun-09 1:33
Blue_Boy5-Jun-09 1:33 
AnswerRe: want to allow the user to enter ' but shows error Pin
Guffa3-Jun-09 21:52
Guffa3-Jun-09 21:52 
AnswerRe: want to allow the user to enter ' but shows error Pin
musefan3-Jun-09 21:56
musefan3-Jun-09 21:56 
QuestionAdvanced ToolTip. Pin
bsaksida3-Jun-09 20:40
bsaksida3-Jun-09 20:40 
AnswerRe: Advanced ToolTip. Pin
0x3c03-Jun-09 21:42
0x3c03-Jun-09 21:42 
QuestionError in Page.RegisterClientScriptBlock Pin
Murtuza Husain Miyan Patel3-Jun-09 20:39
professionalMurtuza Husain Miyan Patel3-Jun-09 20:39 
QuestionProblem in UnInstalling a BHO setup? Pin
svt gdwl3-Jun-09 20:24
svt gdwl3-Jun-09 20:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.