Search found 130 matches: transactions

Return to advanced search

Conferencia internacional de Harbour+FWH - Sesiones

... constraints * SQL scripting language and some query tools * Triggers * Stored procedures and User defined functions * Referential integrity (RI) * Transactions * Fast Text Search indexes (FTS) * Database Event Notifications * Enhanced DB security and Encryption * Replication * Online Backup Daniel ...
by Antonio Linares
Mon May 15, 2017 8:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Conferencia internacional de Harbour+FWH - Sesiones
Replies: 0
Views: 1104

Re: 1st FWH + [x]Harbour 2017 international conference

... constraints * SQL scripting language and some query tools * Triggers * Stored procedures and User defined functions * Referential integrity (RI) * Transactions * Fast Text Search indexes (FTS) * Database Event Notifications * Enhanced DB security and Encryption * Replication * Online Backup Daniel ...
by nageswaragunupudi
Sun May 14, 2017 1:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: 1st FWH + [x]Harbour 2017 international conference
Replies: 68
Views: 266261

Re: FWHMARIADB Samples

... \fwh\samples\yunus.prg An approach that can be adopted for quotations, purchase orders, etc. mariainv.prg Points of interest: 1) Implementation of Transactions. 2) Database integrity at server level through a) Foreign key relationships b) Unique constraints c) column validations d) calculation ...
by nageswaragunupudi
Wed May 03, 2017 2:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWHMARIADB Samples
Replies: 48
Views: 20665

Re: 1st FWH + [x]Harbour 2017 international conference

... Tools ADT vs DBF Full Text Search Understanding Data Dictionaries Encryption and security Defining data constraints and referencial integrity Transactions SQL Triggers Stored Procedures Notifications Backup and Restore Replication I understand we probably won't have enough time to speak in ...
by reinaldocrespo
Sun Mar 26, 2017 4:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 1st FWH + [x]Harbour 2017 international conference
Replies: 68
Views: 266261

Re: ADO RDD xHarbour

... instead of HB_FAILURE. ADOOPENCONNECT if engine its not supported or wrongly set alerts the user. ADOBEGINTRANS if workarea not specified opens a transactions for each opened connection ADOCOMMITTRANS and ADOROLLBACKTRANS the same as ADOBEGINTRANS New function ADONESTEDTRANS( nWA ) returns nr ...
by AHF
Tue Mar 07, 2017 9:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 447059

Re: Create a file with a stored procedure in Advantage Database

... if in a transaction or if it is signaled when the transaction is committed. That is parameter #2 above. If you are not using or don't know what transactions are, then just send false. The data option allows you to send a data string to the receiving client/workstation running an ADS enabled ...
by reinaldocrespo
Fri Jan 20, 2017 9:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a file with a stored procedure in Advantage Database
Replies: 21
Views: 6437

Re: multiple defintions, forst defined here

... , MF_ENABLED + MF_STRING, "RE&VERSE SELL FUTURES DIST", {|| REVSELFUT1()}) ******************************** TRANSACTIONS ****************************** HPOPUPMEN1 := CREATEPOPUPMENU() APPENDMENU(AMENU ,"XACTION" , MF_ENABLED + MF_POPUP , "&XACTION" ...
by lmheimendinger
Mon Dec 05, 2016 3:52 pm
 
Forum: FiveWin for CA-Clipper
Topic: multiple defintions, forst defined here
Replies: 15
Views: 20511

Re: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

UTILITIES: UpdateSummary() This method makes it easy to update aggregates from transactions table into master/summary table. For this purpose this method uses function MYSQL_UpdateSummarySQL() with the same parameters and executes the SQL. Example-1: ? MYSQL_UpdateSummarySQL( ...
by nageswaragunupudi
Tue Oct 04, 2016 8:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )
Replies: 76
Views: 28562

Re: Nuevo ADORDD

... connection otherwise it starts in the connection of the current work area. 2) ADOROLLBACKTRANS( nWA ) : without any work area it rolls back all transactions in all open connections otherwise it rolls back transaction in same connection as that work area. 3) ado_create was adding an extra position ...
by AHF
Mon Dec 07, 2015 12:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo ADORDD
Replies: 55
Views: 16618

Re: ADO RDD xHarbour

... connection otherwise it starts in the connection of the current work area. 2) ADOROLLBACKTRANS( nWA ) : without any work area it rolls back all transactions in all open connections otherwise it rolls back transaction in same connection as that work area. 3) ado_create was adding an extra position ...
by AHF
Mon Dec 07, 2015 12:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 447059

ADORDD FAQs

... 12) Does it has transaction control ? It has everything your SQL engine might offer. If your chosen SQl engine is Transactional you will have transactions control in adordd. 13) What SQL engines can I use ? ADS ACCESS ANYWHERE DBASE POSTGRE FIREBIRD FOXPRO INFORMIX MSSQL MYSQL ORACLE POSTGRE ...
by AHF
Sun Nov 15, 2015 6:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADORDD FAQs
Replies: 87
Views: 19691

Re: ADO RDD xHarbour

... Lan and / or Wan Nr of users Concurrent use (new additions by others) and locking Does app use ? Relations Scopes Filters Indexes with UDFs Locks Transactions do you use ado or sql directly through for example adofuncs.prg or any class and does adordd catch well eventually new additions by those ...
by AHF
Mon Nov 02, 2015 7:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 447059

Re: DBF to SQL converter program

... I don't know. If you have an app on a hundred sites, this could get really complicated. I get that there are a lot of benefits too; speed, transactions, rollbacks, larger number of users, etc. I haven't decided on a SQL database yet, and I will keep ADS in mind. Regards, James
by James Bott
Tue Aug 25, 2015 9:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL converter program
Replies: 59
Views: 18131

Re: DBF to SQL converter program

... the KISS principle. In SQL you achieve this same effect by having the whole piece of code inside a transaction; i.e., this is what I described as transactions. Still, I rather have that coupled with a unique indexes. As for being able to have SQL and non SQL installations, this is were ADS is ...
by reinaldocrespo
Tue Aug 25, 2015 7:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL converter program
Replies: 59
Views: 18131

Re: DBF to SQL converter program

... are implemented by most SQL engines and are auto generated when inserting a new record. A GUID is guaranteed to be GLOBALLY unique. (2) implement transactions. Most SQL engines allow you to start-end-roll back a transaction. Records involved during a transaction remain locked from other users ...
by reinaldocrespo
Tue Aug 25, 2015 5:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL converter program
Replies: 59
Views: 18131
PreviousNext

Return to advanced search