Click here to Skip to main content
15,881,938 members
Home / Discussions / C#
   

C#

 
GeneralRe: Sorting strings Pin
gamer11271-Sep-09 10:02
gamer11271-Sep-09 10:02 
GeneralRe: Sorting strings Pin
PIEBALDconsult1-Sep-09 11:21
mvePIEBALDconsult1-Sep-09 11:21 
QuestionDesign Question (Class vs Structs) Pin
student_rhr1-Sep-09 8:00
student_rhr1-Sep-09 8:00 
AnswerRe: Design Question (Class vs Structs) Pin
PIEBALDconsult1-Sep-09 8:54
mvePIEBALDconsult1-Sep-09 8:54 
Questionusing webbrowser to Interact with a Flash control??? Pin
Member 65252411-Sep-09 6:54
Member 65252411-Sep-09 6:54 
QuestionDatabase connection question Pin
tonyrdye1-Sep-09 6:35
tonyrdye1-Sep-09 6:35 
AnswerRe: Database connection question Pin
musefan1-Sep-09 6:43
musefan1-Sep-09 6:43 
AnswerRe: Database connection question Pin
Kevin Marois1-Sep-09 18:24
professionalKevin Marois1-Sep-09 18:24 
Create a data class that handles all data calls to & from the data source. I have one if you need it.

Then in your main class, mine is called csApp, create a class variable that holds it:

public static DataClass DataAccess;


Next, in the Main method do:
public static void Main(String[] args)
{
    DataAccess = new DataClass();
}



Then, anytime you need to call into the data source you can do:

DataSet ds = csApp.DataAccess.GetDataSet("select * from ....") 


This way it's always available. And you should always close the connection when you're
not using it.

Everything makes sense in someone's mind

AnswerRe: Database connection question Pin
seoamitk1-Sep-09 22:42
seoamitk1-Sep-09 22:42 
AnswerRe: Database connection question Pin
seoamitk1-Sep-09 23:06
seoamitk1-Sep-09 23:06 
QuestionGetting DBMS/Database server list using C# Pin
AhmedMasum1-Sep-09 3:59
AhmedMasum1-Sep-09 3:59 
AnswerRe: Getting DBMS/Database server list using C# Pin
Henry Minute1-Sep-09 4:17
Henry Minute1-Sep-09 4:17 
GeneralRe: Getting DBMS/Database server list using C# Pin
AhmedMasum1-Sep-09 4:28
AhmedMasum1-Sep-09 4:28 
GeneralRe: Getting DBMS/Database server list using C# Pin
Henry Minute1-Sep-09 4:38
Henry Minute1-Sep-09 4:38 
GeneralRe: Getting DBMS/Database server list using C# Pin
AhmedMasum2-Sep-09 3:29
AhmedMasum2-Sep-09 3:29 
QuestionMemory leakage in c# multithreading application windows service application Pin
susantasamanta851-Sep-09 3:42
susantasamanta851-Sep-09 3:42 
AnswerRe: Memory leakage in c# multithreading application windows service application Pin
DaveyM691-Sep-09 3:46
professionalDaveyM691-Sep-09 3:46 
AnswerRe: Memory leakage in c# multithreading application windows service application Pin
Dave Kreskowiak1-Sep-09 5:12
mveDave Kreskowiak1-Sep-09 5:12 
Questionwebbrowser stealing focus Pin
yeah10001-Sep-09 3:14
yeah10001-Sep-09 3:14 
AnswerRe: webbrowser stealing focus Pin
OriginalGriff1-Sep-09 3:38
mveOriginalGriff1-Sep-09 3:38 
GeneralRe: webbrowser stealing focus Pin
yeah10001-Sep-09 3:42
yeah10001-Sep-09 3:42 
GeneralRe: webbrowser stealing focus Pin
OriginalGriff1-Sep-09 4:24
mveOriginalGriff1-Sep-09 4:24 
GeneralRe: webbrowser stealing focus [modified] Pin
yeah10001-Sep-09 19:35
yeah10001-Sep-09 19:35 
QuestionPrevent the ^ character from beeing entered in textbox. Pin
xkrja1-Sep-09 3:10
xkrja1-Sep-09 3:10 
AnswerRe: Prevent the ^ character from beeing entered in textbox. Pin
stancrm1-Sep-09 3:27
stancrm1-Sep-09 3:27 

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.