Search found 95 matches

by marcov
25.10.2010, 08:01
Forum: ZeosLib 7.0 Beta Forum
Topic: Update for SQLite for Linux
Replies: 5
Views: 693

I think this is a very bad security hazard.

Search for LD_LIBRARY_PATH for a more UNIX way to solve your problem.
by marcov
17.10.2010, 01:15
Forum: 6.6 - stable
Topic: [patch_done] ubuntu / libmysqlclient.so.15 or .16
Replies: 9
Views: 1386

I think so. Zeos uses the same mechanism to workaround mysql versioning. You need to define a small driver class for a new version (16 is Mysql 5.1, 15 is mysql 5.0). See the source of ZPlainMySqlDriver how to it. These drivers must be somehow get connected to the connection, probably via similar cl...
by marcov
11.10.2010, 20:13
Forum: ZeosLib 7.0 Beta Forum
Topic: How to install Zeoslib on Delphi XE?
Replies: 7
Views: 2003

Start by explaining what you exact downloaded?

Did you check out svn://zeos.firmos.at/zeos/branches/testing ?
by marcov
03.10.2010, 21:27
Forum: ZeosLib 7.0 Beta Forum
Topic: Zeos 7 alpha and Delphi 2010
Replies: 7
Views: 958

Labels are just labels. No, i definitely dont agree with that. Alpha is by definition a no-go for production releases, a beta is signaling its ready but could contain minor errors.. True, but since in most smaller projects such transitions are made without a statistically valid way of proofing if s...
by marcov
02.10.2010, 21:46
Forum: ZeosLib 7.0 Beta Forum
Topic: Zeos 7 alpha and Delphi 2010
Replies: 7
Views: 958

MaleManGuy wrote:I'd love to get on board with 7.0.0.
Would it be safe to use in my commercial app yet? It is still alpha...
Would me naming it zeta make it more safer? Labels are just labels.

Anyway I use it in apps, but the amount of transactions are not that high (several hundreds)
by marcov
01.10.2010, 11:46
Forum: ZeosLib 7.0 Beta Forum
Topic: Zeos 7 alpha and Delphi 2010
Replies: 7
Views: 958

Move the .bpl's (and those only) to somewhere in the PATH.

Recent Delphi's add some directory to the PATH specifically for this purpose.

For my Delphi XE it is

C:\Users\Public\Documents\RAD Studio\8.0\Bpl
by marcov
21.09.2010, 09:20
Forum: ZeosLib 7.0 Beta Forum
Topic: Delphi 2010 - Compile, Install - But no components
Replies: 25
Views: 10364

Re: ZeosLib svn and D2010

Ok, added "C:\PROGRA~1\Borland\Delphi5\Comp\D2010\ZEOSDBO\packages\delphi14\build" to the OS PATH Variable (really strange !!) compiled and installed ZComponentDesign140.bpl but still no components on my pallette or Forms. Should work. Note that recent delphi versions already put a dir fo...
by marcov
21.09.2010, 09:14
Forum: ZeosLib 7.0 Beta Forum
Topic: zeos.inc and versioning
Replies: 2
Views: 322

It doesn't have to be a bigbang change. You can do it gradually as you find out things.
by marcov
21.09.2010, 09:13
Forum: User Patches
Topic: Delphi XE package dir + Delphi 2009 fixes
Replies: 4
Views: 2034

Btw, I saw you committed it in testing. Trunk appears static

Is this normal?
by marcov
20.09.2010, 15:05
Forum: ZeosLib 7.0 Beta Forum
Topic: Zeos 7 Alpha and Delphi 2009 Support - Official Thread
Replies: 97
Views: 28187

That's because captions are UTF8 in Lazarus. But they are UTF16 in Delphi/Unicode (Delphi2009+) Caption is of type String in Delphi/unicode, which is of type TUnicodeString, not Ansistring. The first is <utf16string>:=<utf16string> so no conversion takes place. So by typecasting a UTF16 string to an...
by marcov
20.09.2010, 14:57
Forum: User Patches
Topic: Delphi XE package dir + Delphi 2009 fixes
Replies: 4
Views: 2034

No. I just know what Kylix defines and what not from the old days. I never used Kylix (I ran FPC on Linux and FreeBSD before Kylix)

That's why I added the "unix" define, to separate general unixisms (like / and \) from Linuxisms.
by marcov
19.09.2010, 18:23
Forum: ZeosLib 7.0 Beta Forum
Topic: XE is here...
Replies: 2
Views: 910

I posted a patch for Delphi XE project files in the patches forum. With that it builds fine. My (admitted, fairly simple) Zeos using app works with it too.

It is fairly trivial though. Most work is fixing all the libsuffixes (in dproj and .dpk)
by marcov
19.09.2010, 18:14
Forum: User Patches
Topic: Delphi XE package dir + Delphi 2009 fixes
Replies: 4
Views: 2034

Delphi XE package dir + Delphi 2009 fixes

Attached is an archive containing - A patch fixing the D2009 package dir (the zeosdbodev project) - The Delphi15 dir for Delphi XE packages. Copied and adapted from the D2010 - A patch for (most) inc files - remove {$ifdef freebsd} {$define unix}{$endif} this is already defined in FPC. The correspon...
by marcov
14.09.2010, 10:46
Forum: ZeosLib 7.0 Beta Forum
Topic: PROBLEM INSTALING ZEOSLIB ON DELPHI 2010
Replies: 3
Views: 550

I can be wrong, but I haven't seen package files for 2010 ? (Delphi 13), only 2009 and XE ?
by marcov
14.09.2010, 10:20
Forum: ZeosLib 7.0 Beta Forum
Topic: Delphi 2009 With firebird 2.1 and UTF8
Replies: 6
Views: 1150

You do too much, what you do wrong is that tdbedit.text already is unicodestring (UTF16, like widestring). The utf8 conversion is not necessary. The codepage=utf8 cshould already let Zeos do this translation (utf8 on the "wire" to utf16 in dbedit.text). The only thing to check is that all ...