Search found 11 matches: yourpassword

Return to advanced search

phpBB to LLM

1. Create a SQL dump file from your phpBB forums: mysqldump --user=username --password=YourPassword database_phpbb > dumpfile.sql 2. We "clean" the dump file using this code: #include "FiveWin.ch"function Main()    local cSQL := hb_memoRead( ...
by Antonio Linares
Thu Dec 21, 2023 9:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 4696

Re: xHarbour with SSL/TLS - Master Enrico.

It works. You just forgot to set the password:

LOCAL cPassword := "yourpassword"


And you didn't link the correct libs:

Code: Select all  Expand view
tipssl.lib
libssl.lib
libcrypto.lib


And last, where are the dlls?

EMG
by Enrico Maria Giordano
Sun Dec 06, 2020 10:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xHarbour with SSL/TLS - Master Enrico.
Replies: 32
Views: 3611

Re: Unattended e-mails via Outlook 365

... // user authentication should use your // email address as the user name. oServer.User = "myid@mydomain"; oServer.Password = "yourpassword"; // Set 587 port oServer.Port = 587; // detect SSL/TLS connection automatically oServer.ConnectType = SmtpConnectType.ConnectSSLAuto; ...
by Rick Lipkin
Thu Jan 05, 2017 7:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unattended e-mails via Outlook 365
Replies: 5
Views: 2760

Re: Fivewin/xharbour with ActiveX Data Objects (ado) and MySQL

... the following string: Driver={MySQL ODBC 5.3 Unicode Driver};Server=YourServersIP;Port=3306;Database=YourDatabseName;User=YourUserName;Password=YourPassword;Option=3;) Kind regards, Pieter
by pieter
Mon Feb 02, 2015 10:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin/xharbour with ActiveX Data Objects (ado) and MySQL
Replies: 19
Views: 6632

Re: FiveWin & MySql

... := "Driver={MySQL ODBC 5.3 Unicode Driver};Server= YourServersIP ;Port=3306;Database= YourDatabseName ;User= YourUserName ;Password= YourPassword ;Option=3;" Should we install an ODBC driver for MySql , witch one , 32 or 64 bits ? Yes, You should install ODBC Driver for MySQL
by anserkk
Fri Jul 25, 2014 11:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWin & MySql
Replies: 7
Views: 1680

Re: New class TUpdate

Hello Stefan,
LOCAL cPW := "YourPassword"

Look at the pw() function in:
viewtopic.php?f=3&t=25390&p=138255#p138300

Best regards,
Otto
by Otto
Tue Jan 08, 2013 2:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New class TUpdate
Replies: 25
Views: 6999

Re: Choosing SQL database ...

... another . Both I know and want to accurate - you are talking about something that : cConnectionString := "DSN= odbc name ;UID=YOURUSERID;PWD=YOURPASSWORD;" ? With best regards ! Simplier than that... Install the ODBC SQLITE CLIENT.. and that's all, no need to configure DSN or anything. ...
by Adolfo
Mon Oct 26, 2009 8:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30348

Re: Choosing SQL database ...

... another . Both I know and want to accurate - you are talking about something that : cConnectionString := "DSN= odbc name ;UID=YOURUSERID;PWD=YOURPASSWORD;" ? With best regards !
by Rimantas
Mon Oct 26, 2009 7:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30348

Re: help Problem with Adordd

... the connection string to "Driver={MySQL ODBC 5.1 Driver};Server=YourServerIP;Port=3306;Database=YourDataBaseName;User=YourUserName;Password=YourPassword;Option=3;" The Error Mysql .prg Application =========== Path and name: C:\ADO2241\samples\mysql.exe (32 bits) Size: 1,517,056 bytes ...
by anserkk
Sat Jan 10, 2009 5:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: help Problem with Adordd
Replies: 3
Views: 965

... "Excel.Application" ) LOCAL oWorkbook := oExcel:Workbooks LOCAL oSheet := oExcel:ActiveSheet ... savefile := oWorkbook.SaveAs( fileXL, ,"YourPassWord" ) ... RETURN NIL
by Rochinha
Fri Oct 31, 2008 1:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to input a password into a XLS file wirh OLE
Replies: 7
Views: 1229

Five ODBC with Clipper

... the code taken from your example. ****************** Function LS_odbc() ****************** Local oODBC := TOdbc():New "DsnEntry", "YourName", "YourPassword") If !oOdbc:lSuccess oOdbc:ShowErrorList("ODBC session not successfully initialized, aborting...") oOdbc:End() return nil Endif *oDbf := ...
by xhbcoder
Wed Dec 13, 2006 5:02 pm
 
Forum: FiveWin for CA-Clipper
Topic: About FiveWin ODBC
Replies: 7
Views: 3349

Return to advanced search