Search found 63 matches: tablename

Return to advanced search

Re: who use PostgreSQL with Fivewin ?

I used (4-5 years ago)

FW_SetUnicode( .t. )
oPQ:= TPQServer():New( cHost, BaseName, TableName, password, , "public")
by Natter
Wed Sep 27, 2023 7:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: who use PostgreSQL with Fivewin ?
Replies: 13
Views: 1036

Re: XBROWSER aList TITLE "Double-Click to Open" SETUP()

... := {|k| If( k == 13, (msginfo("action") ), nil )  } how do i get "select" line with "Tablename" ( o:Value ) :?:
by Jimmy
Fri Jul 21, 2023 11:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSER aList TITLE "Double-Click to Open" SETUP()
Replies: 6
Views: 473

Re: New FTDN August/Agosto 2020 (FWH 20.08)

... pasa una contraseña vacía por referencia, el tipo de tabla, por ejemplo, BASE TABLE/VISTA/TEMPORARY es devuelta en el parámetro. - Methods RowSet(tablename), Insert, etc ..., no distinguen entre mayúsculas y minúsculas y ahora también admiten tablas temporales. - Method CreateTableSQL( cTable ...
by Antonio Linares
Tue Sep 22, 2020 4:33 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN August/Agosto 2020 (FWH 20.08)
Replies: 3
Views: 2302

New FTDN August/Agosto 2020 (FWH 20.08)

... views. - If empty password is passed by reference, the table type, i.e., BASE TABLE/VIEW/TEMPORARY is returned in the parameter. - Methods RowSet(tablename), Insert, etc are case insensitive and now support temporary tables also. - Method CreateTableSQL( cTable ) --> SQL to create the table. ...
by Antonio Linares
Sun Sep 20, 2020 11:38 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN August/Agosto 2020 (FWH 20.08)
Replies: 3
Views: 2302

Re: webservice implementation using php

... we want to open a remote database table and retrieve a SQL query: http://www.fivetechsoft.com/webservice.php?database=test&tablename=users&username=fivetech&password=1234&sql=select%20* We get this: {"status":"ready","about":"FiveTech ...
by cnavarro
Fri Mar 01, 2019 1:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: webservice implementation using php
Replies: 21
Views: 4928

Re: webservice implementation using php

... we want to open a remote database table and retrieve a SQL query: http://www.fivetechsoft.com/webservice.php?database=test&tablename=users&username=fivetech&password=1234&sql=select%20* We get this: {"status":"ready","about":"FiveTech ...
by Antonio Linares
Fri Mar 01, 2019 8:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: webservice implementation using php
Replies: 21
Views: 4928

Re: webservice implementation using php

... $_GET;    echo json_encode( $response );?> We can try it this way: http://www.fivetechsoft.com/webservice.php?tablename=users And we get this: {"status":"ready","about":"FiveTech Software S.L. webservice","method":"GET","params":{"tablename":"users"}}
by Antonio Linares
Fri Mar 01, 2019 8:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: webservice implementation using php
Replies: 21
Views: 4928

Re: How can I use image on image with all transparent?

Saving an image to a blob field of mysql table using fwmaridb library: Inserting a new record: oCn:Insert( <tablename> , <blobfieldname>, { MEMOREAD( <imagefile> ) } ) Update (change) blob field in a record already existing in the table oCn:Insert( <tablename>, ...
by nageswaragunupudi
Fri Sep 28, 2018 8:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can I use image on image with all transparent?
Replies: 3
Views: 744

Re: To all MySQL experts

... folder and look for folder "data". In this folder, we see each database as a subfolder. Within each subfolder, we see every table as <tablename>.ibd. Open this *.ibd in a hex editor and view all the data in the table in plain asci. https://imagizer.imageshack.com/v2/xq90/924/wfcAXq.png ...
by nageswaragunupudi
Tue Sep 04, 2018 3:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To all MySQL experts
Replies: 13
Views: 2193

Re: Nuevo ADORDD

... INDEX LIST TO que coincide con el nombre de la tabla. Conjuntos de registros de apertura más rápidos: SET RECORDSET OPEN WHERE CLAUSE A {{"TABLENAME", "SQL WHERE EXPRESSION"}} ADOWHERECLAUSE ADORDD función que nos permite cambiar el conjunto de registros cláusula WHERE al ...
by AHF
Tue Mar 07, 2017 9:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo ADORDD
Replies: 55
Views: 16560

Re: ADO RDD xHarbour

... present in SET ADODBF MULTIBAG INDEX LIST TO that match the table name. Faster opening recordsets: SET RECORDSET OPEN WHERE CLAUSE TO { { "TABLENAME", "SQL WHERE EXPRESSION" } } ADOWHERECLAUSE ADORDD function allowing us to change the recordset WHERE clause on the fly keeping ...
by AHF
Tue Mar 07, 2017 9:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446243

Re: Me Again : MySQL FW help.. Trying to find the right Syntax

Hi "select * from tablename where userid = '"+cUserId+"'" if tablename.rowcount > 0 fnCheckPassword() else MsgInfo('User Not Found') endif Hope this is what you meant. Colin Can you explain this a little more.. ...
by Tekfreakz
Thu Jan 19, 2017 1:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Me Again : MySQL FW help.. Trying to find the right Syntax
Replies: 5
Views: 1158

Re: Me Again : MySQL FW help.. Trying to find the right Syntax

Hi

"select * from tablename where userid = '"+cUserId+"'"
if tablename.rowcount > 0
fnCheckPassword()
else
MsgInfo('User Not Found')
endif

Hope this is what you meant.

Colin
by Colin Haig
Wed Jan 18, 2017 8:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Me Again : MySQL FW help.. Trying to find the right Syntax
Replies: 5
Views: 1158

New FTDN November/Noviembre 2016 (FWH 16.11)

... cSql ) was returning empty array when cSql does not return any rows. Now it returns NIL. - oCn:RowSet( cSql, ... ): Only SELECT and SHOW sqls or tablename are valid paramters to be used. Other cases runtime-error was occuring. Now NIL is returned in such cases and error is set as Invalid SQL. ...
by Antonio Linares
Wed Nov 30, 2016 12:07 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN November/Noviembre 2016 (FWH 16.11)
Replies: 4
Views: 3165

Re: Nuevo FWH 16.05

... oRcs := oConexion:Query("") trabaja perfecto Release version: a) There is no Open() method. Suggested: oRs := oCn:RowSet( cSql/TableName ) or oRs := oCn:Query( cSql/TableName ) // alias method For compatible syntax with FW_OpenRecordSet(), we can also use oRs := mysql_RowSet( ...
by nageswaragunupudi
Sun Jul 17, 2016 12:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo FWH 16.05
Replies: 12
Views: 3747
Next

Return to advanced search