Search found 19 matches
- 22.02.2007, 18:04
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Why LGPL?
- Replies: 3
- Views: 1492
I think the Zeos license is called LGPL with linking exception... http://en.wikipedia.org/wiki/GPL_linking_exception After doing some more research on LGPL, I see now the advantages that LGPL provides the Zeos project -- the ability to GPL the library at any time, while still being friendly for prop...
- 21.02.2007, 20:26
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Why LGPL?
- Replies: 3
- Views: 1492
Why LGPL?
I'm having second thoughts over Zeos due to its LGPL license. I don't want to offend anyone. But to me, it seems Zeos would benefit by using an MPL license instead. It would be less restrictive for use in commercial applications, while still giving credit to the authors. For instance, i'm already us...
- 21.02.2007, 18:34
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: idea to improve performance
- Replies: 3
- Views: 1085
I think i'll stick with my workaround for now. FWIW there's also a way to keep the Resolver from calculating defaults... [delphi] constructor TZGenericCachedResolver.Create(Statement: IZStatement; Metadata: IZResultSetMetadata); begin ... FCalcDefaults := StrToBoolEx(DefineStatementParameter(Stateme...
- 20.02.2007, 20:26
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: idea to improve performance
- Replies: 3
- Views: 1085
- 20.02.2007, 17:22
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: idea to improve performance
- Replies: 3
- Views: 1085
idea to improve performance
I got an idea to improve performance when doing a lot of inserting into the database. The following code in ZDbcCachedResultSet will execute a query for every row being inserted just to get the row default values. If doing bulk inserts into the same table, it shouldn't be necessary to get these defa...
- 17.02.2007, 00:13
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: create database for mssql
- Replies: 2
- Views: 809
- 16.02.2007, 23:51
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: create database for mssql
- Replies: 2
- Views: 809
create database for mssql
Please help! I found it easy to connect TZConnection to a non-existent firebird database by specifying the 'CREATE DATABASE' sql in the TZConnection.Properties property. However, how is this done with MSSQL 2005? (specifically i'm testing with the express edition). How do i connect to MSSQL and crea...
- 31.10.2006, 13:01
- Forum: Bug Reports
- Topic: possible bug waiting to happen
- Replies: 1
- Views: 2704
- 29.10.2006, 23:33
- Forum: Feature Requests
- Topic: Square peg, round hole
- Replies: 7
- Views: 2343
- 29.10.2006, 03:57
- Forum: Bug Reports
- Topic: possible bug waiting to happen
- Replies: 1
- Views: 2704
possible bug waiting to happen
Something I noticed might become a bug in Zeos. There is an uninitialized variable in TZInterbase6Statement.ExecuteQuery... [syntax="delphi"] function TZInterbase6Statement.ExecuteQuery(const SQL: string): IZResultSet; var Cursor: string; begin // Cursor is not initialized ... if CursorNam...
- 28.10.2006, 18:37
- Forum: Bug Reports
- Topic: [bug_fixed] Fix for TZInterbase6DatabaseMetadata.GetSequence
- Replies: 3
- Views: 3285
[bug_fixed] Fix for TZInterbase6DatabaseMetadata.GetSequence
According to Firebird Support there needs to be a change to TZInterbase6DatabaseMetadata.GetSequences to account for a non-null value on column rdb$system_data in the table rdb$generators this only became a problem for me when i started using firebird 2.0 i've changed my source like so... [syntax=&q...
- 28.10.2006, 16:35
- Forum: Bug Reports
- Topic: [bug_fixed] Fix for Bug in ZInterbase6Sequence.GetNextValue
- Replies: 6
- Views: 4025
- 27.10.2006, 16:33
- Forum: Feature Requests
- Topic: Square peg, round hole
- Replies: 7
- Views: 2343
There are several ways I can get ZeosLib to let me commit one row at a time in a TZCachedResultSet. Proposal #1: Add a new method to TZCachedResultSet, called CommitRow, which does basically what PostUpdates does, only it does it for the selected row. It would commit regardless of whether or not Cac...
- 27.10.2006, 15:11
- Forum: Feature Requests
- Topic: Square peg, round hole
- Replies: 7
- Views: 2343
TZQuery is probably more than what i need. I can see that the TZCachedResultSet has a CachedUpdates property. If I set that to true, then it satisfies most of the requirements in the example program. However I still need a way to save/commit each domain object independently. I'll look at it some mor...
- 27.10.2006, 00:57
- Forum: Feature Requests
- Topic: Square peg, round hole
- Replies: 7
- Views: 2343
In the example code, I need to be able to save each domain object individually, regardless of whether or not other domain objects have modified their row data. When this domain object is saved, it is actually committed to the DB, however at the same time there may exist other domain objects that hav...