英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

transaction    音标拼音: [trænz'ækʃən]
n. 交易,办理,执行,报告书,学报,和解

交易,办理,执行,报告书,学报,和解

transaction
异动带


transaction
交易; 异动

transaction
异动 交易

transaction
n 1: the act of transacting within or between groups (as
carrying on commercial activities); "no transactions are
possible without him"; "he has always been honest is his
dealings with me" [synonym: {transaction}, {dealing},
{dealings}]

Transaction \Trans*ac"tion\, n. [L. transactio, fr. transigere,
transactum, to drive through, carry through, accomplish,
transact; trans across, over agere to drive; cf. F.
transaction. See {Act}, {Agent}.]
1. The doing or performing of any business; management of any
affair; performance.
[1913 Webster]

2. That which is done; an affair; as, the transactions on the
exchange.
[1913 Webster]

3. (Civil Law) An adjustment of a dispute between parties by
mutual agreement.
[1913 Webster]

{Transaction of a society}, the published record of what it
has done or accomplished.
[1913 Webster]

Syn: Proceeding; action; process.

Usage: {Transaction}, {Proceeding}. A transaction is
something already done and completed; a proceeding is
either something which is now going on, or, if ended,
is still contemplated with reference to its progress
or successive stages.
[1913 Webster]

Note: " We the word proceeding in application to an affray in
the street, and the word transaction to some commercial
negotiation that has been carried on between certain
persons. The proceeding marks the manner of proceeding,
as when we speak of the proceedings in a court of law.
The transaction marks the business transacted; as, the
transactions on the Exchange." --Crabb.
[1913 Webster]

110 Moby Thesaurus words for "transaction":
accomplished fact, accomplishment, accord, achievement, act, acta,
action, administration, adventure, affair, agreement, annals,
arrangement, bargain, binding agreement, blow, bond, business,
business deal, carrying out, cartel, collective agreement,
commercial transaction, commission, compact, completion, concern,
concernment, conduct, consortium, contract, convention, coup,
covenant, covenant of salt, deal, dealing, dealings, deed, dicker,
discharge, dispatch, doing, doings, effectuation, effort,
employment contract, enactment, endeavor, enforcement, enterprise,
execution, exploit, fait accompli, feat, formal agreement,
fulfillment, gest, go, goings-on, hand, handiwork, handling,
implementation, interest, ironclad agreement, job, legal agreement,
legal contract, management, maneuver, matter, measure, minutes,
move, mutual agreement, negotiation, observance, operation,
overt act, package deal, pact, paction, passage, performance,
perpetration, proceeding, proceedings, production, promise,
prosecution, protocol, records, res gestae, step, stipulation,
stroke, stunt, thing, thing done, tour de force, transactions,
turn, understanding, undertaking, union contract, valid contract,
wage contract, work, works

A unit of interaction with a {DBMS} or similar system. It
must be treated in a coherent and reliable way independent of
other transactions. See {atomic}.

TRANSACTION, contracts, civil law. An agreement between two or more persons,
who for the purpose of preventing or putting an end to a law suit, adjust
their differences by mutual consent, in the manner which they agree on; in
Louisiana this contract must be reduced to writing. Civil Code of Louis,
3038.
2. Transactions regulate only the differences which appear to be
clearly comprehended in them by the intentions of the parties, whether they
be explained in a general or particular manner, unless it be the necessary
consequence of what is expressed; and they do not extend to differences
which the parties, never intended to include in them. Id. 3040.
3. To transact, a man must have the capacity to dispose of the things
included in the transaction. Id. 3039; 1 Domat, Lois Civiles, liv. 1, t. 13,
s. 1; Dig. lib. 2, t. 15, l. 1; Code lib. 2, t. 4, 1. 41. In the common law
this is called a compromise. (q.v.)



安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • What is the use of @Transactional with JPA and Hibernate?
    @Transactional annotation is used when you want the certain method class(=all methods inside) to be executed in a transaction Let's assume user A wants to transfer 100$ to user B What happens is: We decrease A's account by 100$ We add 100$ to B's account; Let's assume the exception is thrown after succeeding 1) and before executing 2)
  • How do I use transaction with oracle SQL? - Stack Overflow
    SET TRANSACTION ISOLATION LEVEL READ COMMITTED - but the transaction will be physically created when first row is modified, not when this statement is executed or SET TRANSACTION ISOLATION LEVEL SERIALIZABLE - in this case read consistency will be as of this command is executed READ ONLY transaction has the same read consistency effect
  • TSQL Try Catch within Transaction or vice versa?
    Never wait for an end user to commit the transaction, unless it's a single-user mode database In short, it's about blocking Your transaction will take some exclusive locks on resources being updated, and will hold on to those lock untill the transaction is ended (committed or rolled back) Nobody will be able to touch those rows
  • t sql - When to use Transactions in SQL Server - Stack Overflow
    Transaction must be Atomic (it is one unit of work and does not dependent on previous and following transactions), Consistent (data is either committed or roll back, no “in-between” case where something has been updated and something hasn’t), Isolated (no transaction sees the intermediate results of the current transaction), Durable (the values persist if the data had been committed even
  • Correct use of transactions in SQL Server - Stack Overflow
    If one wants a "visually nested syntax" so to say, i e such that begin transaction is nested under begin try, then a condition should be added before rollback transaction, which is: if @@trancount > 0 –
  • sql - Transaction count after EXECUTE indicates a mismatching number of . . .
    This was the problem for me, but was less obvious because we were wrapping several sproc calls in one big transaction via our data access layer-- so just looking at the sproc you couldn't tell there was a transaction at all If you have this issue, make sure there isn't something outside of the sproc itself that is creating a transaction
  • c# - How to use TransactionScope properly? - Stack Overflow
    The code within the methods you call need to be transaction aware and enlist in the active transaction This means creating or using classes which are resource managers (see Implement Your Own Resource Manager You do this by implementing IEnlistmentNotification and enlisting in the transaction When the transaction is completed, the
  • How to start and end transaction in mysqli? - Stack Overflow
    Using begin_transaction() You can start a one-time-only transaction using begin_transaction() This does not set autocommit=false so when you call commit() you end the transaction without starting a new one
  • . net - Transactions with ASP. net WEB API - Stack Overflow
    Distributed transaction with WEB API (across Application Domains) In order to have my ASP NET WEB API transnational or part of a transaction (via MSDTC to propagate over service boundaries), I implemented an Web API's Action Filter that retrieves the transaction token sent by client request and use it to enroll a service transaction in the same client scope transaction
  • writing a transaction in t-sql and error handling - Stack Overflow
    Do u think there is a better way to write a transaction in t-sql? Is there a better approach that improves maintainability and performance of the application that uses this transaction?





中文字典-英文字典  2005-2009