代码搜索:Transaction

找到约 6,361 项符合「Transaction」的源代码

代码结果 6,361
www.eeworm.com/read/426305/1992363

cpp transaction.cpp

//--------------------------------------------------------------------------- #include #pragma hdrstop USERES("Transaction.res"); USEFORM("Main.cpp", Form1); //---------------------------
www.eeworm.com/read/426305/1992499

bpr transaction.bpr

www.eeworm.com/read/426305/1992500

cpp transaction.cpp

//--------------------------------------------------------------------------- #include #pragma hdrstop USERES("Transaction.res"); USEFORM("Main.cpp", Form1); //---------------------------
www.eeworm.com/read/426305/1992628

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/426305/1992629

bdsproj transaction.bdsproj

www.eeworm.com/read/420779/2062517

java transaction.java

package jdbc; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; public class Transaction { public static void main(String[]
www.eeworm.com/read/419352/2079247

java transaction.java

/** * TAC AgentWare * http://www.sics.se/tac tac-dev@sics.se * * Copyright (c) 2001-2005 SICS AB. All rights reserved. * * SICS grants you the right to use, modify, and redistribute this
www.eeworm.com/read/414020/2155321

java transaction.java

package org.gridsphere.services.core.persistence; /** * Created by IntelliJ IDEA. * User: czhang * Date: Aug 26, 2004 * Time: 5:02:56 PM * To change this template use Options | File Templates.
www.eeworm.com/read/411046/2197786

java transaction.java

/* * ==================================================================== * The Vovida Software License, Version 1.0 * * Copyright (c) 2000 Vovida Networks, Inc. All rights reserved. * * Redi
www.eeworm.com/read/410882/2199993

java transaction.java

package com.lili.exam.util; public interface Transaction { void beginTransaction(); void commit(); void rollback(); }