Search found 51 matches

by trob
08.04.2014, 17:26
Forum: ZeosLib 7.1 stable Forum
Topic: SQLite 3 - "SQL logic error or missing database"
Replies: 6
Views: 5840

Re: SQLite 3 - "SQL logic error or missing database"

Why does "LIMIT 1" at the end of the upper statement (with corrected table name part) cause the same error? The statement you have listed is an UPDATE SQL statement and executed with .EXECSQL (which does not return a result set). "Limit" is only relevant for SELECT statements, t...
by trob
08.04.2014, 14:55
Forum: ZeosLib 7.1 stable Forum
Topic: SQLite 3 - "SQL logic error or missing database"
Replies: 6
Views: 5840

Re: SQLite 3 - "SQL logic error or missing database"

One more question:

Why does "LIMIT 1" at the end of the upper statement (with corrected table name part) cause the same error?
by trob
08.04.2014, 14:33
Forum: ZeosLib 7.1 stable Forum
Topic: SQLite 3 - "SQL logic error or missing database"
Replies: 6
Views: 5840

Re: SQLite 3 - "SQL logic error or missing database"

Oooooouuuuuuhhh. Now it works. Thank you.

But why is tablename not allowed to set by a parameter?
by trob
08.04.2014, 12:33
Forum: ZeosLib 7.1 stable Forum
Topic: SQLite 3 - "SQL logic error or missing database"
Replies: 6
Views: 5840

SQLite 3 - "SQL logic error or missing database"

Hello I use Zeos 7.1.2 with Delphi XE2 for reach my SQLite 3 database. I attach the database. I use the following code on a ZQuery to update an exist table: ZQexec.SQL.Text:='UPDATE :tabla SET zarol=:zarolset WHERE zarol=:zarolwhere AND id=:id'; ZQexec.ParamByName('tabla') .AsString := tabla; ZQexec...
by trob
05.01.2014, 16:43
Forum: ZeosLib 7.1 stable Forum
Topic: Install problem: DelphiXE2 and 7.1.2-stable
Replies: 4
Views: 2519

Re: Install problem: DelphiXE2 and 7.1.2-stable

BPL? Why? You should do this: 1. Tools -> Options -> Environment Options -> Delphi Options - Library -> Library Path: to the end: ;D:\Windows\Delphi\ZeosDBO This is where you unzipped Zeos 2. File -> Open ZeosDbo.groupproj 3. Right click -> Compile, in this order: ZCore.dpk ZParseSQL.dpk ZPlain.dpk ...
by trob
02.01.2014, 03:35
Forum: ZeosLib 7.1 stable Forum
Topic: SSL - MySQL
Replies: 4
Views: 1400

Re: SSL - MySQL

Hello Jan

I followed this: http://dev.mysql.com/doc/refman/5.6/en/ ... tions.html and now it WOOOOOOOOOORKS!

:sailor:

Robi
by trob
01.01.2014, 22:16
Forum: Off Topic
Topic: Search function on this site
Replies: 2
Views: 22700

Re: Search function on this site

Yes, that was the solution, but... You understand :roll:
by trob
01.01.2014, 17:04
Forum: ZeosLib 7.1 stable Forum
Topic: SSL - MySQL
Replies: 4
Views: 1400

Re: SSL - MySQL

Thanks, i have found them. How/Where can i get these datas?
by trob
01.01.2014, 10:24
Forum: ZeosLib 7.1 stable Forum
Topic: SSL - MySQL
Replies: 4
Views: 1400

SSL - MySQL

Hi

I would like to have SSL connection with MySQL 5.6. I use Zeos 7.1.2-stable in Delphi XE2 U3.

I put "MYSQL_SSL=TRUE" in the properties of the connection, but it still connect without SSL.

How can i do SSL?
by trob
01.01.2014, 09:36
Forum: Off Topic
Topic: Search function on this site
Replies: 2
Views: 22700

Search function on this site

Hi Is it possible to ease the restriction of the search function here? I tried to search for SSL and MYSQL_SSL words, but it replaced _ to space, then said they are too common words, and at least 5 characters are expected. Some days age i run into the same problem, and i was not be able to find what...
by trob
30.12.2013, 08:40
Forum: ZeosLib 7.1 stable Forum
Topic: Install problem: DelphiXE2 and 7.1.2-stable
Replies: 4
Views: 2519

Re: Install problem: DelphiXE2 and 7.1.2-stable

OK, the $(BDSCOMMONDIR)\Dcp directory was not in the Library. I do not know why.
by trob
30.12.2013, 07:08
Forum: ZeosLib 7.1 stable Forum
Topic: Install problem: DelphiXE2 and 7.1.2-stable
Replies: 4
Views: 2519

Install problem: DelphiXE2 and 7.1.2-stable

Hi I tried to install ZeosDBO 7.1.2-stable in Delphi XE2, and at ZParseSQL160's compile i get this: [DCC Fatal Error] ZCore.dpk(1): E2225 Never-build package 'ZCore' must be recompiled [DCC Fatal Error] ZPlain.dpk(33): E2202 Required package 'ZCore' not found Of course i compiled ZCore before ZParse...
by trob
30.08.2010, 11:53
Forum: ZeosLib 7.0 Beta Forum
Topic: DisplayFormat
Replies: 2
Views: 433

Thank you, i will look for it in the Delphi's code.
by trob
30.08.2010, 11:46
Forum: ZeosLib 7.0 Beta Forum
Topic: ParamByName in MySql5
Replies: 6
Views: 781

I did not try it. I find what was the problem. In the old version, i just assign the picture data to the param, and it automaticly add escape chacters where it need. Now, it works if i convert the whole picture to hexadecimal character-pairs, and then assign it to the param or just simple set its va...
by trob
18.07.2010, 16:11
Forum: ZeosLib 7.0 Beta Forum
Topic: ParamByName in MySql5
Replies: 6
Views: 781

Or anyway, how could i save a picture to db?