0

sybex c sharp database programming

Practical Database Programming With Visual C#.NET- P6

Practical Database Programming With Visual C#.NET- P6

Cơ sở dữ liệu

... new SelectionForm(); OleDbDataReader accDataReader; accCommand.Connection = accConnection; accCommand.CommandType = CommandType.Text; accCommand.CommandText = cmdString; accCommand.Parameters.Add("@Param1", ... DataTable accDataTable = new DataTable(); OleDbCommand accCommand = new OleDbCommand(); SelectionForm selForm = new SelectionForm(); accCommand.Connection = accConnection; accCommand.CommandType ... Server ODBC ORACLE OleDb Connection Sql Connection Odbc Connection Oracle Connection OleDb Command Sql Command Odbc Command Oracle Command Parameter CommandExecuteReader ExecuteNonQuerySELECT...
  • 50
  • 638
  • 0
Practical Database Programming With Visual C#.NET- P7

Practical Database Programming With Visual C#.NET- P7

Cơ sở dữ liệu

... string.Empty; DataRow rowFaculty; accCmdFaculty.Connection = logForm.accConnection; accCmdFaculty.CommandType = CommandType.Text; accCmdFaculty.CommandText = strFaculty; accCmdFaculty.Parameters.Add("@Param1", ... MTC-336J33486 Steve Johnson MTC-118K69880 Jenney King MTC-324course_id faculty_id classroomCSC-131A A52990 TC-109CSC-13 1C A52990 TC-109CSC-132A J33486 TC-303CSC-132B B78880 TC-302CSC-230 ... OleDbType.Char).Value = ComboName.Text; FacultyDataAdapter.SelectCommand = accCmdFaculty; FacultyDataAdapter.Fill(accFacultyTable); if (accFacultyTable.Rows.Count > 0) { rowFaculty = accFacultyTable.Rows[0];...
  • 50
  • 646
  • 1
Practical Database Programming With Visual C#.NET- P8

Practical Database Programming With Visual C#.NET- P8

Cơ sở dữ liệu

... oraDataReader.Close(); }A B C D OracleSelectRTObject.LogInForm cmdReadLogIn_Click() Figure 5.164 Coding for the ReadLogIn button Click method. private void cmdCancel_Click(object sender, ... namespace System.Data.SqlClient to the namespace declaration section on this SP form code window. The only difference is the codes for the Select button Click method, cmdSelect_Click(). Don ’ t copy ... cse_dept.Connection.Close(); Application.Exit(); } public LogInForm getLogInForm() { return this; } A B SQLSelectRTObjectLINQ.LogInForm cmdCancel_Click() Figure 5.146 Codes for the Cancel...
  • 50
  • 507
  • 0
Practical Database Programming With Visual C#.NET- P9

Practical Database Programming With Visual C#.NET- P9

Cơ sở dữ liệu

... Microsoft Access 2007 database, CSE_DEPT.accdb, which was developed in Chapter 2 and is located in the folder Database\ Access located at the accompanying site: ftp://ftp.wiley.com/public/sci_tech_med/practical _database ... data queries on Microsoft Access 2007, SQL Server 2005, and Oracle databases. • Use the OleDbConnection, SqlConnection, or OracleConnection class to connect to Microsoft Access 2007, SQL Server ... with Visual C# .NET • Use the OleDbConnection, SqlConnection, and OracleConnection class to dynamically connect to Microsoft Access 2007, SQL Server 2005 Express, and Oracle 10g XE databases....
  • 50
  • 537
  • 0
Practical Database Programming With Visual C#.NET- P10

Practical Database Programming With Visual C#.NET- P10

Cơ sở dữ liệu

... logForm.getLogInForm(); accCommand.Connection = logForm.accConnection; accCommand.CommandType = CommandType.Text; accCommand.CommandText = cmdString; accCommand.Parameters.Add("@name", OleDbType.Char).Value ... les: • AccessInsertRTObject.sln • AccessInsertRTObject.csproj • AccessInsertRTObject.exe • AccessInsertRTObject.pdb • AccessInsertRTObject.cshost.exe • AccessInsertRTObject.xml To ... the Access database and the Faculty table, right - click on the new inserted faculty record, and click on the Delete Record item to remove it. A completed project AccessInsertRTObject can...
  • 50
  • 565
  • 0
Database Programming with C#

Database Programming with C#

Kỹ thuật lập trình

... the modification has occurred. However, this doesn’t mean that a changecan’t be rolled back, because the trigger has direct access to the modified row andas such can roll back any modification. ... the connection23 cnnUserMan = new SqlConnection(STR_CONNECTION_STRING);24 cnnUserMan.Open();2526 // Instantiate and initialize command27 cmmUser = new SqlCommand(“SELECT * FROM viwUser”, cnnUserMan);28 ... constraint in some situations, because a trigger can access columnsin other tables, unlike a constraint, which can only access columns in the currenttable or row. If your code is to handle your business...
  • 48
  • 469
  • 1
Practical Database Programming With Visual C#.NET- P11

Practical Database Programming With Visual C#.NET- P11

Cơ sở dữ liệu

... password is reback). Click on the Object Browser and select the Create|Procedures item to open the Create Procedure window. Click the Create button and select the Procedure icon from the list ... string cmdString = "InsertCourse"; int intInsert = 0;OracleCommand oraCommand = new OracleCommand(); oraCommand.Connection = oraConnection; oraCommand.CommandType = CommandType.StoredProcedure; ... project AccessInsertRTObject (the project fi le is located at the folder DBProjects\Chapter 6 located at the accompanying ftp site (see Chapter 1 ). 5. Using the stored procedure to complete...
  • 50
  • 808
  • 0
Practical Database Programming With Visual C#.NET- P12

Practical Database Programming With Visual C#.NET- P12

Cơ sở dữ liệu

... CommandType.StoredProcedure; accCommand.CommandText = cmdString; accCommand.Parameters.Add("FacultyName", OleDbType.Char).Value = ComboName.Text; intDelete = accCommand.ExecuteNonQuery(); accCommand.Dispose(); ... DBProjects\Chapter 7 located at the accompanying ftp site (see Chapter 1 ). Course Table course_id StudentCourse Table course_id course_id=CSC-132Bcourse_id=CSC-234A course_id=CSE-434 course_id=CSE-438 ... nish this project. 1. Modify the existing project to access the Microsoft Access database. 2. Create stored procedures in the Microsoft Access database. 3. Call the stored procedure to update...
  • 50
  • 632
  • 0
Practical Database Programming With Visual C#.NET- P13

Practical Database Programming With Visual C#.NET- P13

Cơ sở dữ liệu

... Application["sqlConnection"] = sqlConnection; //define a global connection object if (sqlConnection.State == ConnectionState.Open) sqlConnection.Close(); sqlConnection.Open(); if (sqlConnection.State ... protected void cmdCancel_Click(object sender, EventArgs e) { if (sqlConnection.State == ConnectionState.Open) sqlConnection.Close(); Response.Write("<script>window.close()</script>"); ... _Default cmdCancel_Click() Figure 8.9 Coding for the Cancel button ’ s Click method. protected void cmdLogIn_Click(object sender, EventArgs e) { string cmdString = "SELECT user_name,...
  • 50
  • 617
  • 0
Practical Database Programming With Visual C#.NET- P14

Practical Database Programming With Visual C#.NET- P14

Cơ sở dữ liệu

... OracleCommand(); int intDelete = 0; oraCommand.Connection = (OracleConnection)Application["oraConnection"]; oraCommand.CommandType = CommandType.StoredProcedure; oraCommand.CommandText ... PhotoBox.ImageUrl = FacultyImage; oraCommand.Connection = (OracleConnection)Application["oraConnection"]; oraCommand.CommandType = CommandType.Text; oraCommand.CommandText = cmdString; ... StudentCourse Table s_course_id student_id course_id credit major1005 J77896 CSC-234A 3 CS/IS 1009 A78835 CSE-434 3 CE 1014 A78835 CSE-438 3 CE 1016 A97850 CSC-132B 3 ISE 1017 A97850 CSC-234A...
  • 50
  • 561
  • 0
Practical Database Programming With Visual C#.NET- P15

Practical Database Programming With Visual C#.NET- P15

Cơ sở dữ liệu

... ConfigurationManager.ConnectionStrings["sql_conn"].ConnectionString; SqlConnection sqlConnection = new SqlConnection(); sqlConnection.ConnectionString = cmdString; sqlConnection.Open(); if (sqlConnection.State ... protected SqlConnection SQLConn() { string cmdString = ConfigurationManager.ConnectionStrings["sql_conn"].ConnectionString; SqlConnection conn = new SqlConnection(); conn.ConnectionString ... a ConnectionStringSettingsCollection object containing the contents of the ConnectionStringsSection object for the current application ’ s default confi guration, and a ConnectionStringsSection...
  • 50
  • 544
  • 0
Tài liệu Practical Database Programming With Visual C#.NET- P16 pptx

Tài liệu Practical Database Programming With Visual C#.NET- P16 pptx

Cơ sở dữ liệu

... DBProjects\Chapter 9 located at the accompanying ftp site (see Chapter 1 ), and select the Web Service project WebServiceSQLInsert. Copy this project and paste it into our new folder C: \Chapter ... string cmdString = "SELECT Course.course_id FROM Course JOIN Faculty " + "ON (Course.faculty_id LIKE Faculty.faculty_id) AND (Faculty.faculty_name LIKE @name)"; SqlConnection ... associated data objects such as Connection object, Command text, and Command type. Note that the Command type must be set to the StoredProcedure since this method will call a stored procedure,...
  • 50
  • 583
  • 1
Tài liệu Practical Database Programming With Visual C#.NET- P17 docx

Tài liệu Practical Database Programming With Visual C#.NET- P17 docx

Cơ sở dữ liệu

... OracleConnection OracleConn() { string cmdString = ConfigurationManager.ConnectionStrings["ora_conn"].ConnectionString; OracleConnection conn = new OracleConnection(); conn.ConnectionString ... [WebMethod]public OracleInsertBase GetOracleInsertCourse(string CourseID) { string cmdString = "WebSelectCourseSP.SelectCourse"; OracleConnection oraConnection = new OracleConnection(); OracleInsertBase ... Web Service to access an SQL Server database or to access an Oracle database. For example, you can use any client projects, such as either WinClientSQLSelect or WebClientSQLSelect, which we developed...
  • 50
  • 590
  • 0
Tài liệu Practical Database Programming With Visual C#.NET- P18 pptx

Tài liệu Practical Database Programming With Visual C#.NET- P18 pptx

Cơ sở dữ liệu

... [WebMethod]publicOracleBase GetOracleCourseDetail(string CourseID) { string cmdString = "WebSelectCourseSP.SelectCourse"; OracleConnectionoraConnection = newOracleConnection(); ... fname)"; OracleConnectionoraConnection = newOracleConnection(); OracleBaseOracleResult = newOracleBase(); OracleCommandoraCommand = newOracleCommand(); OracleDataReaderoraReader; ... ConfigurationManager.ConnectionStrings["ora_conn"].ConnectionString; OracleConnection conn = new OracleConnection(); conn.ConnectionString = cmdString; conn.Open(); if (conn.State != System.Data.ConnectionState.Open) {...
  • 31
  • 590
  • 0
Tài liệu Practical Database Programming With Visual C#.NET- P1 doc

Tài liệu Practical Database Programming With Visual C#.NET- P1 doc

Cơ sở dữ liệu

... student_id course_id credit major1000 H10210 CSC-131D 3 CE 1001 B92996 CSC-132A 3 CS/IS 1002 J77896 CSC-335 3 CS/IS 1003 A78835 CSC-331 3 CE 1004 H10210 CSC-234B 3 CE 1005 J77896 CSC-234A 3 CS/IS ... B92996 CSC-233A 3 CS/IS 1007 A78835 CSC-132A 3 CE 1008 A78835 CSE-432 3 CE 1009 A78835 CSE-434 3 CE 10010 J77896 CSC-439 3 CS/IS 10011 H10210 CSC-132A 3 CE 10012 H10210 CSC-331 2 CE 10013 ... 10013 A78835 CSC-335 3 CE 10014 A78835 CSE-438 3 CE 10015 J77896 CSC-432 3 CS/IS 10016 A97850 CSC-132B 3 ISE 10017 A97850 CSC-234A 3 ISE 10018 A97850 CSC-331 3 ISE 10019 A97850 CSC-335 3 ISE...
  • 50
  • 520
  • 2

Xem thêm