[fpc-pascal] tiOPF: automapping for m-n relationships

2012-04-01 Thread leledumbo
I have the following tables in sqlite (in create table statement): CREATE TABLE users ( id autoinc_int, name varchar(30), password varchar(30) ); CREATE TABLE roles ( id autoinc_int, name varchar(20) ); CREATE TABLE users_roles ( id autoinc_int, user_id int, role_id int, foreig

Re: [fpc-pascal] MSEide+MSEgui 2.8.2, MSEgit 1.2

2012-04-01 Thread Rainer Stratmann
Am Sunday 01 April 2012 19:27:25 schrieb Martin Schreiber: > Hi, > > MSEide+MSEgui 2.8.2 has been released: If you made it possible to go behind the last character of the line with the cursor as in all modern IDE's I will try it again. See discussion from 13.01.2012. That shoud be relatively eas

[fpc-pascal] Re: Fileread function

2012-04-01 Thread leledumbo
Do you mean if FileRead executed when the file pointer is at the end of file, it would wrap around to the beginning? Or are you asking how to move the file pointer to the beginning of file? -- View this message in context: http://free-pascal-general.1045716.n5.nabble.com/Fileread-function-tp56104

[fpc-pascal] MSEide+MSEgui 2.8.2, MSEgit 1.2

2012-04-01 Thread Martin Schreiber
Hi, MSEide+MSEgui 2.8.2 has been released: http://sourceforge.net/projects/mseide-msegui/files/mseide-msegui/2.8.2/ http://gitorious.org/mseide-msegui There is a new release 1.2 of MSEgit too: http://sourceforge.net/projects/mseuniverse/files/msegit/1_2/ http://gitorious.org/mseuniverse/mseuniv

[fpc-pascal] Fileread function

2012-04-01 Thread Luis Fernando Del Aguila Mejía
Hi, The FileRead function, can move the file pointer at the beginning, when at the end? Thanks. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Win64 and currency

2012-04-01 Thread Honza
2012/3/30 Marco van de Voort : > In our previous episode, Pierre Free Pascal said: >>   if you usee -Aas and -al >> you will see that >> TEST >> is just .quad -10 >> which is wrong of course... >>   Using -10.0 fixes the bug for now if >> you really need this correct fast. >> >>   It would be nice

Re: [fpc-pascal] Win64 and currency

2012-04-01 Thread LacaK
Thanks! I posted comment to: http://bugs.freepascal.org/view.php?id=21091 -Laco. In our previous episode, Pierre Free Pascal said: if you usee -Aas and -al you will see that TEST is just .quad -10 which is wrong of course... Using -10.0 fixes the bug for now if you really need this corre