Search found 1337 matches: execute

Return to advanced search

Re: Question about performance RowSet

... a RowSet is opened for ReadOnly, again the initial reading is faster. oRs := oCn:RowSet( cSql, [aParams], [lReadOnly] ) Execute aData := oCn:Execute( cSql, [aParams] ) We get the data in a multi-dimensional array. In case we need the structure, call this ...
by Eroni
Wed Mar 20, 2024 1:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 466

Re: Question about performance RowSet

... a RowSet is opened for ReadOnly, again the initial reading is faster. oRs := oCn:RowSet( cSql, [aParams], [lReadOnly] ) Execute aData := oCn:Execute( cSql, [aParams] ) We get the data in a multi-dimensional array. In case we need the structure, call this ...
by nageswaragunupudi
Sat Mar 16, 2024 10:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 466

Re: more GGUF Model

... Here I use a Xeon CPU (iMac) and nvidia GPU (RTX 3060, eGPU). If I build it locally it will not be able to properly execute on a lower CPU/GPU. Thats why you have to build it yourself on your own CPU and GPU. AI gets it best speed using nvidia GPU. Also enough RAM ...
by Antonio Linares
Mon Jan 29, 2024 6:14 am
 
Forum: Artificial Intelligence
Topic: more GGUF Model
Replies: 1
Views: 150

Re: encrypt DBF using ADS Local

... libres y despues de leer sus registros encryptar nuevamente?, .Adt´s. Pues me lanza un error cuando lo hago de la siguiente manera : getConexion.Execute("EXECUTE PROCEDURE sp_DecryptTable('Tabla.Adt','12345678');", out iFilasAfectadas, -1); getConexion.Execute("EXECUTE PROCEDURE ...
by Joan
Mon Jan 22, 2024 3:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: encrypt DBF using ADS Local
Replies: 7
Views: 5088

Re: How does mod harbour work

... Error: LOCAL declaration follows executable statement operation: line:593 called from: HB_COMPILEFROMBUF, line: 0 called from: ..\source\exec.prg, EXECUTE, line: 68 Source: 0066: cPRGPATH := hb_GetEnv( "PRGPATH" ) 0067: cPRGPATH := STRTRAN( cPRGPATH , "/", "\" ) 0068 ...
by Antonio Linares
Mon Jan 15, 2024 12:38 pm
 
Forum: mod_harbour
Topic: How does mod harbour work
Replies: 8
Views: 1004

Re: How does mod harbour work

... Error: LOCAL declaration follows executable statement operation: line:593 called from: HB_COMPILEFROMBUF, line: 0 called from: ..\source\exec.prg, EXECUTE, line: 68 Source: 0066: cPRGPATH := hb_GetEnv( "PRGPATH" ) 0067: cPRGPATH := STRTRAN( cPRGPATH , "/", "\" ) 0068 ...
by Ruth
Mon Jan 15, 2024 9:35 am
 
Forum: mod_harbour
Topic: How does mod harbour work
Replies: 8
Views: 1004

file ID in the Windows file system

... ID for a file. Here's a simple example of how you might retrieve a file's ID using the fsutil command: 1. Open Command Prompt as Administrator. 2. Execute the command: ```cmd fsutil file queryfileid C:\path\to\your\file.txt ``` Replace `C:\path\to\your\file.txt` with the actual path to your file. ...
by Otto
Fri Jan 05, 2024 4:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: file ID in the Windows file system
Replies: 5
Views: 528

Re: Conectarse con mariaDB

... NULL, 0) == NULL) { fprintf(stderr, "Error connecting to MySQL: %s\n", mysql_error(conn)); mysql_close(conn); exit(EXIT_FAILURE); } // Execute a simple query if (mysql_query(conn, "SELECT * FROM your_table")) { fprintf(stderr, "Error querying MySQL: %s\n", mysql_error(conn)); ...
by Antonio Linares
Mon Jan 01, 2024 2:55 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: Conectarse con mariaDB
Replies: 4
Views: 2044

Re: xBrowser

Mr Rao, Goodnight! In the following example, although we have 7 columns, when placing the 7th element in the array the program does not execute. That's why there are 6 elements in the array. I think the color change occurs when the content becomes larger than the space defined for the column. ...
by oliveiros junior
Wed Dec 20, 2023 9:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowser
Replies: 8
Views: 871

Re: Error con FW_OpenRecordSet

Mr. Rao, sigue el mismo error Error description: Error ADODB.Connection/0 S_OK: EXECUTE Args: [ 1] = C INSERT INTO prueba (cliente,Numero) VALUES ( 0, 21) Stack Calls =========== Called from: => TOLEAUTO:EXECUTE( 0 ) Called from: abd4.prg => MAIN( 58 ) en ...
by jpcavagnaro
Wed Dec 20, 2023 12:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error con FW_OpenRecordSet
Replies: 2
Views: 255

Error con FW_OpenRecordSet

... { "FOXPRO", "c:\fwh2212\samples\"}, .f. ) csql := "INSERT INTO .\prudbt (cliente,Numero) VALUES ( 0, 21) " oCn:Execute( csql ) csql := "INSERT INTO .\prueba (cliente,Numero) VALUES ( 0, 21) " oCnm:Execute( csql ) oRs:Close() oCn:Close() oCnm:Close() ...
by jpcavagnaro
Tue Dec 19, 2023 7:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error con FW_OpenRecordSet
Replies: 2
Views: 255

Calculate total pages

... anything only for calculate number of pages it would be very simple what do I know I imagine PRINT oPrn NAME "My Print" CALCULATE I execute two times the same function the firs is only for calculation the second really prints have a nice day
by MarcoBoschi
Wed Nov 22, 2023 5:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Calculate total pages
Replies: 32
Views: 5507

Re: Help splitting up a character address string

... the table. Here's an example: ```sql INSERT INTO Addresses (Street, City, State, Zip) VALUES ('123 Main St', 'Cityville', 'CA', '12345'); ``` 6. Execute the SQL statements: Use the appropriate functions from the Harbour database library to execute the SQL statements. This will insert the address ...
by frose
Wed Nov 15, 2023 11:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 494

Re: consulta mariadb a un array

Good Morning,

Just try

aRet := ::oCnx:Execute( PAISES)
by vilian
Mon Nov 13, 2023 12:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: consulta mariadb a un array
Replies: 5
Views: 573

Re: ADO ejecutar

Mr. Rao, gracias por responder.

me da error: Error description: Error ADODB.RecordSet:_ACTIVECONNECTION/0 S_OK: EXECUTE

como sería la sintaxis, aclaro que estoy trabajando con DBFs, no con SQL
by jpcavagnaro
Fri Nov 03, 2023 2:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO ejecutar
Replies: 2
Views: 277
Next

Return to advanced search