Search found 4 matches

by skaw
13.06.2012, 09:40
Forum: ZeosLib 7.0 Beta Forum
Topic: [solved] Spanish accents
Replies: 3
Views: 600

Wow...!!!

worked really fine!!! good work!!!

will you merge with oficial trunk???

best regards
skaw
by skaw
13.06.2012, 08:58
Forum: ZeosLib 7.0 Beta Forum
Topic: [solved] Spanish accents
Replies: 3
Views: 600

[solved] Spanish accents

Hi when i do an insert into t_persons (name) values ('áéíóú'); i got an insert into t_persons (name) values ('áéíóú'); on function TZPostgreSQLStatement.ExecuteUpdate(const SQL: string): Integer; var QueryHandle: PZPostgreSQLResult; ConnectionHandle: PZPostgreSQLConnect; begin Result := -1; Con...
by skaw
25.01.2012, 14:31
Forum: 6.6 - stable
Topic: Detecting fields changed on post
Replies: 0
Views: 523

Detecting fields changed on post

Hello i have a problem but i dont know if there is a solution. I have a table with controlling checks and when i post an update i cant detect if the post is correct or not (there is not OnPostAndCheckOk event because the onupdated is trigged before the database check is checked :? ). I would like to...
by skaw
03.12.2007, 18:31
Forum: PostgreSQL
Topic: Creating Database from App using Zeos
Replies: 2
Views: 1525

Something like this... auxZSQLProcessor := TZSQLProcessor.Create(Connection); auxZSQLProcessor.Connection := Connection; auxZSQLProcessor.Script.Text := 'CREATE DATABASE dbname WITH TEMPLATE = template0 ENCODING = ''UTF8'';'; auxZSQLProcessor.Execute; First of all you must create a connection with t...