Hello Smalltalkers
I'm writing a new PostgreSQLEXDI as my first Smalltalk program - I think the very low level stuffs are done, but I couldn't get a test connection for the cincom public store. Because my code uses PostgreSQL 8.1+ APIs, it might not work with old PostgreSQL servers. Anyone knows the store's PostgreSQL is 8.1+ or not? Also, is anyone interested in such a package? (If there is any public interest, I may prepare a package and make its license free) Cheers - Jong-won Choi _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
Jong-won Choi schrieb:
> Hello Smalltalkers > > I'm writing a new PostgreSQLEXDI as my first Smalltalk program - I think > the very low level stuffs are done, but I couldn't get a test connection > for the cincom public store. > > Because my code uses PostgreSQL 8.1+ APIs, it might not work with old > PostgreSQL servers. Anyone knows the store's PostgreSQL is 8.1+ or not? > > Also, is anyone interested in such a package? (If there is any public > interest, I may prepare a package and make its license free) the obvious question is "why?", since there is already a PostgreSQLEXDI package available, which has the advantage of being (a) native (no libraries involved) and (b) being in use successfully for years _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
On Mar 30, 2008, at 1:01 PM, Holger Kleinsorgen wrote: > Jong-won Choi schrieb: >> Hello Smalltalkers >> >> I'm writing a new PostgreSQLEXDI as my first Smalltalk program - I >> think >> the very low level stuffs are done, but I couldn't get a test >> connection >> > the obvious question is "why?", since there is already a > PostgreSQLEXDI > package available, which has the advantage of being (a) native (no > libraries involved) and (b) being in use successfully for years I'd say that is already answered in his original post. The obvious counterquestion is: Why do people still write 'hello world' programs? ;-) R - _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
In reply to this post by Jong-won Choi-2
On 30/03/2008, Jong-won Choi <[hidden email]> wrote:
> I'm writing a new PostgreSQLEXDI as my first Smalltalk program - I think > the very low level stuffs are done, but I couldn't get a test connection > for the cincom public store. Hi there, Have you implemented the drivers for version 3.0 of the PostgreSQL FE/BE protocol version down to socket level? If so, great stuff! That's been on my list of things to do for ages, but I had no pressing motivation. The documentations says that version 3.0 was first released on PostgreSQL 7.4. I don't know what back end Cincom are using but I know they upgraded not too long ago so I would be surprised if the version was less than 7.4. Have you been able to test again many versions of PostgreSQL so far? In my testing I tend to use VMWare with different versions of the back end installed. All the best, Bruce -- Make the most of your skills - with OpenSkills http://www.openskills.org/ _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
In reply to this post by Jong-won Choi-2
On Mar 30, 2008, at 12:05 PM, Jong-won Choi wrote: > Hello Smalltalkers > > I'm writing a new PostgreSQLEXDI as my first Smalltalk program - I > think > the very low level stuffs are done, but I couldn't get a test > connection > for the cincom public store. > > Because my code uses PostgreSQL 8.1+ APIs, it might not work with old > PostgreSQL servers. Anyone knows the store's PostgreSQL is 8.1+ or > not? $ psql -U guest -h store.cincomsmalltalk.com -d store_public -c 'select version();' Password for user guest: version ------------------------------------------------------------------------------------------------------------------------- PostgreSQL 8.0.7 on i386-redhat-linux-gnu, compiled by GCC i386- redhat-linux-gcc (GCC) 4.0.2 20051125 (Red Hat 4.0.2-8) (1 row) Success! Reinout ------- > > > Also, is anyone interested in such a package? (If there is any public > interest, I may prepare a package and make its license free) > > Cheers > > - Jong-won Choi > > > _______________________________________________ > vwnc mailing list > [hidden email] > http://lists.cs.uiuc.edu/mailman/listinfo/vwnc > _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
Free forum by Nabble | Edit this page |