Re: [Freedos-user] MySQL

2013-08-16 Thread Georg Potthast
I ported SQLite to DOS using djgpp. Don't know if this is useful for your 
project. You find the package here:

http://nanox-microwindows-nxlib-fltk-for-dos.googlecode.com/files/sqlite-3.5.6.zip

I did not use the package, just compiled it with djgpp. So I cannot provide 
support for it.
The reason for porting SQLite was this thread:

https://groups.google.com/forum/#!searchin/comp.os.msdos.djgpp/sqlite|sort:date/comp.os.msdos.djgpp/NbqKpgIghp4/ac-UdE1JoQAJ

Maybe you can contact Mahesh for further information. It did work for him.

Georg


--
Get 100% visibility into Java/.NET code with AppDynamics Lite!
It's a free troubleshooting tool designed for production.
Get down to code-level detail for bottlenecks, with 2% overhead. 
Download for free and get started troubleshooting in minutes. 
http://pubads.g.doubleclick.net/gampad/clk?id=48897031iu=/4140/ostg.clktrk
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] MySQL

2013-08-16 Thread Chris Evans
you need to use a ssh telnet program.
i use a program called ssh secure shell, but there are a bunch of them. And
I use it to connect to
SQL server on port 3306 I believe.

http://dev.mysql.com/doc/mysql/en/http://dev.mysql.com/doc/mysql/en/mysql.html
mysql.html

http://dev.mysql.com/doc/mysql/en/mysql.html
On Friday, August 16, 2013, Santiago Almenara wrote:

 Hi.

 I need to access a MySQL server (Ubuntu server) from my DOS program.


 I am converting one Linux Ncurses program in my office to DOS and
 PDcurses. Mostly everything have been easily recompiled with DJGPP.

 Is it possible to access MySQL from DOS ?

 Thanks in advance,

 Santiago

 Sent from my iPhone


 --
 Get 100% visibility into Java/.NET code with AppDynamics Lite!
 It's a free troubleshooting tool designed for production.
 Get down to code-level detail for bottlenecks, with 2% overhead.
 Download for free and get started troubleshooting in minutes.
 http://pubads.g.doubleclick.net/gampad/clk?id=48897031iu=/4140/ostg.clktrk
 ___
 Freedos-user mailing list
 Freedos-user@lists.sourceforge.net javascript:;
 https://lists.sourceforge.net/lists/listinfo/freedos-user

--
Get 100% visibility into Java/.NET code with AppDynamics Lite!
It's a free troubleshooting tool designed for production.
Get down to code-level detail for bottlenecks, with 2% overhead. 
Download for free and get started troubleshooting in minutes. 
http://pubads.g.doubleclick.net/gampad/clk?id=48897031iu=/4140/ostg.clktrk___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] MySQL

2013-08-16 Thread Mateusz Viste
Hi,

I packaged your SQLite build in FDNPKG repositories, a few weeks ago:
http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/distributions/1.1/repos/util/sqlite.zip

I tested it back then, and I do confirm it works okay (I created a small 
database with a few tables, and filled them with data, then was able to 
read the data back).

Although I think that it will be of no help to the OP, who (if I 
understood correctly) needs specifically to access his MySQL server over 
the network... which I doubt is feasible without development to port the 
mysql cli client to djgpp+Watt32... (another way is sshing to the 
server, as suggested by Chris, but then it requires access to a system 
account, which is not always an option).

Mateusz




On 08/16/2013 06:20 PM, Georg Potthast wrote:
 I ported SQLite to DOS using djgpp. Don't know if this is useful for your
 project. You find the package here:

 http://nanox-microwindows-nxlib-fltk-for-dos.googlecode.com/files/sqlite-3.5.6.zip

 I did not use the package, just compiled it with djgpp. So I cannot provide
 support for it.
 The reason for porting SQLite was this thread:

 https://groups.google.com/forum/#!searchin/comp.os.msdos.djgpp/sqlite|sort:date/comp.os.msdos.djgpp/NbqKpgIghp4/ac-UdE1JoQAJ

 Maybe you can contact Mahesh for further information. It did work for him.

 Georg


 --
 Get 100% visibility into Java/.NET code with AppDynamics Lite!
 It's a free troubleshooting tool designed for production.
 Get down to code-level detail for bottlenecks, with 2% overhead.
 Download for free and get started troubleshooting in minutes.
 http://pubads.g.doubleclick.net/gampad/clk?id=48897031iu=/4140/ostg.clktrk
 ___
 Freedos-user mailing list
 Freedos-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freedos-user



--
Get 100% visibility into Java/.NET code with AppDynamics Lite!
It's a free troubleshooting tool designed for production.
Get down to code-level detail for bottlenecks, with 2% overhead. 
Download for free and get started troubleshooting in minutes. 
http://pubads.g.doubleclick.net/gampad/clk?id=48897031iu=/4140/ostg.clktrk
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] MySQL

2013-08-16 Thread Mateusz Viste
Hi,

I packaged your SQLite build in FDNPKG repositories as well, a few weeks 
ago:
http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/distributions/1.1/repos/util/sqlite.zip

I tested it back then, and I do confirm it works okay (I created a small 
database with a few tables, and filled them with data, then was able to 
read the data back).

Altough I think that it will be of no help to the OP, who (if I 
understood correctly) needs specifically to access his MySQL server over 
the network... which I doubt is feasible without development to port the 
mysql cli client to djgpp+Watt32...

Mateusz




On 08/16/2013 06:20 PM, Georg Potthast wrote:
 I ported SQLite to DOS using djgpp. Don't know if this is useful for your
 project. You find the package here:

 http://nanox-microwindows-nxlib-fltk-for-dos.googlecode.com/files/sqlite-3.5.6.zip

 I did not use the package, just compiled it with djgpp. So I cannot provide
 support for it.
 The reason for porting SQLite was this thread:

 https://groups.google.com/forum/#!searchin/comp.os.msdos.djgpp/sqlite|sort:date/comp.os.msdos.djgpp/NbqKpgIghp4/ac-UdE1JoQAJ

 Maybe you can contact Mahesh for further information. It did work for him.

 Georg


 --
 Get 100% visibility into Java/.NET code with AppDynamics Lite!
 It's a free troubleshooting tool designed for production.
 Get down to code-level detail for bottlenecks, with 2% overhead.
 Download for free and get started troubleshooting in minutes.
 http://pubads.g.doubleclick.net/gampad/clk?id=48897031iu=/4140/ostg.clktrk
 ___
 Freedos-user mailing list
 Freedos-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freedos-user



--
Get 100% visibility into Java/.NET code with AppDynamics Lite!
It's a free troubleshooting tool designed for production.
Get down to code-level detail for bottlenecks, with 2% overhead. 
Download for free and get started troubleshooting in minutes. 
http://pubads.g.doubleclick.net/gampad/clk?id=48897031iu=/4140/ostg.clktrk
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user