Hi,
I work on the JBJF Project on SourceForge and we want to improve on the Database Access for this framework. Currently, it's semi-flexible, but the access is done at the Task level.
We'd like to setup a simple Interface of some kind that's generic in nature and can host the database access to/from JBJF. Thus, Framework classes don...
What frameworks are targeted specifically at building so-called "CRUD Admin UIs" (basically, a set of screens for editing related SQL tables), whether Web Apps or Thick Clients.
The ones I know of:
ASP.NET DynamicData
Django Admin (from Nick's answer below)
General purpose frameworks like Ruby-on-Rails and ASP.NET MVC don't count.
...
Just looking a good framework to develop windows mobile application for windows mobile 6.0
I know that there is MCSF but it seems a bit heavy ......
I will be developing in C#, Compact Framework.
...
Our team is new to web application development. We have been developing windows/Linux based applications using Java. The team also has extensive experience with Perl.
The new assignment is to develop an internal private-cloud web application. It is rather confusing looking at all the web application development frameworks: Ruby on Rail...
Hi,
We are working on an ASP.NET application with SQL Server 2008 as backend and we are NOT using LINQ.
In the application all database calls will be performed using/through stored procedures. So would anyone please suggest any free and best Data Access Framework which could do these jobs.
Many Thanks,
Regards.
Bhavna.
...
Hi there,
I am currently working on 2D browser game.
After putting the ZendFramework away, my team and I decided to write our own framework.
Now we are helpless, because none of us has ever developed anything similar, except CMS frameworks etc.
The language is PHP and the database driver used for it is MySQL(i, PDO, etc)
Can you giv...
Hi,
I am making an interface:
ICollection<EF> FromDTOType(List<DTO> dto);
which takes a DTO object and converts it to a ICollection. I would
like to have done the following instead, but it is not possible since it is not an interface.
System.Data.Collection.EntityCollection<EF> FromDTOType(List<DTO> dto);
Is possible to easily c...
Hey,
I had to start writing some unit tests, using QualityTools.UnitTestFramework, for a web service layer we have developed, when my approach seemed to be incorrect from the beginning.
It seems that unit tests should be able to run in any order and not rely on other tests.
My initial thought was to have the something similar to the f...
Is there any way by looking at a site (maybe through viewing source) to see what underlying technologies were used to develop it? I'm looking specifically to see what frameworks (if any) are being used, but other details would be nice as well.
...
I am looking for an open source framework to build a proprietary protocol onto (Agent/Client talks to a Receiver/Server that stuffs things into a SQL database).
I need session handling (ie login/logout) and some kind of encryption.
I found the Spread Framework which looks great, but does not appear to support authentication or encryption...
I'm renovating an existing ASP.Net web-app which has a full-fledge functional SQL 2005 DB as its backend. By full--fledge functional I mean that there're many things (infact almost ALL the CRUD operations) that are being handled from within the DB using SP.
So, my first question is that is an extensive usage of SP good based on paramete...
Hello,
I'm building a site using symfony php framework.
I have a link in my page which leads to page X :
<a href="/X">test</a>
well, the problem is, under my development environment, the link works and the link points to
http://localhost/web/frontend%5Fdev.php/X
but when Im using the production page (index.php)
the link turns out ...
I am attempting to set up my own project using a third party library (MPOAuthConnection) for connecting to an oauth REST API.
Steps I've gone through thus far:
Downloaded source for MPOAuthConnection.
Built source and had a resulting MPOAuth.framework in the Product tab.
Opened my existing project and dragged the MPOAuth.framework in...
Currently, I am working on restructuring an existing code base. I'm new to php frameworks, but I do know in general how MVC works.
Right now, there is one controller file, one model file, and thirty view files.
Should every model correspond to a table?
Should every view correspond to an html page?
What about the controller? How can I...
Hi,
I'm new to iPhone programming and I'm trying to use CHDataStructures in my project. But I'm running into some issues:
When I directly try to build it right after download I get the error "Foundation/Foundation.h" no such file or directory. The Active SDK is "Use Base SDK" and the active architecture is x86_64. I believe I should s...
I have a custom framework that, following the advice in Apple's Framework Programming Guide >> Installing your framework I install in /Library/Frameworks. I do this by adding a Run Script build phase with the following script:
cp -R build/Debug/MyFramework.framework /Library/Frameworks
In my projects I then link against /Library/Fram...
I have dabbled with various AJAX frameworks, namely GWT, Dojo, Ext-JS, jQuery UI. I am interested in understanding what AJAX frameworks best meet the following criteria:
- Most easy to learn
- Most painless to keep maintained
- Most reputable, stable, founded & grounded
- Easiest to read and share
- Integrates well with J2EE
...
hey fellas,
I have a site built in symfony.
However, I'm putting some routing rules :
resgister:
url: /register
param: { module: register, action: index }
and I put a link :
link_to('register - here','register')
but this link points to http://www.mydomain.com/register
instead of http://www.mydomain.com/index.php/register
s...
I recently discovered the PHP framework Kohana (which is awesome) and was reading a thread about using it in conjunction with a templating engine such as Smarty or Twig. My question is why bother? Surely an MCV framework, by definition, is a templating engine. Even "raw" PHP is, arguably, a templating engine. What possible benefits are t...
Has anyone heard of a Ruby MVC framework for Apps/Scripts?
When Rails appeared - it was a revolutionary tool because it brought MVC to the masses of web developers and for once forced them to use design patterns and conventions. I'm looking for something like that but for scripting mundane admin tasks that are to be ran from cron or by ...