-
Ismet Sonmez commented on the post, I will give a presentation in Cologne / Köln – Germany on Friday October 11. 2024 1 year, 9 months ago
can we watch the video recordings?
-
Ismet Sonmez replied to the topic kbmMemTable Delphi 12 in the forum kbmMemTable 2 years, 8 months ago
I talked to Kim, new release is about to come out
-
Ismet Sonmez started the topic my kbmmw application code in the forum kbmMW 2 years, 8 months ago
Removed custom fields from the running system
-
Ismet Sonmez replied to the topic Example for KbmMW as a Windows Service in the forum kbmMW 2 years, 8 months ago
I am sending the server codes I use in the running system. You can change it according to yourself.
-
Ismet Sonmez replied to the topic Example for KbmMW as a Windows Service in the forum kbmMW 2 years, 8 months ago
procedure TModuleMain.StartServer;
var
filelogmgr:IkbmMWLocalFileLogManager;
begin
filelogmgr:=TkbmMWLocalFileLogManager.Create(‘.log.txt’,’.audit.txt’);
filelogmgr.FlushInterval:=0;
Log.LogManager:=filelogmgr;
//Log.TimeStart(‘Total’);
//Log.TimeEnd(‘Total’,’Total time’);mwIndyStd.Bindings.Items[0].Port :=…[Read more]
-
Ismet Sonmez replied to the topic Example for KbmMW as a Windows Service in the forum kbmMW 2 years, 8 months ago
unit MainSvc;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.SvcMgr, Vcl.Dialogs,
System.Win.Registry;const
STR_VERSION_MAIN = ‘1.0’;
STR_NAME_COMPANY = ‘Bolergo’;
STR_NAME_APPLICATION_SHORT = ‘BLTicketSvc’;
STR_NAME_APPLICATION…[Read more] -
Ismet Sonmez replied to the topic kbmMWRtti compile error in the forum kbmMW 3 years, 8 months ago
Oppps, my fault
-
Ismet Sonmez started the topic kbmMWRtti compile error in the forum kbmMW 3 years, 8 months ago
Hi Kim,
incompatible type error on kbmMWRtti line 988
version 5.20.01
-
Ismet Sonmez commented on the post, What should I use for writing database centric desktop applications? 4 years, 6 months ago
Hello Vadim,
I am interested in this topic, can you post sample code snippet
best regards
dryphon@gmail.com -
Ismet Sonmez commented on the post, What should I use for writing database centric desktop applications? 4 years, 6 months ago
Hi,
I’ve been writing desktop applications for years and I want to replace that with the web.
I want to create my business objects on the server layer using scripts and output html in the user interface.
I’ve […] -
Ismet Sonmez commented on the post, What should I use for writing database centric desktop applications? 4 years, 6 months ago
Hi Kim,
I uses 2.61 long time and 5.xx, so flexible product,
in my opinion you need to open a demo page on github
For the product, it would be much better if there was script language support.
I am currently […] -
Ismet Sonmez replied to the topic TkbmMWJSONMarsha ValueFromString Turkish character Error in the forum kbmMW 4 years, 11 months ago
it is double, when remove turkish its work
tempstr := ‘{“statusCode”: 3,”description”: “çğöşü ÇĞÖŞÜ”}’;
version 5.15.10 Enterprise
-
Ismet Sonmez started the topic TkbmMWJSONMarsha ValueFromString Turkish character Error in the forum kbmMW 4 years, 11 months ago
Hi ,
on TkbmMWJSONMarshal(m).ValueFromString(ABaseObjectClass,AObjectString);
Syntax error: Nothing to parse.: Pos 1..
my json is {“statusCode”: 3,”description”: “Uçuş Kapatılmısş.”}
when change “Uçuş” to “Ucuş” working. Although ı and ş are Turkish characters, it works.
-
Ismet Sonmez commented on the post, Scumbags, arseholes and thieves! 4 years, 11 months ago
Dear Kim,
Maybe you don’t know, but at first I pirated your products.
I used it for 1 year in my own products. During this time, I saw that kbmmw worked very well and I was very satisfied.
After this s […] -
Ismet Sonmez replied to the topic Dynamic marshaling from sql in the forum kbmMW 5 years, 2 months ago
test code;
procedure TFormMain.Button1Click(Sender: TObject);
var
o:TSimpleObjectResult;
s:TSimpleObjectResult;
str:string;
begin
s := GetSimpleObjectResultBySql(‘SELECT * FROM SYSFIRM’);str := ObjectMarshal(S,1,True);
showmessage(str);o:=TSimpleObjectResult(ObjectUnMarshal(TSimpleObjectResult,str,1,True));
showmessage(o.Data.Desc);
end; -
Ismet Sonmez started the topic Dynamic marshaling from sql in the forum kbmMW 5 years, 2 months ago
Hi,
I tested this code, work good.For dynamic object creation and marshaling.
Is that true way or is there any other way?
unit MainObject;
interface
uses SysUtils, Generics.Collections, Rtti,
kbmMemTable,
kbmMWRTTI,
kbmMWObjectMarshal,
kbmMWJSONMarshal,
kbmMWXMLMarshal,
kbmMWYAMLMarshal,
MainDbModule;type
TBaseObjectClass = class of…
-
Ismet Sonmez replied to the topic How to identify delphi compatibility in the forum kbmMW 5 years, 5 months ago
I fresh installed in Delhi 10.4.2, no problem
-
Ismet Sonmez replied to the topic Orm, Firedac, Firebird create index sqlrewriter double Quoted on null result in the forum kbmMW 5 years, 5 months ago
TkbmMWCustomSQLMetaData.FormatString(const AString:string):string;
line 638 “if FStringQuote=#0 then” FStringQuote =”
not seeing #39 in interbase metadata
as it creates custommetadata itself
I gave up -
Ismet Sonmez replied to the topic Orm, Firedac, Firebird create index sqlrewriter double Quoted on null result in the forum kbmMW 5 years, 5 months ago
I’ve tried different combinations, different problems have arisen,
I keep debugging
object kbmMWFireDACConnectionPool1: TkbmMWFireDACConnectionPool
MetaData = mwMeta
Rewriter = kbmMWInterbaseSQLRewriter1
Database = fdCon
Left = 336
Top = 64
end
object kbmMWInterbaseSQLRewriter1: TkbmMWInterbaseSQLRewriter
MetaData = mwMeta
Left = 424
Top =…[Read more] -
Ismet Sonmez started the topic Orm, Firedac, Firebird create index sqlrewriter double Quoted on null result in the forum kbmMW 5 years, 5 months ago
Hi,
On firebird cant create pk with orm.
kbmCustomSqlMetaData lin 1.069
AResult:=(q.FieldCount>0) and (q.Fields[0].AsInteger>0);
Sql result is empty, and code is cant access q.Fields[0].AsIneteger
sample orm def;
[kbmMW_Table(‘name:SYSUSER, index:{name:PK_SYSUSER, unique:true, field:OID}’)]
TSYSUSER =…[Read more] - Load More
