On Apr 13, 3:08 am, Paulo Coutinho <
pa...@prsolucoes.com> wrote:
> Hi,
>
> I have developed one mysql adapter, but i get some errors.
>
> The error that i get is always when the line is executed:
>
> reader := cmd.ExecuteQuery();
>
> The query is (cmd := FB.Prepare(SQL);):
>
> 'SELECT ID,NAME,CODE FROM user WHERE ID = ?'
>
> To test it you need use my adapter and use a simple load code like
> this:
>
> procedure TestData;
> var
> p: TPerson;
> begin
> p := Session.Load<TPerson>(1);
> p.Free;
> end;
>
> You can see the screenshot here:
>