Search found 263 matches

by Fr0sT
17.01.2020, 08:36
Forum: ZeosLib 7.3/8.0 Forum
Topic: List of connection properties?
Replies: 36
Views: 2272

Re: List of connection properties?

Which props really require long descriptions? Most of them are pretty obvious and those which require explanations usually are directly derived from drivers so driver's docs will be better.
by Fr0sT
15.01.2020, 08:29
Forum: ZeosLib 7.3/8.0 Forum
Topic: List of connection properties?
Replies: 36
Views: 2272

Re: List of connection properties?

Dozens of files each containing one or two lines? I don't think it's a good idea
by Fr0sT
13.01.2020, 07:50
Forum: ZeosLib 7.3/8.0 Forum
Topic: List of connection properties?
Replies: 36
Views: 2272

Re: List of connection properties?

@frost: I would be happy about a workflow like that. But I don't know about a tool for that kind of source code documentation. These are no properties of classes or anything like that. Do you have any suggestion for doing the kind of documentation process you suggest? I don't think any existing too...
by Fr0sT
10.01.2020, 12:20
Forum: ZeosLib 7.3/8.0 Forum
Topic: List of connection properties?
Replies: 36
Views: 2272

Re: List of connection properties?

Reasonable wish! But you'll have to define a set of available options anyway (to restrict users from doing something bad) so you'll just need proper descriptions for these options.
by Fr0sT
10.01.2020, 08:43
Forum: ZeosLib 7.3/8.0 Forum
Topic: Brainstorming about ClientCodePage
Replies: 3
Views: 195

Re: Brainstorming about ClientCodePage

Unfortunately (or fortunately :))) ) I've no experience in multi-language DB apps but I'm pretty sure than in modern world the real need in codepages is very very rare. So yes, I guess you're right
by Fr0sT
09.01.2020, 12:31
Forum: ZeosLib 7.3/8.0 Forum
Topic: List of connection properties?
Replies: 36
Views: 2272

Re: List of connection properties?

If you mean docs, then yes you're right :)
I guess that instead of having two parallel storages of parameters info (sources and wiki) we should better keep everything in sources and just auto-generate wiki page from them.
by Fr0sT
09.01.2020, 12:28
Forum: ZeosLib 7.3/8.0 Forum
Topic: Brainstorming about ClientCodePage
Replies: 3
Views: 195

Re: Brainstorming about ClientCodePage

I could seem rather radical but I'd say codepages are for legacy stuff only, modern stuff should use utf8 everywhere and forget about codepages at all
by Fr0sT
09.01.2020, 08:38
Forum: ZeosLib 7.3/8.0 Forum
Topic: List of connection properties?
Replies: 36
Views: 2272

Re: List of connection properties?

So there's no list for it at the moment - that's what I thought. Weird conclusion - there IS a list at the moment! Above-mentioned files contain pretty much generic parameters. Any other ones are driver-specific and are defined in ZPlain*Constants units. This might seem inconsistent but this is the...
by Fr0sT
16.12.2019, 08:35
Forum: Lazarus / Freepascal
Topic: Linking ZQuery & TDatasource by code
Replies: 7
Views: 447

Re: Linking ZQuery & TDatasource by code

The difference between auto-managed types and GC is that with the former you always can tell when resources are freed and in the latter you can't. Auto-managed types could make code significantly shorter and cleaner.
by Fr0sT
12.12.2019, 08:55
Forum: Lazarus / Freepascal
Topic: Linking ZQuery & TDatasource by code
Replies: 7
Views: 447

Re: Linking ZQuery & TDatasource by code

I also use short-living query objects for little tasks. I get it with DataModule.GetTempQuery, do what I need and forget about it. As the returned query is wrapped with interface, it is destroyed automatically
by Fr0sT
11.12.2019, 12:44
Forum: ZeosLib 7.2 Forum
Topic: Zeos 7.2.6 + Oracle - set schema on TZConnection?
Replies: 16
Views: 756

Re: Zeos 7.2.6 + Oracle - set schema on TZConnection?

I'm not familiar with Oracle but shouldn't Schema be rather a prop of a dataset than of a connection? Connection could access several schemas or am I missing something?
by Fr0sT
02.12.2019, 08:28
Forum: ZeosLib 7.3/8.0 Forum
Topic: In-memory "driver" for Zeos?
Replies: 6
Views: 389

Re: In-memory "driver" for Zeos?

Usually this is called "mem table" and it actually would be pretty nice to have this in Zeos.
by Fr0sT
25.11.2019, 08:28
Forum: Off Topic
Topic: Sourceforge.io? Faster access? Smoother looking forum?
Replies: 15
Views: 41127

Re: Sourceforge.io? Faster access? Smoother looking forum?

Looks good so far. Jan could you change the color of notifications badge and unread icon? It is too bright and bloody now
by Fr0sT
21.11.2019, 19:43
Forum: ZeosLib 7.2 Forum
Topic: Zeos references Lazarus LCL
Replies: 2
Views: 204

Re: Zeos references Lazarus LCL

This shouldn't be so... what happens if you remove lcl dependency?
by Fr0sT
21.11.2019, 08:12
Forum: ZeosLib 7.2 Forum
Topic: passing connection from queries
Replies: 20
Views: 766

Re: passing connection from queries

DavideAmelio wrote:The problem is the opposite: TZconn := TZQuery.Connection ( Abstract )
Why not change type of parameters in your functions to TZAbstractConn? This would be more correct from the point of class hierarchy