Search found 50 matches

by bangfauzan
20.10.2006, 03:21
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: MSSQL cross-database Queries
Replies: 4
Views: 1345

attention:
do not remove ".." between database_name and table_name

just remove the "dbo" and leave the ".."

example:

select * from db_name..tbl_name
by bangfauzan
20.10.2006, 03:12
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: MSSQL cross-database Queries
Replies: 4
Views: 1345

Hi, Petya. of course you can use cross-query, and also cross-server and cross-host. but you have to remove "dbo" clause in your sql statement. so, try to change your sql above to be: SELECT Rendszam,FszgA,FszgB,CI FROM Online FULL OUTER JOIN BUSDATADKV..Jarmu ON (BUSDATADKV..Jarmu.FSZGA=On...
by bangfauzan
13.10.2006, 06:58
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Clear dataset
Replies: 9
Views: 2025

I made a hard tes and I used it in production environment, every ok, no memory leak found.
Try to check your code again, and remove/modify any inefficient algorithme.

Thanks
by bangfauzan
13.10.2006, 04:16
Forum: Feature Requests
Topic: [bug_fixed] New Feature: LinkedFieldNames Vs IndexFieldNames
Replies: 15
Views: 6018

Hi, Mark I have changed UltimGrid code to comply old zeos (before renamed IndexFieldNames) behavior. It is very simple, I just redirect IndexFieldNames to SortedFields. And... everything work fine. But when I use other standard component, it doesn't work, because no SortedFields property in other co...
by bangfauzan
13.10.2006, 04:07
Forum: Feature Requests
Topic: [bug_fixed] New Feature: LinkedFieldNames Vs IndexFieldNames
Replies: 15
Views: 6018

Ok, I see.

Thanks Mark.

Regards
by bangfauzan
12.10.2006, 10:32
Forum: Feature Requests
Topic: [bug_fixed] New Feature: LinkedFieldNames Vs IndexFieldNames
Replies: 15
Views: 6018

Dear mdeam UltrimGrid works very well on other standard components. But if changing the indexfieldnames property makes zeos people facing 'contra' may be it is much more wise if I cancel/abort the change, except previous changes like BeforeApplyUpdates, EmptyDataSet, etc. But I hope everybody doing ...
by bangfauzan
12.10.2006, 08:45
Forum: Feature Requests
Topic: [bug_fixed] New Feature: LinkedFieldNames Vs IndexFieldNames
Replies: 15
Views: 6018

Your are right, other components use IndexFieldNames as master-detail relathionship. But we have to notice that in other components, IndexFieldNames handling both master-detail relathionship and data sorting as well. while zeos was absolutely different, whereas zeos uses indexfieldnames for master-d...
by bangfauzan
11.10.2006, 02:25
Forum: Feature Requests
Topic: [bug_fixed] New Feature: LinkedFieldNames Vs IndexFieldNames
Replies: 15
Views: 6018

Oooops......
I did not try that on lazarus, I would do any test (and modification if necessary)
and I will confirm you later.

thanks
by bangfauzan
10.10.2006, 08:28
Forum: Feature Requests
Topic: [bug_fixed] New Feature: LinkedFieldNames Vs IndexFieldNames
Replies: 15
Views: 6018

No objection, Thanks Mark!

Fauzan
by bangfauzan
10.10.2006, 01:56
Forum: Feature Requests
Topic: [bug_fixed] New Feature: LinkedFieldNames Vs IndexFieldNames
Replies: 15
Views: 6018

Dear Zeos Team,

What is your opinion about these changes?

Thanks
by bangfauzan
09.10.2006, 02:07
Forum: Feature Requests
Topic: [bug_fixed] New Feature: LinkedFieldNames Vs IndexFieldNames
Replies: 15
Views: 6018

[bug_fixed] New Feature: LinkedFieldNames Vs IndexFieldNames

Dear Zeos Team I did some changes of the original IndexFieldNames property to be LinkedFields property for conducting master-detail relationship. After this change, Old code still 100% work without remapping every call to IndexFieldNames to LinkedFields (as mdeams whishes). And I added a new IndexFi...
by bangfauzan
06.10.2006, 02:27
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: How To Install MySQL Embedded?
Replies: 1
Views: 516

How To Install MySQL Embedded?

Dear All,

I Interested to install mysql embedded database, but I don't know how to install and setting it up?

Tanks very much.

Fauzan
by bangfauzan
04.10.2006, 05:26
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Unable to Connect via MySQL under D9 using Rev_64
Replies: 1
Views: 588

Have you copy all mysql library e.g. libmysql.dll into your system folder?
also, have you add path of build zeos component e.g. C:\ZeosLib\packages\delphi9\build into your delphi search path?
by bangfauzan
04.10.2006, 02:15
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Clear dataset
Replies: 9
Views: 2025

I propose 2 solution about this problem. First, you can use both TClientDataSet and TDataSetProvider. Set DataSet property of TDataSetProvider to your ZTable or ZQuery, and then set ProviderName property of TClientDataSet to the such TDataSetProvider. now you your TClientDataSet ready to use. The po...
by bangfauzan
03.10.2006, 10:13
Forum: Firebird
Topic: How to returning a field on Insert
Replies: 1
Views: 1945

Hi nuthling, I understand what u mean. Your problem occures coz u disabled the two rows, that are: //tblSystemUsers.CommitUpdates; //tblSystemUsers.Refresh; if u set CachedUpdates property on your tblSystemUsers to true, to make sure your data stored in the database server, you have to add this code...