代码搜索:Transaction
找到约 6,361 项符合「Transaction」的源代码
代码结果 6,361
www.eeworm.com/read/207238/15277844
cpp transaction.cpp
//---------------------------------------------------------------------------
#include
#pragma hdrstop
USERES("Transaction.res");
USEFORM("Main.cpp", Form1);
//---------------------------
www.eeworm.com/read/207238/15278037
res transaction.res
www.eeworm.com/read/207238/15278038
dpr transaction.dpr
program Transaction;
uses
Forms,
Main in 'Main.pas' {MainForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.
www.eeworm.com/read/492368/1175594
java transaction.java
//$Id: Transaction.java,v 1.5.2.2 2003/09/29 12:06:30 oneovthafew Exp $
package net.sf.hibernate.odmg;
import org.odmg.LockNotGrantedException;
import org.odmg.ODMGException;
import org.odmg.ODMGRunt
www.eeworm.com/read/492368/1175624
java transaction.java
//$Id: Transaction.java,v 1.6.2.1 2003/08/09 11:24:46 turin42 Exp $
package net.sf.hibernate;
/**
* Allows the application to define units of work, while
* maintaining abstraction from the underlyi
www.eeworm.com/read/491263/1192260
cs transaction.cs
using System;
using System.Data;
using System.Data.SqlClient;
namespace DAL.SqlServer
{
public class Connection : IConnection,IDisposable
{
private IDbConnection connection
www.eeworm.com/read/490333/1200304
cs transaction.cs
// Fig. 17.18: Transaction.cs
// Handles record transactions.
// C# namespaces
using System;
using System.IO;
using System.Windows.Forms;
// Deitel namespaces
using BankLibrary;
namespac