Search found 52 matches: sentences

Return to advanced search

Re: Something about SQL

... SQLWIN is a translator, that takes the DBFs syntax and convert it into SQL sentences. Basically you connect to a DataBase engine and start issuing SQL sentences. The advantage over ADO (we also created ADORDD) is that ADO is ...
by Antonio Linares
Thu Apr 18, 2013 2:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Something about SQL
Replies: 36
Views: 5599

Re: Using ADT files - a few questions

... mode. with ads you can migrate your files now, without change of code, and with time, add more ads features like transaction, data dictionary, sql sentences, remote filters, etc... but ADS is a SAP / Sybase company today, and this is not free... have a version free to 2 workstations and server, ...
by norberto
Thu Apr 26, 2012 12:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using ADT files - a few questions
Replies: 27
Views: 9778

Re: HTML5 WebSockets server working demo! :-)

Enrico,

First you have to run wsserver.exe and keep it opened, then open the HTML page.

From the command line you can write sentences like: ? Time(), ? hb_version(), etc

it uses Harbour's macros. Possibilities are endless :-)
by Antonio Linares
Sun Dec 25, 2011 4:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HTML5 WebSockets server working demo! :-)
Replies: 17
Views: 7442

ADS Referential Integrity, ADSGetLastError

...   ADSCreateSQLStatement( cAlias, 3, hads )            ADSPREPARESQL( consulta )            ADSEXECUTESQL()  to execute SQL sentences, the result is correct but I get this error notification, some idea? I am using ADS 7.1, last official xHarbour compiled to work with ADS ...
by Marcelo Via Giglio
Fri Oct 22, 2010 3:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS Referential Integrity, ADSGetLastError
Replies: 0
Views: 298

Re: New controls for FWH

... .. a class to manage these database directly .. I migrated one of my programs to MySQL using fwh with ADO and it works fine. I use the same SQL sentences that I use in another part I migrated to PHP. What is the advantange of managing the database directly instead of ADO ? Speed? Thank you in ...
by Marco Turco
Mon Jun 14, 2010 7:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New controls for FWH
Replies: 81
Views: 26882

Re: New controls for FWH

... .. a class to manage these database directly .. I migrated one of my programs to MySQL using fwh with ADO and it works fine. I use the same SQL sentences that I use in another part I migrated to PHP. What is the advantange of managing the database directly instead of ADO ? Speed? Thank you in ...
by alvaro533
Sun Jun 13, 2010 8:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New controls for FWH
Replies: 81
Views: 26882

Re: How do you deal with your users?

All these ideas are very good. I write regularly, just short notes, maybe 2 or 3 sentences stating some change or bug fix. I do it to a news.txt file using html notation. The file is accessed by the webpage when the user clicks on what's new menu option. Any time ...
by reinaldocrespo
Wed Oct 28, 2009 11:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How do you deal with your users?
Replies: 19
Views: 5050

How do you deal with your users?

... my solution was too simple, too quick, and she needed to speak more. I honestly believe that to state a problem shouldn’t take more than three sentences. As a rule of thumb, if a user takes more than 1 minute to explain a problem, then they are confusing a problem with a solution. Today I tried ...
by reinaldocrespo
Wed Oct 28, 2009 1:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How do you deal with your users?
Replies: 19
Views: 5050

Re: Conversion of Buttons to 32 Bit

... screens, and in Mac you can use "Interface Builder" to design them too, but finally you have to copy the coordinates to @ ..., ... xbase sentences. In Linux we can use the Glade file format screens, as they are, but they don't behave exactly as Windows RC files.
by Antonio Linares
Wed Jun 17, 2009 9:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Conversion of Buttons to 32 Bit
Replies: 9
Views: 1410

Re: Avoid internal ADS Error message (dialog)

Hello, thanks for response, I don't have problems with SQL sentences (sintax ,etc), e.g. if you try to delete some record DELETE FROM table WHERE column=data if some row on the table are locking for other user you have an error from ADS not from xHabour, ...
by Marcelo Via Giglio
Fri Apr 17, 2009 7:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Avoid internal ADS Error message (dialog)
Replies: 2
Views: 437

Thanks to Felix we have used mysqlcheck to auto repair the tables, instead of using SQL sentences.

Hopefully this may help.
by Antonio Linares
Sun Dec 28, 2008 9:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: This Account Has Exceeded Its CPU Quota
Replies: 4
Views: 676

... governed by the database engine ?? > Its easy :-) The idea is to store the indexes tags and expresions in the server, so when we issue some SQL sentences that require indexes then we use: ... ORDER BY <index_expression_stored_in_server>, sql_recno i.e.: SELECT ALL FROM `test_dbf` ORDER ...
by Antonio Linares
Sat Sep 13, 2008 4:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SQLWIN - a free RDD for SQL
Replies: 73
Views: 37263

... many questions, it would just understand that their goals. At this stage we are just translating the Db...() functions into their equivalents SQL sentences. Okay, I understand this. Another issue is: the result set will be maintained in its original format and converted via C (as DBFCDX / NTX, ...
by vailtom
Sat Sep 13, 2008 2:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SQLWIN - a free RDD for SQL
Replies: 73
Views: 37263

Vailton, At this stage we are just translating the Db...() functions into their equivalents SQL sentences. Next step is to make a real connection and it will be done using language C (C wrappers), to turn it real fast. Some connections may require ODBC, others will use ...
by Antonio Linares
Sat Sep 13, 2008 8:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SQLWIN - a free RDD for SQL
Replies: 73
Views: 37263

Rafa,

This RDD does not use ADO at all. It just still has old code from ADORDD that has to be deleted.

The SQLWIN RDD just issues SQL sentences: It translates Db...() functions to SQL code, so we can use it with any database engine that supports SQL.
by Antonio Linares
Fri Sep 12, 2008 5:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SQLWIN - a free RDD for SQL
Replies: 73
Views: 37263
PreviousNext

Return to advanced search