473,386 Members | 1,997 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Application Generators

I would like to put together a very simple inventory program. When I
ship an item, and edit the quantity; I would like the quantity _on_hand
to auto-decrement, and the quantity_to_reorder to auto-increment.

Also, when the data is displayed in a table format, I would like to be
able to edit the quantity field as I
would in a spreadsheet, just edit that field, without having to change
to an edit-record screen.

It seems like I should be able to do this with an application
generator, but I'm not having any luck. Maybe I give up and code by
hand? It seems that application generators never do exactly what you
want, and even if they do, what about future development?

Still, I have an open mind. If anybody can suggest anything, I will
take a look.

Application generators that I have tried:

dbQwikSite: I found it difficult to get it to work, and very slow. I
had to uninstall Xampp, and install AppServ just to get it to work at
all. I don't know why, maybe Xampp's versions of php/mysql were too
new? I still can not get it to generate php code that I can use.

AppGini: works as advertised, easy to use, inexpensive, and fast. But,
frankly, it doesn't do much. As far as I could see, it doesn't even
offer the basic security of a login. It just displays data, and allows
you to add/delete records. I don't even think you can interactively
edit records. Not much reporting capability.

PHP-Runner: the best so far. Fast, easy, nice looking display, has
basic security, allows editing records. Still does not seem to have
the basic functionallity I'm looking for.

Other app generators that I have looked at, but not tried:

PHP-Peanuts
PHPMaker
phpmysql
DaDaBik
WizzyWeb
Navicat

Again, glad to read any opinions.

Apr 1 '06 #1
3 2652
olap4all

Apr 1 '06 #2
walterbyrd wrote:
I would like to put together a very simple inventory program. When I
ship an item, and edit the quantity; I would like the quantity _on_hand
to auto-decrement, and the quantity_to_reorder to auto-increment.

Also, when the data is displayed in a table format, I would like to be
able to edit the quantity field as I
would in a spreadsheet, just edit that field, without having to change
to an edit-record screen.

It seems like I should be able to do this with an application
generator, but I'm not having any luck. Maybe I give up and code by
hand? It seems that application generators never do exactly what you
want, and even if they do, what about future development?

Still, I have an open mind. If anybody can suggest anything, I will
take a look.

Application generators that I have tried:

dbQwikSite: I found it difficult to get it to work, and very slow. I
had to uninstall Xampp, and install AppServ just to get it to work at
all. I don't know why, maybe Xampp's versions of php/mysql were too
new? I still can not get it to generate php code that I can use.

AppGini: works as advertised, easy to use, inexpensive, and fast. But,
frankly, it doesn't do much. As far as I could see, it doesn't even
offer the basic security of a login. It just displays data, and allows
you to add/delete records. I don't even think you can interactively
edit records. Not much reporting capability.

PHP-Runner: the best so far. Fast, easy, nice looking display, has
basic security, allows editing records. Still does not seem to have
the basic functionallity I'm looking for.

Other app generators that I have looked at, but not tried:

PHP-Peanuts
PHPMaker
phpmysql
DaDaBik
WizzyWeb
Navicat

Again, glad to read any opinions.


Brain 1.0 does wonders.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Apr 2 '06 #3
walterbyrd wrote:
I would like to put together a very simple inventory program. When I
ship an item, and edit the quantity; I would like the quantity _on_hand
to auto-decrement, and the quantity_to_reorder to auto-increment.

Also, when the data is displayed in a table format, I would like to be
able to edit the quantity field as I
would in a spreadsheet, just edit that field, without having to change
to an edit-record screen.

It seems like I should be able to do this with an application
generator, but I'm not having any luck. Maybe I give up and code by
hand? It seems that application generators never do exactly what you
want, and even if they do, what about future development?

Still, I have an open mind. If anybody can suggest anything, I will
take a look.

Application generators that I have tried:

dbQwikSite: I found it difficult to get it to work, and very slow. I
had to uninstall Xampp, and install AppServ just to get it to work at
all. I don't know why, maybe Xampp's versions of php/mysql were too
new? I still can not get it to generate php code that I can use.

AppGini: works as advertised, easy to use, inexpensive, and fast. But,
frankly, it doesn't do much. As far as I could see, it doesn't even
offer the basic security of a login. It just displays data, and allows
you to add/delete records. I don't even think you can interactively
edit records. Not much reporting capability.

PHP-Runner: the best so far. Fast, easy, nice looking display, has
basic security, allows editing records. Still does not seem to have
the basic functionallity I'm looking for.

Other app generators that I have looked at, but not tried:

PHP-Peanuts
PHPMaker
phpmysql
DaDaBik
WizzyWeb
Navicat

Again, glad to read any opinions.

php / mysql?
Apr 2 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

23
by: Francis Avila | last post by:
Below is an implementation a 'flattening' recursive generator (take a nested iterator and remove all its nesting). Is this possibly general and useful enough to be included in itertools? (I know...
9
by: Francis Avila | last post by:
A little annoyed one day that I couldn't use the statefulness of generators as "resumable functions", I came across Hettinger's PEP 288 (http://www.python.org/peps/pep-0288.html, still listed as...
3
by: Carlos Ribeiro | last post by:
As a side track of my latest investigations, I began to rely heavily on generators for some stuff where I would previsouly use a more conventional approach. Whenever I need to process a list, I'm...
3
by: Michael Sparks | last post by:
Hi, I'm posting a link to this since I hope it's of interest to people here :) I've written up the talk I gave at ACCU Python UK on the Kamaelia Framework, and it's been published as a BBC...
0
by: John | last post by:
Hi All, I have written an application generator that allows developers to build business applications for MS SQL Server in just a fraction of the time it used to take. All you need to do is...
6
by: Talin | last post by:
I've been using generators to implement backtracking search for a while now. Unfortunately, my code is large and complex enough (doing unification on math expressions) that its hard to post a...
3
by: Klint Gore | last post by:
Does anyone know of a mailing list for application developers using postgres? It'd probably be more relevant than pgsql-general for my question. Failing that, what do people use to generate...
6
by: walterbyrd | last post by:
I would like to put together a very simple inventory program. When I ship an item, and edit the quantity; I would like the quantity _on_hand to auto-decrement, and the quantity_to_reorder to...
13
by: Martin Sand Christensen | last post by:
Hi! First a bit of context. Yesterday I spent a lot of time debugging the following method in a rather slim database abstraction layer we've developed: ,---- | def selectColumn(self,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.