Search found 12 matches: aborting

Return to advanced search

Re: FiveODBC Error Message

... local lAsync oOdbc := TOdbc():New(cDsn, cName, cPass) If !oOdbc:lSuccess oOdbc:ShowErrorList("ODBC session not successfully initialized, aborting...") oOdbc:End() return nil Endif CursorWait() aFiles := oOdbc:GetTables("*", .F. ) CursorArrow() if len(aFiles) == 0 MsgAlert("There ...
by Compuin
Mon Dec 26, 2016 4:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveODBC Error Message
Replies: 27
Views: 4195

problem odbc

... is the source oOdbc := TOdbc():New( cDSN, cName, cPass ) If !oOdbc:lSuccess oOdbc:ShowErrorList("ODBC session not successfully initialized, aborting...") oOdbc:End() return nil Endif oDbf := oOdbc:Query( "SELECT T0.field1 'CODICE', T0.field2 'DESCRI' FROM CLIENTI T0") if oOdbc:IsError() ...
by damianodec
Thu Feb 14, 2013 9:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem odbc
Replies: 1
Views: 558

Re: Buscar texto en un fichero

... to abort an flocate() search via an ESCape key. _xkeyval() tells flocate() what the ESCape key is. The default value for _xkey() is always .T. (aborting allowed). the default abort key is ESCape (27) until you redefine it._xkey() parameters are logical .T. to turn user abort on, .F. to turn ...
by JmGarcia
Wed Nov 24, 2010 8:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Buscar texto en un fichero
Replies: 22
Views: 6244

TODBC

... If !oOdbc:lSuccess oOdbc:ShowErrorList("ODBC session not successfully initialized, aborting...") oOdbc:End() return nil Endif oDbf := oOdbc:Query( "SELECT * FROM poimport" ) if oOdbc:IsError() oOdbc:ShowErrorList() oOdbc:aErrors ...
by ryugarai27
Sun Mar 21, 2010 4:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TODBC
Replies: 3
Views: 949

TestSmtp

... // oRsuser:Find("USERID = '"+xLOGIN+"'" ) IF .not. oRsuser:eof oRsUser:CLose() SAYING := "SORRY ... "+xLOGIN+" already Exists in the User Table .. Aborting" MsgInfo( saying ) oDlg1:End() RETURN(.F.) ENDIF IF _UserView( "A", oRsUser, "login" ) xREAD := "Y" xWRITE := oRsUser:Fields("write"):Value ...
by Rick Lipkin
Tue Jul 08, 2008 7:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TestSmtp
Replies: 6
Views: 1609

... cName, cPass) If !oOdbc:lSuccess .OR. lError(,,, .t.) oOdbc:ShowErrorList(LoadValue(1051, CH)) // ODBC session not successfully initialized, aborting... oOdbc:End() Return(.f.) Endif ora puoi creare le select in SQL oLavor := oOdbc:Query("SELECT lavorazioni.id, analav.codice, analav.descr ...
by marzio
Wed May 28, 2008 9:51 am
 
Forum: All products support
Topic: ODBC con FWH
Replies: 1
Views: 909

SMTP session aborting

Yes, I'm able to send HTML, but I modified another little piece of code here in OnRead() method If ! Empty( ::cHTML ) // RRG 29.05.2002 Send as HTML sytle email (Cambios para enviar correo como html) oSocket:SendData( CRLF + "--NextPart" + CRLF + ; &...
by chiaiese
Fri May 25, 2007 8:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SMTP session aborting
Replies: 9
Views: 2898

SMTP session aborting

hello! I have a working prg which sends email via TSMTP:SendMail() connecting to a mail server on the internet. Now, if I upload my program to the same PC where the mail server is installed, mails are no more sent out. I use LKM version because I need user authentication Turned on the debug mode her...
by chiaiese
Fri Feb 23, 2007 2:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SMTP session aborting
Replies: 9
Views: 2898

... *oRdd := TRddOdbc():New("Northwind", "SA", "*****") If !oRdd:oOdbc:lSuccess oRdd:oOdbc:ShowErrorList("ODBC session not successfully initialized, aborting...") oRdd:End() return nil Endif // oRdd:oOdbc:lAbort := .f. aFiles := oRdd:oOdbc:GetTables("*", .F. ) && returns all tables if len(aFiles) ...
by xhbcoder
Thu Dec 21, 2006 3:59 pm
 
Forum: FiveWin for CA-Clipper
Topic: updating table from ODBC
Replies: 14
Views: 6248

Five ODBC with Clipper

... oODBC := TOdbc():New "DsnEntry", "YourName", "YourPassword") If !oOdbc:lSuccess oOdbc:ShowErrorList("ODBC session not successfully initialized, aborting...") oOdbc:End() return nil Endif *oDbf := oOdbc:Query( "SELECT * FROM JOURNAL" ) Odbf := TdbOdbcDirect():New("SELECT * FROM JOURNAL WHERE ...
by xhbcoder
Wed Dec 13, 2006 5:02 pm
 
Forum: FiveWin for CA-Clipper
Topic: About FiveWin ODBC
Replies: 7
Views: 3318

Pasar datos de una tabla DBF a una de access

... browse() oOdbc := TOdbc():New( "fenix", "", "" ) If !oOdbc:lSuccess oOdbc:ShowErrorList("ODBC session not successfully initialized, aborting...") oOdbc:End() return nil Endif oDbf := TDbOdbcDirect():new( "SELECT * FROM ventas" , oOdbc) oDbf:Open() oDbf:Complete() Browse() cnombre:= ...
by EASYSOFT
Wed Aug 16, 2006 8:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pasar datos de una tabla DBF a una de access
Replies: 17
Views: 4842

... ADS's callback function adsRegCallBack( {|nPct| ; oMeter:set( oMeter:nTotal * Int( nPct / 10000 ) ), ; SysRefresh(), .F. } ) // return .F. is aborting not allowed // your indexing routine goes here INDEX ON FIELD->TRAN_NO TAG iTraNo FOR .NOT. DELETED() ; EVAL (oMeter:SET(recno()),oMeter:Refresh(), ...
by George
Wed Feb 08, 2006 3:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ADS: Por favor saquenme de esta duda.
Replies: 5
Views: 1472

Return to advanced search

cron