Click here to Skip to main content
15,889,034 members
Home / Discussions / Database
   

Database

 
QuestionI think a basic question about crystal Report Pin
achrafus30-Sep-05 5:23
achrafus30-Sep-05 5:23 
QuestionPackaging a SQL Server database for installation as part of a custom application Pin
Sevu30-Sep-05 4:13
Sevu30-Sep-05 4:13 
AnswerRe: Packaging a SQL Server database for installation as part of a custom application Pin
Luis Alonso Ramos1-Oct-05 19:18
Luis Alonso Ramos1-Oct-05 19:18 
AnswerRe: Packaging a SQL Server database for installation as part of a custom application Pin
Anonymous3-Oct-05 1:01
Anonymous3-Oct-05 1:01 
AnswerRe: Packaging a SQL Server database for installation as part of a custom application Pin
moonmouse3-Oct-05 1:57
moonmouse3-Oct-05 1:57 
GeneralRe: Packaging a SQL Server database for installation as part of a custom application Pin
Dinuj Nath7-Oct-05 22:50
Dinuj Nath7-Oct-05 22:50 
QuestionConnect to SQL on same machine! help Pin
darXstar30-Sep-05 2:48
darXstar30-Sep-05 2:48 
AnswerRe: Connect to SQL on same machine! help Pin
Colin Angus Mackay30-Sep-05 12:13
Colin Angus Mackay30-Sep-05 12:13 
darXstar wrote:
Is it still possible to connect to sql (not using odbc) ??

I've never tried that configuration, but it should be possible.


darXstar wrote:
I nedd to modify my ADO.NET connection string?


darXstar wrote:
I nedd to modify my ADO.NET connection string?

I wouldn't think so, why not just try it? I've got loads of apps lying around that were just to try out something where the docs didn't give a complete explanation or I just wanted to see how something worked in isolation.


darXstar wrote:
Could someone showme an exemple?

Of what? Connecting to a SQL Server database using ADO.NET.
string connectionString = "server=(local);database=myData;uid=a;pwd=b";
SqlConnection conn = new SqlConnection(connectionString);
SqlCommand cmd = new SqlCommand();
cmd.CommandText = "myStoredProcedure";
cmd.CommandType = CommandType.StoredProcedure;
cmd.Connection = conn;
SqlReader reader = cmd.ExecuteReader();
while(reader.Read())
{
    // Do stuff to process the information being returned from
    // the database
}


Does this help?


My: Blog | Photos

"Man who stand on hill with mouth open will wait long time for roast duck to drop in." -- Confucious


GeneralRe: Connect to SQL on same machine! help Pin
darXstar3-Oct-05 5:39
darXstar3-Oct-05 5:39 
QuestionSELECTING COLLATION WHEN INSTALLING MSDE. Pin
Bigfootguy29-Sep-05 20:28
Bigfootguy29-Sep-05 20:28 
AnswerRe: SELECTING COLLATION WHEN INSTALLING MSDE. Pin
darXstar30-Sep-05 2:37
darXstar30-Sep-05 2:37 
QuestionTo Bitmask or Not Pin
xsoftdev229-Sep-05 19:35
xsoftdev229-Sep-05 19:35 
AnswerRe: To Bitmask or Not Pin
Russell Jones3-Oct-05 5:59
Russell Jones3-Oct-05 5:59 
QuestionOracle Help Needed - ComboBox data binding Pin
Glenn E. Lanier II29-Sep-05 9:30
Glenn E. Lanier II29-Sep-05 9:30 
AnswerRe: Oracle Help Needed - ComboBox data binding Pin
Guillermo Rivero3-Oct-05 11:40
Guillermo Rivero3-Oct-05 11:40 
AnswerRe: Oracle Help Needed - ComboBox data binding Pin
Glenn E. Lanier II2-Mar-06 8:33
Glenn E. Lanier II2-Mar-06 8:33 
QuestionWhere should I store my connection string? Pin
Haim Yulzari28-Sep-05 22:24
Haim Yulzari28-Sep-05 22:24 
AnswerRe: Where should I store my connection string? Pin
Anonymous29-Sep-05 7:41
Anonymous29-Sep-05 7:41 
AnswerRe: Where should I store my connection string? Pin
Luis Alonso Ramos29-Sep-05 17:13
Luis Alonso Ramos29-Sep-05 17:13 
AnswerRe: Where should I store my connection string? Pin
-Dr_X-2-Oct-05 14:42
-Dr_X-2-Oct-05 14:42 
QuestionRetrieve & update data against remote database Pin
nmhuy28-Sep-05 8:15
nmhuy28-Sep-05 8:15 
AnswerRe: Retrieve & update data against remote database Pin
enjoycrack28-Sep-05 20:01
enjoycrack28-Sep-05 20:01 
GeneralRe: Retrieve & update data against remote database Pin
nmhuy29-Sep-05 7:22
nmhuy29-Sep-05 7:22 
QuestionHelp in SQL Stored proc Pin
satishrg28-Sep-05 7:00
satishrg28-Sep-05 7:00 
AnswerRe: Help in SQL Stored proc Pin
enjoycrack28-Sep-05 20:08
enjoycrack28-Sep-05 20:08 

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.