Handheld Development, Lazarus or Turbo Delphi.Net - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T00:03:15Zhttp://stackoverflow.com/feeds/question/1067025http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1067025/handheld-development-lazarus-or-turbo-delphi-net3Handheld Development, Lazarus or Turbo Delphi.NetDels2009-07-01T02:29:08Z2009-07-02T10:53:08Z
<p>I begin to program some handheld program as hobby, right now i currently have knowledge on Blackberry App (Java), Symbian S60 (PyS60) and J2ME</p>
<p>Something that i wanna learn was Windows Mobile/Pocket PC and iPhone development, but since i don't use Mac so i step to Windows Mobile/Pocket PC development</p>
<p>Here some question:<br />
1. Which is better Lazarus or Turbo Delphi.Net?<br />
2. Do both have some kind support of network access (GPRS, Wi-Fi, HSDPA, etc)?<br />
3. Do both have database access, both remote database and standalone/embed database? like SQL Server 2005 CE?<br />
4. Do i need some driver installed on Windows Mobile/Pocket PC to be able to work with SQL Server 2005 Developer on server i already have?<br /></p>
<p>If possible answer point-by-point</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1067025/handheld-development-lazarus-or-turbo-delphi-net/1067835#10678351Answer by Marco van de Voort for Handheld Development, Lazarus or Turbo Delphi.NetMarco van de Voort2009-07-01T07:57:44Z2009-07-01T08:31:41Z<p>I never tried Turbo Delphi .NET, but afaik CodeGear stopped that line, so I wouldn't start new development in it. I also heard that CF.NET was not officially supported and a bit ackward. As said I never used it, I hope that others will comment.</p>
<p>Lazarus core functionality works, but many more "outer" parts are not always tested on CE, and you will have to find stuff out yourself.</p>
<ol>
<li>Roughly the same as under normal delphi/win23. Can access TCP/IP with Indy10 afaik, but to work with network connections you need api calls</li>
<li>sqlite is sometimes used. In theory all the db drivers should run if their client libraries are available to arm. The DB support should mostly be endian clean. However I don't know which ones are supported.
Sql Server variants are generally not supported by FPC, except via ODBC. And I don't know if CE has that.</li>
<li>Usually you need to have some client lib or a generalized DB connectivity lib ADO/ODBC/JDBC.</li>
</ol>
<p>Browsing the lazarus/fpc wiki for CE topics could be a good next step. If you persist in CF.NET, I would migrate to VS, and not work with TD.NET.</p>
http://stackoverflow.com/questions/1067025/handheld-development-lazarus-or-turbo-delphi-net/1068075#10680751Answer by birger for Handheld Development, Lazarus or Turbo Delphi.Netbirger2009-07-01T09:00:17Z2009-07-01T09:00:17Z<p>If I would develop something for a handheld, I would create a webapplication. Only if you need to access the handheld data (pim, gps, ...) it makes sense to create a local running application.</p>
<p>But if you want to create something to run <em>on</em> the device, I would go for FPC / Lazarus as well. </p>
http://stackoverflow.com/questions/1067025/handheld-development-lazarus-or-turbo-delphi-net/1068263#10682634Answer by Mohammed Nasman for Handheld Development, Lazarus or Turbo Delphi.NetMohammed Nasman2009-07-01T09:44:03Z2009-07-02T10:53:08Z<ol>
<li>Lazarus has form designer built in for WinCE applications, Delphi 4.Net doesn't has one, also CG has stopped developing the Turbo Delphi line, and it's support .Net CF 1.1 only.</li>
</ol>
<p>Maybe using Delphi Prism will be better option, because it's support the latest .net framework, and with the new <a href="http://www.mono-project.com/MonoTouch" rel="nofollow">MonoTouch</a> it could be better option for future development with IPhone too.</p>
<p>Point 2 & 3, I don't have information about them, you could visit Lazarus forums and wiki to have more information, but for Delphi 4.Net it has support for all classes on the .Net framework CF.</p>
<p>4.If I remember correctly, the .Net CF has drivers for SqlServer Mobile edition and Sql Server, for example it has SqlCEConnection for mobile and SqlConnection for Regular Sql server edition.</p>
http://stackoverflow.com/questions/1067025/handheld-development-lazarus-or-turbo-delphi-net/1073225#10732251Answer by Ertugrul Tamer Kara for Handheld Development, Lazarus or Turbo Delphi.NetErtugrul Tamer Kara2009-07-02T08:48:25Z2009-07-02T08:48:25Z<p>Your questions has been answered so I'll reply with my opinions;</p>
<ul>
<li>Lazarus: It gives you power of
native application, but it's not used
widely. Give it a try, see if it fits
your needs on the mobile device.
Perhaps report bugs and help its
development. </li>
<li>Delphi Prism + .NET
CF: Object-pascal alike .NET syntax
-which I do not like but that's just my opinion-. <a href="http://cc.embarcadero.com/item/26379" rel="nofollow">Here's a sample video
to get started</a>. It lacks form
designer for .NET CF so if you stick
with it you'll use WinForms designer.</li>
<li>C# + .NET CF. It has really good
IDE for .NET CF development. This is
how I rolled for mobile device
development and I'm happy with it.
ie, if I have a problem the huge .NET
userbase most likely has the
solution.</li>
</ul>