Search found 20 matches: serverside

Return to advanced search

Re: Steps to integrate AI

...     try {        const response = await fetch("https://mybergland.com/chatgpt_api/serverside.prg", {          method: "POST",          headers: { "Content-Type": "application/json" },  ...
by Ruth
Sat Jan 20, 2024 4:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Steps to integrate AI
Replies: 4
Views: 639

Re: Error in FW_ArrayAsRecordSet Seek - Please help

... you are aware that a RecordSet supports "index" property and "seek" method only when the recordset opens a physical table as Serverside Cursor using adUseServer and with adCmdTableDirect option and all other kinds of RecordSets do not support Seek method. (Mostly RecordSets ...
by nageswaragunupudi
Tue Aug 08, 2023 6:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error in FW_ArrayAsRecordSet Seek - Please help
Replies: 6
Views: 358

Re: FWHMYSQL/MARIADB: Stored Procedures and Functions

Secure Serverside Scripting More advanced Examples An example of a safer stored procedure:    db():Execute( "DROP PROCEDURE IF EXISTS states_read" )TEXT INTO cSql   CREATE PROCEDURE states_read( ...
by nageswaragunupudi
Sun Dec 04, 2016 3:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWHMYSQL/MARIADB: Stored Procedures and Functions
Replies: 5
Views: 2895

Re: MYSQL CREATE VIEW

... what locking is to be provided, which we know by querying the :LockType after opening. To my knowledge, adLockPessimistic is available only for serverside recordsets. Normally used for single records. There is no call for locking, but the moment any field is modified the lock is applied till ...
by nageswaragunupudi
Tue Apr 28, 2015 2:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MYSQL CREATE VIEW
Replies: 14
Views: 1935

Re: ADO RDD xHarbour

... an error. Please note that the recordset has in fact only the records within the condition although RECORDCOUNT reports all records. This is using serverside cursor.
by AHF
Thu Mar 26, 2015 4:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446416

Re: ADO RecordSet Fetch() ?

... to be read. Still if you want to mimic the ODBC fetch() record by record and then copy into your own memory, I suggest the following way: Open serverside recordset with adOpenForwardOnly and adLockReadOnly. Keep reading the recordset as and when you need and copy to your memory ( array or whatever ...
by nageswaragunupudi
Sun Jul 28, 2013 8:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RecordSet Fetch() ?
Replies: 21
Views: 6503

ADO RecordSet: What is the best CursorType to use?

... etc. It defaults to the cusrorlocation of the connection object. If we do not set oCn:CursorLocation to adUseClient, this recordset is opened on serverside and we can not navigate the recordset backwards and not all methods and data work like clientside recordset. Back to CursorType: When we ...
by nageswaragunupudi
Mon Jun 17, 2013 3:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RecordSet: What is the best CursorType to use?
Replies: 2
Views: 1026

Re: Ejemplo del uso del un recorset con xbrowse

goosfancito wrote:hola.

estoy incursionando oracle con ado y resulta que siempre recordCount() me devuelve -1, pero esto es falso, tengo datos.

porque pasa esto?

Serverside recordsets return -1 as RecordCount.
We need to open recordsets on clientside, by using adUseClient, for browsing. Default is adUseServer.
by nageswaragunupudi
Tue Jan 25, 2011 5:46 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo del uso del un recorset con xbrowse
Replies: 26
Views: 8843

Re: How to write NULL to a Sql table

The real problem is when we need to pass NULL value to a parameter of a ServerSide procedure or function. For example, this is a function stored on the MSSQL server. CREATE FUNCTION nulltest( @nVar Int )RETURNING IntASBEGINDECLARE @RetVal IntIF @nVar ...
by nageswaragunupudi
Sun Apr 26, 2009 8:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to write NULL to a Sql table
Replies: 36
Views: 5962

Re: Ado vs Ado.net

... the Dataset is detatched .. > In ADO, we can detach, work and reconnect. In ADO.NET, that is the only way. ( Incidentally, that also means no serverside cursors. Can not browse large tables.) Microsoft will not 'support' ADO. But I think ADO will not stop working. Thats what I hope. For Oracle ...
by nageswaragunupudi
Mon Apr 13, 2009 5:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ado vs Ado.net
Replies: 10
Views: 3555

Adolfo: Tiempos de respuesta: ServerSide = 6.265 pero no me muestra datos... ClientSide = 6.422 Páginado: 1.688 browse simple: 8.203 anidado: me dice 0.609 pero seguramente es el tiempo del segundo browse. paginado: 0.953, pero cuando presiono ...
by pymsoft
Thu Jul 24, 2008 12:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ADOBASE, ultima version muy mejorada.
Replies: 27
Views: 6219

Adolfo: Tiempos de respuesta: ServerSide = 7.297 ClientSide = 6.860 Páginado: 1.093 Fecha y hora de la prueba: 14/Jun/2008 14:45hrs desde México. Conexión de 1mb Por cierto despues del browse anidado al salir de la aplicación me tiró este ...
by Armando
Sat Jun 14, 2008 7:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ADOBASE, ultima version muy mejorada.
Replies: 27
Views: 6219

Puedes publicar tu string de creacion del RECORDSET. para ver si es Client o ServerSide, el tipo de Bloqueo y cursor.

No deberias tener problemas con ese codigo.

ESo
by Adolfo
Thu May 15, 2008 9:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error al utilizar una tabla nueva en Ado
Replies: 8
Views: 1829

... I am aware I have a few other options, but I am more interested in using the multi-thread approach, if it is possible. By the way, ADS Serverside filters work like miracle even with hundreds or users simultaneously accessing huge tables with million rows.
by nageswaragunupudi
Tue Mar 25, 2008 6:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multithreads with FWH
Replies: 30
Views: 12127

Mr Enrico You found the reason. Most of the data and methods do not work on serverside cursors and some work only for serverside cursors but not for clientside. I have a few advices to make in general, based on theory, widely accepted good practices, confirmed ...
by nageswaragunupudi
Sun Feb 10, 2008 11:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for MDB recorset
Replies: 41
Views: 9424
Next

Return to advanced search