Search found 22 matches: xuserid

Return to advanced search

FW_OpenAdoConnection reconnect

... Here is my sample code establishing connection. oCn := FW_OpenAdoConnection( "MSSQL,"+xSOURCE+","+xDATABASE2+","+xUSERID+","+XPASSWORD, .T. ) if oCn == nil ? "Failed to connect to Server" return nil endif Thank you!
by cdmmaui
Wed Dec 13, 2023 10:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_OpenAdoConnection reconnect
Replies: 6
Views: 538

Re: xBrowse jpg in SQL-database

... := 3 // lock opportunistic // Init xCONNECT := 'Provider='+xPROVIDER+';Data Source='+xSOURCE+';Initial Catalog='+xDATABASE+';User Id='+xUSERID+';Password='+xPASSWORD aImages := Directory( cCft + "*.*" ) FOR nX1=1 TO LEN(aImages) cTemp := aImages[nX1,1] cItem := "" ...
by cdmmaui
Fri Nov 08, 2019 1:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse jpg in SQL-database
Replies: 19
Views: 2998

Re: Import Chinese Characters from XLS

... cTitle := "CDM Web Freight Data Integration" xPROVIDER := "SQLOLEDB" xSOURCE := "x" xDATABASE := "x" xUSERID := "x" xPASSWORD := "x" // Init... SET DATE FORMAT TO 'mm/dd/yyyy' SET EPOCH TO 1980 SET EXCLUSIVE OFF SET DELETED ON SET ...
by cdmmaui
Thu Feb 21, 2019 4:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Import Chinese Characters from XLS
Replies: 4
Views: 949

Re: Multiple Dimension Array in Combobox

... BY [DateCreated] DESC" TRY oSqlLoad:Open( cSqlLoad, 'Provider='+xPROVIDER+';Data Source='+xSOURCE+';Initial Catalog='+xDATABASE+';User Id='+xUSERID+';Password='+xPASSWORD ) CATCH oError MsgInfo("Failed to Connect to the Database" + cEol + cSqlLoad + cEol + oError:Description, Ptitle ...
by joseluisysturiz
Sun May 27, 2018 2:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple Dimension Array in Combobox
Replies: 24
Views: 4025

Re: Multiple Dimension Array in Combobox

... BY [DateCreated] DESC" TRY oSqlLoad:Open( cSqlLoad, 'Provider='+xPROVIDER+';Data Source='+xSOURCE+';Initial Catalog='+xDATABASE+';User Id='+xUSERID+';Password='+xPASSWORD ) CATCH oError MsgInfo("Failed to Connect to the Database" + cEol + cSqlLoad + cEol + oError:Description, Ptitle ...
by cdmmaui
Sat May 26, 2018 4:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple Dimension Array in Combobox
Replies: 24
Views: 4025

MS SQL Dumb Question

... := 3 // lock opportunistic // Init... xSQL := 'Provider='+xPROVIDER+';Data Source='+xSOURCE+';Initial Catalog='+xCATALOG+';User Id='+xUSERID+';Password='+xPASSWORD // Message.. oSay:SetText( "Checking for CBP ACE AES Response Messages . . ." ) Sysrefresh() // USCS... cMask ...
by cdmmaui
Tue May 10, 2016 10:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MS SQL Dumb Question
Replies: 0
Views: 422

XML Read Problems

... , ; xPROVIDER := "SQLOLEDB" , ; xSOURCE := "9.9.9.9" , ; xDATABASE := "DB-NAME" , ; xUSERID := "USERID" , ; xPASSWORD := "PASSWORD" , ; cOperations := "<operations@cdmsoft.com>" , ; cPath := 'c:\data\' ...
by cdmmaui
Tue Apr 26, 2016 1:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XML Read Problems
Replies: 1
Views: 1055

Problem connecting to MSSQL 2008R2 via Windows Auth.

... using the following string. xPROVIDER := "SQLOLEDB" xDATABASE := "MobileFrame" , ; xSOURCE := "192.168.1.11" xUSERID := "DOMAIN\UserName" xPASSWORD := "Password" xSQL := 'Provider='+xPROVIDER+';Data Source='+xSOURCE+';Initial Catalog='+xDATABASE+';User ...
by cdmmaui
Mon Oct 28, 2013 4:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem connecting to MSSQL 2008R2 via Windows Auth.
Replies: 2
Views: 696

Moving DBFCDX to MS SQL

... * FROM SalesOrderHeader" TRY oSql:Open( cSql, 'Provider='+xPROVIDER+';Data Source='+xSOURCE+';Initial Catalog='+xCATALOG+';User Id='+xUSERID+';Password='+xPASSWORD ) CATCH oError MsgWait("Failed to Connect to the Database") RETURN (.F.) END MsgInfo( oSql:RecordCount ) 2. ...
by cdmmaui
Mon Mar 25, 2013 3:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Moving DBFCDX to MS SQL
Replies: 2
Views: 641

Refresh SQL Select in Listbox

... cSql := "SELECT * FROM mr" TRY oSql:Open( cSql, 'Provider='+xPROVIDER+';Data Source='+xSOURCE+';Initial Catalog='+xDATABASE+';User Id='+xUSERID+';Password='+xPASSWORD ) CATCH oError MsgWait("Failed to Connect to the Database") RETURN .F. END MsgWait( LTRIM(STR(oSql:RecordCount,9)) ...
by cdmmaui
Wed Aug 22, 2012 2:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Refresh SQL Select in Listbox
Replies: 5
Views: 1315

Re: busqueda lenta

... de busqueda: // ----------------------------------------------------------------------- FUNCTION Buscaparam(xtipo, xvalor, xorden, xvta, xcododes, XUSERID) local olbx, odlg local obt1, obt2, obt3, xrta local xok LOCAL oString LOCAL XBUSCA, OBUSCA LOCAL OFNTARIAL local xorden1, oorden1, xloncc, ...
by diegopolverelli
Wed Jan 28, 2009 8:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: busqueda lenta
Replies: 6
Views: 1179

... := 3 // lockoportunistic TRY oRsProj:Open( cSQL,'Provider='+xPROVIDER+';Data Source='+xSOURCE+';Initial Catalog='+xCATALOG+';User Id='+xUSERID+';Password='+xPASSWORD ) CATCH oErr MsgInfo( "Error in Opening PROJECT table" ) oDlg:End() RETURN(.F.) END TRY SysReFresh() oDLG:END()
by Rick Lipkin
Wed Aug 06, 2008 6:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO Sql Query limitations ??
Replies: 1
Views: 740

ADO Sql Query limitations ??

... := 3 // lockoportunistic TRY oRsProj:Open( cSQL,'Provider='+xPROVIDER+';Data Source='+xSOURCE+';Initial Catalog='+xCATALOG+';User Id='+xUSERID+';Password='+xPASSWORD ) CATCH oErr MsgInfo( "Error in Opening PROJECT table" ) oDlg:End() RETURN(.F.) END TRY
by Rick Lipkin
Tue Aug 05, 2008 8:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO Sql Query limitations ??
Replies: 1
Views: 740

TestSmtp

... * FROM USERINFO order by USERID" TRY oRsuser:Open( cSQL,'Provider='+xPROVIDER+';Data Source='+xSOURCE+';Initial Catalog='+xCATALOG+';User Id='+xUSERID+';Password='+xPASSWORD ) CATCH oErr MsgInfo( "Error in Opening USERINFO table" ) oDlg1:End() RETURN(.F.) END TRY xREAD := 'Y' xWRITE := 'N' ...
by Rick Lipkin
Tue Jul 08, 2008 7:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TestSmtp
Replies: 6
Views: 1610

... .. I think the tns name is 'efis.world' .. The schema is 'suntrack' .. so my guess will be to use : xPROVIDER := "MSDAORA" xSOURCE := "EFIS.world" xUSERID := "me" xPASSWORD := "mypassword" oRs := TOleAuto():New( "ADODB.Recordset" ) oRs:CursorType := 1 // opendkeyset oRs:CursorLocation := 3 // local ...
by Rick Lipkin
Thu Dec 20, 2007 12:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO Connection to Oracle 10g
Replies: 14
Views: 4068
Next

Return to advanced search