Search found 56 matches

by jjeffman
21.05.2013, 21:53
Forum: 6.6 - stable
Topic: Which script block has the error
Replies: 1
Views: 1469

Which script block has the error

I would like to know how TZSQLProcessor works internaly. Is there any way of getting which was the script block that has the error ? Does the TZSQLProcessor has a block count property ? I have Oracle components that identifies the block id which has raised the exception. I guess TZSQLProcessor keeps...
by jjeffman
30.04.2013, 19:08
Forum: 6.6 - stable
Topic: Charset Problem SQLite
Replies: 2
Views: 1889

I think I have answered your post at http://zeos.firmos.at/viewtopic.php?p=17231#17231.

Best regards,
by jjeffman
30.04.2013, 19:07
Forum: ZeosLib 7.0 Stable Forum
Topic: Does the 7.0 stable version have support for C++Builder 6.0
Replies: 7
Views: 1072

Hello marsupilami, Thank you for answering me. As a matter of fact I am not using UTF8Enceode yet. The problem I am facing is that SQLite stores data using UTF8 and, if use SQLite Expert in UTF8 mode to insert text like "coração" in the database tables I am not able the get the text on the...
by jjeffman
26.04.2013, 18:36
Forum: ZeosLib 7.0 Stable Forum
Topic: Does the 7.0 stable version have support for C++Builder 6.0
Replies: 7
Views: 1072

Hello, As you have broken with the deprecated compilers, could you please help me to improve version 6.6.6, adding charset conversion features to it ? I am not familiar with Delphi (Object Pascal) and I do not know where to start. SQLite stores data in UTF8 charset and if I use the UTF8Encode method...
by jjeffman
25.04.2013, 21:54
Forum: ZeosLib 7.0 Stable Forum
Topic: Is ZeosLib 7.0 compatible with C++ Builder XE2???
Replies: 6
Views: 1987

Can version 7 stable be installed on C Builder 6.0 ? Can you help me some how?

Best regards
by jjeffman
25.04.2013, 21:28
Forum: 6.6 - stable
Topic: Charset Problem SQLite
Replies: 2
Views: 1889

Charset Problem SQLite

I am using Zeos 6.6 stable on C++Builder 6.0 on Professional edition. The SQLite database has charset UTF8. When I run queries using SQLite Expert I can retrieve correct Portuguese charactars. The TZQuery is retrieving data with ANSI characters and "ç" is being retrieved as "ç"....
by jjeffman
18.04.2013, 15:05
Forum: 6.6 - stable
Topic: DBROWCOUNT Ambiguity
Replies: 0
Views: 1507

DBROWCOUNT Ambiguity

I was getting the error "[C++ Error] oledb.h(2920): E2015 Ambiguity between 'DBROWCOUNT' and 'Zplaindblibdriver::DBROWCOUNT'". The only solution that worked was to remove the unit which has CBuilder ADO components.

I think Zeos do not get along with Borland's ADO components.

Best regards.
by jjeffman
18.04.2013, 14:59
Forum: Other 6.x Versions
Topic: Problems with project compilation with Zeos componets
Replies: 1
Views: 10762

I hope you have solved the problem

Probably you have ADO components on your application. I think Zeos do not get along with ADO components.

Best regards.
by jjeffman
25.01.2013, 14:27
Forum: ZeosLib 7.0 Stable Forum
Topic: Does the 7.0 stable version have support for C++Builder 6.0
Replies: 7
Views: 1072

Which is the compiler executable ?

I apologize for not knowing which is the compiler executable ? Can you please tell me its file name ?

I have never used C++Builder in command line.

Best regards.
by jjeffman
23.01.2013, 13:59
Forum: ZeosLib 7.0 Stable Forum
Topic: Does the 7.0 stable version have support for C++Builder 6.0
Replies: 7
Views: 1072

Does the 7.0 stable version have support for C++Builder 6.0

Hi,

Does the 7.0 stable version have support for C++Builder 6.0 ?

Is it possible to install on C++Builder 6.0 Professional Edition ?

Thanks very much.

Kind regards.
by jjeffman
12.12.2012, 13:19
Forum: 6.6 - stable
Topic: SQLite 3 Duplicate key error
Replies: 3
Views: 1068

Looking to the error code list ( 29 different codes ) I have found the SQLITE_CONSTRAINT error, which I think may be used to catch attempts to insert rows with the same key value because it will result in a constraint violation, a primary key or unique constraint. Thank you very much for point me to...
by jjeffman
12.12.2012, 12:48
Forum: 6.6 - stable
Topic: SQLite 3 Duplicate key error
Replies: 3
Views: 1068

Thank you very much.

The application can survive without the error discretization, although it could be better if I it would be possible.

Kind regards.
by jjeffman
11.12.2012, 15:08
Forum: 6.6 - stable
Topic: SQLite 3 Duplicate key error
Replies: 3
Views: 1068

SQLite 3 Duplicate key error

Is there a way of checking if the SQL error is a duplicate key error ?

Thank you very much.
by jjeffman
07.12.2012, 19:36
Forum: 6.6 - stable
Topic: [solved] ZeosLib version and SQLite error
Replies: 7
Views: 1079

Hi,

The problem was the code to get the network user using Windows API GetUserName function which returns a buffer ended by a '\0' character.

I have cut the '\0' when present and the application is working fine.

Thank you very much.

Kind regards.
by jjeffman
07.12.2012, 18:33
Forum: 6.6 - stable
Topic: [solved] ZeosLib version and SQLite error
Replies: 7
Views: 1079

I have made a simple C++Builder application using the same SQLite table structure which I have failed on perform a SQL select to perform user login to the application. When testing the application I saw it was working perfectly. The diferences are : 1. I have said it works at design time. The SQL pa...