Click here to Skip to main content
15,881,248 members
Home / Discussions / Database
   

Database

 
AnswerRe: Database is suspect Pin
Pete O'Hanlon15-Oct-07 2:01
mvePete O'Hanlon15-Oct-07 2:01 
GeneralRe: Database is suspect Pin
Phan Van Thao15-Oct-07 15:03
Phan Van Thao15-Oct-07 15:03 
QuestionWindows authentication - not prompted? [modified] Pin
dandy7214-Oct-07 11:36
dandy7214-Oct-07 11:36 
AnswerRe: Windows authentication - not prompted? Pin
Mike Dimmick15-Oct-07 3:52
Mike Dimmick15-Oct-07 3:52 
GeneralRe: Windows authentication - not prompted? Pin
dandy7215-Oct-07 10:15
dandy7215-Oct-07 10:15 
QuestionSet Null in Ms Access DB again! Pin
Whoami Whoami14-Oct-07 8:35
Whoami Whoami14-Oct-07 8:35 
AnswerRe: Set Null in Ms Access DB again! [modified] Pin
pmarfleet14-Oct-07 10:02
pmarfleet14-Oct-07 10:02 
QuestionSystem.Data.OleDb.OleDbException Pin
s4_sabahatf14-Oct-07 8:31
s4_sabahatf14-Oct-07 8:31 
OleDbConnection objConnection = null;
OleDbCommand objCmd = null;
String strConnection, strSQL;

strConnection = "Provider=Microsoft.Jet.OleDb.4.0;";
strConnection += @"Data Source=C:\use.mdb";
//strConnection += @"Data Source="+MapPath("use.mdb");
// Create and open the connection object
objConnection = new OleDbConnection(strConnection);
objConnection.ConnectionString = strConnection;

objConnection.Open();
// set the SQL string
strSQL = "INSERT INTO user (username , password ) " +"VALUES ( '1' , '9' )";

// Create the Command and set its properties
objCmd = new OleDbCommand(strSQL, objConnection);
// execute the command
objCmd.ExecuteNonQuery();



///////////////////////////////////////////////////////////
Please do tell me the solution for following Exception
/////////////////////////////////////////////////////////
An unhandled exception of type'System.Data.OleDb.OleDbException' occurred in system.data.dll
AnswerRe: System.Data.OleDb.OleDbException Pin
Mike Dimmick14-Oct-07 11:06
Mike Dimmick14-Oct-07 11:06 
QuestionSQL Server Batch jobs Pin
naren37814-Oct-07 7:32
naren37814-Oct-07 7:32 
AnswerRe: SQL Server Batch jobs Pin
Marek Grzenkowicz14-Oct-07 23:49
Marek Grzenkowicz14-Oct-07 23:49 
QuestionDeploy .Net Application With Sql Server 2005 Pin
DotNetWWW14-Oct-07 6:46
DotNetWWW14-Oct-07 6:46 
AnswerRe: Deploy .Net Application With Sql Server 2005 Pin
Mike Dimmick14-Oct-07 11:26
Mike Dimmick14-Oct-07 11:26 
GeneralRe: Deploy .Net Application With Sql Server 2005 Pin
DotNetWWW14-Oct-07 19:09
DotNetWWW14-Oct-07 19:09 
QuestionOleDB using MS-Access Pin
s4_sabahatf14-Oct-07 5:28
s4_sabahatf14-Oct-07 5:28 
AnswerRe: OleDB using MS-Access Pin
pmarfleet14-Oct-07 7:45
pmarfleet14-Oct-07 7:45 
AnswerRe: OleDB using MS-Access Pin
Hesham Amin14-Oct-07 7:52
Hesham Amin14-Oct-07 7:52 
QuestionOleDB using MS-Access Pin
s4_sabahatf14-Oct-07 5:27
s4_sabahatf14-Oct-07 5:27 
AnswerRe: OleDB using MS-Access Pin
Muhammad Shahid Farooq28-Oct-07 13:17
professionalMuhammad Shahid Farooq28-Oct-07 13:17 
QuestionProblem with updating dataset with database Pin
vbar14-Oct-07 4:03
vbar14-Oct-07 4:03 
QuestionSQL Server Management Studio Express Problem Pin
Vipin.d13-Oct-07 21:26
Vipin.d13-Oct-07 21:26 
AnswerRe: SQL Server Management Studio Express Problem Pin
Hesham Amin13-Oct-07 22:51
Hesham Amin13-Oct-07 22:51 
GeneralRe: SQL Server Management Studio Express Problem Pin
Vipin.d14-Oct-07 1:11
Vipin.d14-Oct-07 1:11 
QuestionInserting Only Distinct Items Pin
Ian Uy13-Oct-07 9:55
Ian Uy13-Oct-07 9:55 
AnswerRe: Inserting Only Distinct Items Pin
Giorgi Dalakishvili13-Oct-07 10:18
mentorGiorgi Dalakishvili13-Oct-07 10:18 

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.