Search found 61 matches

by jeremicm
11.04.2011, 09:27
Forum: 6.6 - stable
Topic: Zeos and SQLite
Replies: 2
Views: 612

get sqlite3.dll from sqlite site for a start... you don't need to copy it to windows folder, it will work if you copy dll to application folder...
by jeremicm
05.04.2011, 10:21
Forum: SQLite
Topic: sql error file is encrypted or not database error??
Replies: 2
Views: 1676

bad news for my app :(
thnx...
by jeremicm
24.03.2011, 12:49
Forum: 6.6 - stable
Topic: :sorry: Database Connect Component is not Assigned delphi 7
Replies: 2
Views: 1571

Adding Conf.ZQuery.Close on top is good idea...
by jeremicm
05.03.2011, 19:11
Forum: SQLite
Topic: sql error file is encrypted or not database error??
Replies: 2
Views: 1676

sql error file is encrypted or not database error??

Hi everyone. can some one help me with this? When i try to exec sql query on sqlite2 database i get "sql error file is encrypted or not database". When i exec it on sqlite3 file everything is ok... sqlite2 database has only one table with few fields (it's created for connectivity test). I ...
by jeremicm
18.02.2011, 11:29
Forum: 6.6 - stable
Topic: Mysql DateFields
Replies: 2
Views: 439

i don't have experience with lazarus, but on windows, i should go with TDateTimePicker... i bet there's one on lazarus...

edits are very bad way to enter TDateTime...
by jeremicm
30.09.2010, 23:22
Forum: ZeosLib 7.0 Beta Forum
Topic: download latest build?
Replies: 1
Views: 419

download latest build?

can someone post link to lastest zeos build?
thnx
by jeremicm
03.09.2010, 13:35
Forum: ZeosLib 7.0 Beta Forum
Topic: XE is here...
Replies: 2
Views: 910

XE is here...

Anyone tried Zeos 7 on new delphi yet?
by jeremicm
17.08.2010, 12:15
Forum: ZeosLib 7.0 Beta Forum
Topic: What's wrong with my code? SQL syntax error????
Replies: 1
Views: 334

found it...

need to use ParamByName.AsAnsiString instead of ParamByName.AsWideString...
by jeremicm
17.08.2010, 11:52
Forum: ZeosLib 7.0 Beta Forum
Topic: What's wrong with my code? SQL syntax error????
Replies: 1
Views: 334

What's wrong with my code? SQL syntax error????

hello, can some one help me with this? when i execute this code i get "SQL syntax error near ')'" for some reason... when i change ParamByName.AsWideString to ParamByName.Value, my comand execute fine without errors.... table in my database is in utf8 with one text and one varchar field......
by jeremicm
12.08.2010, 11:32
Forum: 6.6 - stable
Topic: how to use TZQuery with multi statement sql string
Replies: 4
Views: 1046

I think you can send every non select in the same query, call execsql and then set your select statment and open it. You can, but from my experience, it's safer to exec them one by one... sometimes (when queries are to long or there is to many of them) some of queries won't execute and there's no e...
by jeremicm
11.08.2010, 14:23
Forum: 6.6 - stable
Topic: how to use TZQuery with multi statement sql string
Replies: 4
Views: 1046

You can't "drop table if exists..." with open... also can't create table with open... try this... drop table if exists tempTable; execsql; create temporary table tempTable( id char(10) not null primary key, value1 float null, value2 float null); execsql; insert into tempTable (id, value1, ...
by jeremicm
15.07.2010, 14:53
Forum: 6.6 - stable
Topic: Mysql 5 + Zeos 6.6.6 + Delphi 7
Replies: 2
Views: 858

i have same problem with d2007... it looks like '00:00:00' value is interpreted as null somewhere...
by jeremicm
30.06.2010, 09:41
Forum: ZeosLib 7.0 Beta Forum
Topic: Error Install DELPHI 2010
Replies: 2
Views: 711

I think you need to copy all bpl files from build folder to windows\system(32/64)... That's how i solved problem on win7/D2010...
by jeremicm
08.06.2010, 11:26
Forum: 6.6 - stable
Topic: Create database by code
Replies: 3
Views: 736

Code: Select all

ZQuery1.SQL.Add('CREATE DATABASE insert-database-name-here');
ZQuery1.ExecSQL;
by jeremicm
05.06.2010, 09:56
Forum: 6.6 - stable
Topic: MySQL Range Check Error table with many fields
Replies: 2
Views: 435

From my knowledge, if you have a table wih 256 fields, something is teribly wrong with your database design....