Search found 22 matches: mydatabase

Return to advanced search

Re: Windows 10 : where are my archives ?

Silvio,
did you try to run cmd as administrator and then
dir mydatabase.dbf /S

Bye
by MarcoBoschi
Wed Apr 18, 2018 11:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Windows 10 : where are my archives ?
Replies: 7
Views: 888

Re: Windows 10 : where are my archives ?

I could open the console and in the root type "dir mydatabase.dbf /s'

Saludos
by horacio
Sun Apr 15, 2018 12:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Windows 10 : where are my archives ?
Replies: 7
Views: 888

Re: ShellExecute() set as wait run

Try this, cArquivoBAT := 'filebat.bat' cComando := 'mysqldump --host 192.168.1.200 -u root -p -C mydatabase > "d:\back\mysqldatebas0001" ' MsgRun( 'Aguarde...',, { || ExecutaComando( cArquivoBAT, cComando ) ) /******************************************************************************/ ...
by MGA
Tue Oct 31, 2017 9:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ShellExecute() set as wait run
Replies: 9
Views: 1437

Re: ShellExecute() set as wait run

wairun() do not execute paraments as " mysqldump --host 192.168.1.200 -u root -p -C mydatabase>d:\back\mysqldatebas0001" Yes, it does: WaitRun( "mysqldump --host 192.168.1.200 -u root -p   -C mydatabase>d:\back\mysqldatebas0001" ) I'm ...
by Enrico Maria Giordano
Wed Oct 25, 2017 7:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ShellExecute() set as wait run
Replies: 9
Views: 1437

Re: ShellExecute() set as wait run

wairun() do not execute paraments as " mysqldump --host 192.168.1.200 -u root -p -C mydatabase>d:\back\mysqldatebas0001"
msgrun still run msginfo() before shellexecute() closed.
Thanks all!
Regards!
Shuming Wang
by ShumingWang
Wed Oct 25, 2017 1:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ShellExecute() set as wait run
Replies: 9
Views: 1437

Re: pagers for xBrowse

... , When I open a large recodset on WLAN ( mysql on Dreamhost ) I wait 4/5 " to have the data and after I open xBrowse . example: SELECT * from mydatabase I know that the delay is in the select and not xBrowse . If I use : SELECT * from mydatabase LIMIT 100 and I open xbrowse , I have no delay ...
by nageswaragunupudi
Mon Feb 06, 2017 12:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: pagers for xBrowse
Replies: 14
Views: 3867

Re: pagers for xBrowse

... , When I open a large recodset on WLAN ( mysql on Dreamhost ) I wait 4/5 " to have the data and after I open xBrowse . example: SELECT * from mydatabase I know that the delay is in the select and not xBrowse . If I use : SELECT * from mydatabase LIMIT 100 and I open xbrowse , I have no delay ...
by Maurizio
Thu May 19, 2016 1:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: pagers for xBrowse
Replies: 14
Views: 3867

Re: Ejemplo ADORDD solo SQL

... and seems to be tha same that MySQL. Thank you and sorry, I,m very clumsy with SQL, until now, I hope. Standard Server=myServerAddress;Database=myDataBase;Uid=myUsername;Pwd=myPassword; MySQL Specifying TCP port Server=myServerAddress;Port=1234;Database=myDataBase;Uid=myUsername; Pwd=myPassword; ...
by D.Fernandez
Mon Nov 23, 2015 7:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo ADORDD solo SQL
Replies: 10
Views: 1675

Re: ADO RDD xHarbour

... this? Is that opening the table to which it is associated, also opens automatically command economy. It is usually created automatically with: USE MyDatabase New INDEX ON TAG TO FILE NAME = TABLE´S NAME .... Also: SET AUTOPEN Toggles automatic opening of a structural index file. Syntax SET AUTOPEN ...
by lucasdebeltran
Fri Apr 03, 2015 6:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446233

Re: Conexion a POSTGRESQL via ADO

Buenas

Ve esto https://www.connectionstrings.com/postg ... -psqlodbc/

ANSI
Driver={PostgreSQL ANSI};Server=IP address;Port=5432;Database=myDataBase;
Uid=myUsername;Pwd=myPassword;
by RenOmaS
Thu Jan 29, 2015 8:34 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Conexion a POSTGRESQL via ADO - SOLUCIONADO
Replies: 18
Views: 3625

Re: DBF to SQL script tool

... is wrong. Typical connection string to MSSql server looks like this: Provider=sqloledb;Data Source=myServerAddress;Initial Catalog=myDataBase; User Id=myUsername;Password=myPassword; You may refer to http://www.connectionstrings.com/sql-server/ for more information. In case you ...
by nageswaragunupudi
Sat Jun 28, 2014 12:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL script tool
Replies: 50
Views: 13632

MySQL Connector/ODBC 5.2 (Ayuda)

... ODBC 5.2 UNICODE Driver So please use following connection string: ("Driver={MySQL ODBC 5.2 ANSI Driver};Server=localhost;Port=3306;Database=mydatabase;User=root;Password=mypass;Option=3;") De todas estas maneras lo he usado y me dice que no hay conexión. Driver={MySQL ODBC 5.2 ANSI ...
by ruben Dario
Sun Mar 09, 2014 1:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MySQL Connector/ODBC 5.2 (Ayuda)
Replies: 12
Views: 1646

Re: CONEXIÓN A POSTGRES CON ADO

cDriSql := "Provider=PostgreSQL OLE DB Provider;"+; "Location=mydatabase;"+; "Data Source=www.xxxxxx.co;"+; "User ID=myuser;"+; "PORT=5432;"+; "Password=mypassword;" if oCon == nil oCon := TOleAuto():new("ADODB.Connection") ...
by russimicro
Sat Aug 24, 2013 4:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CONEXIÓN A POSTGRES CON ADO
Replies: 1
Views: 573

Re: ¿ ADO String Connection SQL Server ?

Enrico, Rick,

It seems to work well with:

Driver={SQL Server Native Client 10.0};Server=myServerAddress;Database=myDataBase;Trusted_Connection=yes;

This SQL Express 20008,

Thanks,

Albeiro.
by albeiroval
Thu Aug 15, 2013 5:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ¿ ADO String Connection SQL Server ?
Replies: 6
Views: 1357

¿ ADO String Connection SQL Server ?

... without success. I work in local mode the following Connection string (it connect): Provider = SQLNCLI10, Server = myServerAddress; Database = MyDatabase; Trusted_Connection = yes; But in remote mode does not work (testing from another computer) The connection to the SQL server as I have the ...
by albeiroval
Wed Aug 14, 2013 10:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ¿ ADO String Connection SQL Server ?
Replies: 6
Views: 1357
Next

Return to advanced search