Hi Wolfgang,
Understood. Please refer https://www.xsharp.eu/forum/topic?p=648#p648 from May 21, 2018.
It is similar to my request and this is what I am hoping for.
Jamal
Search found 322 matches
- Wed Nov 27, 2024 8:34 pm
- Forum: Product
- Topic: DBF Client/Server Engine
- Replies: 7
- Views: 313
- Wed Nov 27, 2024 6:44 pm
- Forum: Product
- Topic: DBF Client/Server Engine
- Replies: 7
- Views: 313
Re: DBF Client/Server Engine
Hi Wolfgang,
In the link https://www.xsharp.eu/articles/x-sql-rdd-beta I have not seen a mention of DBF.
Does it support DBF file in as Client/Server using SQL interface? If that's the case, that would be cool.
In the link https://www.xsharp.eu/articles/x-sql-rdd-beta I have not seen a mention of DBF.
Does it support DBF file in as Client/Server using SQL interface? If that's the case, that would be cool.
- Tue Nov 26, 2024 7:35 pm
- Forum: Product
- Topic: DBF Append Speed in X# vs VO - Huge Difference
- Replies: 31
- Views: 5429
Re: DBF Append Speed in X# vs VO - Huge Difference
Hi Chris,
May be it is unrealistic but not impossible. How would anyone know that if I did not bring it to your attention? After all, I am a speed freak and who isn't!
Jamal
May be it is unrealistic but not impossible. How would anyone know that if I did not bring it to your attention? After all, I am a speed freak and who isn't!
Jamal
- Tue Nov 26, 2024 7:28 pm
- Forum: Product
- Topic: DBF Client/Server Engine
- Replies: 7
- Views: 313
Re: DBF Client/Server Engine
Hi Wolfgang,
Thanks for that, however, I am asking about DBF not SQL.
Jamal
Thanks for that, however, I am asking about DBF not SQL.
Jamal
- Tue Nov 26, 2024 5:13 pm
- Forum: Product
- Topic: DBF Client/Server Engine
- Replies: 7
- Views: 313
DBF Client/Server Engine
Hi All,
It was mentioned sometime ago that a DBF Client/Server Engine in X# similar to ADS could be developed? Any news about this?
Thanks!
Jamal
It was mentioned sometime ago that a DBF Client/Server Engine in X# similar to ADS could be developed? Any news about this?
Thanks!
Jamal
- Tue Nov 26, 2024 5:08 pm
- Forum: Product
- Topic: DBF Append Speed in X# vs VO - Huge Difference
- Replies: 31
- Views: 5429
Re: DBF Append Speed in X# vs VO - Huge Difference
Hi Horst,
Actually, that was a workaround which I am using now, but I wanted to mention that the issue still exists when an index file is active.
Hopefully, sometime in the future a fix is found.
Jamal
Actually, that was a workaround which I am using now, but I wanted to mention that the issue still exists when an index file is active.
Hopefully, sometime in the future a fix is found.
Jamal
- Mon Nov 25, 2024 4:30 pm
- Forum: Product
- Topic: DBF Append Speed in X# vs VO - Huge Difference
- Replies: 31
- Views: 5429
Re: DBF Append Speed in X# vs VO - Huge Difference
Hey Guys, I am still lurking around! The speed issue is still in X# 2.21. It took 22.51 minutes this time because I have a faster SSD on a new PC, but it is a long time. The dbf size after append is 20 MB. The issue seems to occur when a DBFCDX order is active. When an order is not used, the loop is ...
- Sat May 11, 2024 6:58 pm
- Forum: Chit-Chat
- Topic: Is it possible to have a map of a location on the site?
- Replies: 4
- Views: 594
Re: Is it possible to have a map of a location on the site?
This might be a privacy issue and may not permitted in some countries without user's permission; but I am not sure 100% about that. The admins of this forum have the final say. Also, it may incur additional costs for geocoding. Anyway, there is an extension for the phpBB® Forum Software which this ...
- Fri Mar 29, 2024 8:16 pm
- Forum: VO & Vulcan
- Topic: VO 2740 OLEAutoObject works with Excel 64bit WHY?
- Replies: 7
- Views: 1248
Re: VO 2740 OLEAutoObject works with Excel 64bit WHY?
Hello All, If a component has a 32bit version of the DLL installed in Windows\SysWOW64 folder it will work (despite 64 is in the name). Also, if the component has a 64bit version of the DLL in the \Windows\System32 (despite 32 in the name), it will work on 64bit system. Kind of confusing at a first ...
- Mon Mar 04, 2024 9:19 pm
- Forum: VO & Vulcan
- Topic: Speed import csv data
- Replies: 7
- Views: 1378
Re: Speed import csv data
It could be the FieldPut operation on the ba_spectra dbServer object. So, use SuspendNotification () to suspend the broadcasting of Notify messages to the server's attached clients. This should help alot with speed. Sample: SELF:ba_spectra:SuspendNotification() DO WHILE !SELF:o_csv:EoF // your code ...