comp.lang.ada
 help / color / mirror / Atom feed
* odbc integer binding to column
@ 2010-07-06 10:12 tonyg
  2010-07-06 12:18 ` Dmitry A. Kazakov
  0 siblings, 1 reply; 5+ messages in thread
From: tonyg @ 2010-07-06 10:12 UTC (permalink / raw)


Does anyone have any examples of this. I have examined the demo
closely supplied with the gnade package but I suspect my column is not
correctly bound and am seeking an example where it know that it is
retrieving the right value.



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: odbc integer binding to column
  2010-07-06 10:12 odbc integer binding to column tonyg
@ 2010-07-06 12:18 ` Dmitry A. Kazakov
  2010-07-06 13:13   ` tonyg
  0 siblings, 1 reply; 5+ messages in thread
From: Dmitry A. Kazakov @ 2010-07-06 12:18 UTC (permalink / raw)


On Tue, 6 Jul 2010 03:12:15 -0700 (PDT), tonyg wrote:

> Does anyone have any examples of this. I have examined the demo
> closely supplied with the gnade package but I suspect my column is not
> correctly bound and am seeking an example where it know that it is
> retrieving the right value.

http://www.dmitry-kazakov.de/ada/components.htm

It uses GNADE ODBC in order to implement a persistency layer. The code
makes Bind_Parameter and Bind_Result. It also defines a thicker binding
upon GNADE ones in order to encapsulate handles to environment, command etc
into controlled objects. See gnu-db-sqlcli-api.ads

-- 
Regards,
Dmitry A. Kazakov
http://www.dmitry-kazakov.de



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: odbc integer binding to column
  2010-07-06 12:18 ` Dmitry A. Kazakov
@ 2010-07-06 13:13   ` tonyg
  2010-07-06 21:50     ` tonyg
  0 siblings, 1 reply; 5+ messages in thread
From: tonyg @ 2010-07-06 13:13 UTC (permalink / raw)


On Jul 6, 1:18 pm, "Dmitry A. Kazakov" <mail...@dmitry-kazakov.de>
wrote:
> On Tue, 6 Jul 2010 03:12:15 -0700 (PDT), tonyg wrote:
> > Does anyone have any examples of this. I have examined the demo
> > closely supplied with the gnade package but I suspect my column is not
> > correctly bound and am seeking an example where it know that it is
> > retrieving the right value.
>
> http://www.dmitry-kazakov.de/ada/components.htm
>
> It uses GNADE ODBC in order to implement a persistency layer. The code
> makes Bind_Parameter and Bind_Result. It also defines a thicker binding
> upon GNADE ones in order to encapsulate handles to environment, command etc
> into controlled objects. See gnu-db-sqlcli-api.ads
>
> --
> Regards,
> Dmitry A. Kazakovhttp://www.dmitry-kazakov.de

Thanks Dmitry



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: odbc integer binding to column
  2010-07-06 13:13   ` tonyg
@ 2010-07-06 21:50     ` tonyg
  2010-07-07 17:27       ` tonyg
  0 siblings, 1 reply; 5+ messages in thread
From: tonyg @ 2010-07-06 21:50 UTC (permalink / raw)


On 6 July, 14:13, tonyg <tonytheg...@googlemail.com> wrote:
> On Jul 6, 1:18 pm, "Dmitry A. Kazakov" <mail...@dmitry-kazakov.de>
> wrote:
>
>
>
>
>
> > On Tue, 6 Jul 2010 03:12:15 -0700 (PDT), tonyg wrote:
> > > Does anyone have any examples of this. I have examined the demo
> > > closely supplied with the gnade package but I suspect my column is not
> > > correctly bound and am seeking an example where it know that it is
> > > retrieving the right value.
>
> >http://www.dmitry-kazakov.de/ada/components.htm
>
> > It uses GNADE ODBC in order to implement a persistency layer. The code
> > makes Bind_Parameter and Bind_Result. It also defines a thicker binding
> > upon GNADE ones in order to encapsulate handles to environment, command etc
> > into controlled objects. See gnu-db-sqlcli-api.ads
>
> > --
> > Regards,
> > Dmitry A. Kazakovhttp://www.dmitry-kazakov.de
>
> Thanks Dmitry

I think I might have a going using your library, the more I look at
it, the more I like it :)



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: odbc integer binding to column
  2010-07-06 21:50     ` tonyg
@ 2010-07-07 17:27       ` tonyg
  0 siblings, 0 replies; 5+ messages in thread
From: tonyg @ 2010-07-07 17:27 UTC (permalink / raw)


On 6 July, 22:50, tonyg <tonytheg...@googlemail.com> wrote:
> On 6 July, 14:13, tonyg <tonytheg...@googlemail.com> wrote:
>
>
>
>
>
> > On Jul 6, 1:18 pm, "Dmitry A. Kazakov" <mail...@dmitry-kazakov.de>
> > wrote:
>
> > > On Tue, 6 Jul 2010 03:12:15 -0700 (PDT), tonyg wrote:
> > > > Does anyone have any examples of this. I have examined the demo
> > > > closely supplied with the gnade package but I suspect my column is not
> > > > correctly bound and am seeking an example where it know that it is
> > > > retrieving the right value.
>
> > >http://www.dmitry-kazakov.de/ada/components.htm
>
> > > It uses GNADE ODBC in order to implement a persistency layer. The code
> > > makes Bind_Parameter and Bind_Result. It also defines a thicker binding
> > > upon GNADE ones in order to encapsulate handles to environment, command etc
> > > into controlled objects. See gnu-db-sqlcli-api.ads
>
> > > --
> > > Regards,
> > > Dmitry A. Kazakovhttp://www.dmitry-kazakov.de
>
> > Thanks Dmitry
>
> I think I might have a going using your library, the more I look at
> it, the more I like it :)

I used the library to implement the database project I was doing, very
useful, it simplifies the gnade odbc a lot, I can recommend it  to
others searching for a thicker binding than gnade odbc.



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-07-07 17:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-07-06 10:12 odbc integer binding to column tonyg
2010-07-06 12:18 ` Dmitry A. Kazakov
2010-07-06 13:13   ` tonyg
2010-07-06 21:50     ` tonyg
2010-07-07 17:27       ` tonyg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox