4
votes
5answers
213 views
Generating UI from DB - the good, the bad and the ugly?
I've read a statement somewhere that generating UI automatically from DB layout (or business objects, or whatever other business layer) is a bad idea. I can also imagine a few good challenges that one …
3
votes
6answers
514 views
How to generate a secure activation string in php?
After user subscribe email to my website. My website will generate an email confirmation and send to them. In the email content, i need to include activation key, something like:
…
2
votes
6answers
134 views
Switching data access strategy far into a project?
In a project we have implemented the data access layer (DAL)
with a visual designer that auto-generates a lot of code
(in our case: strong-typed DataSets and DataSetTableAdapters in .NET).
However, …
2
votes
5answers
229 views
What is a good/free tool to auto generate documentation for VS 2008 Express?
Hi guys,
I'm new to the wonderful world of .net development, and I'm currently using c# 3.0 and I'm wondering is there any good/free/open source tool to auto generate documentation for the project …
2
votes
3answers
271 views
SQL Structure to Store Surveys and Answers - Build Tables and Queries Based on User Data?
I'm a total newbie when it comes to SQL. I'm making a site in ASP.NET for doing surveys. A privileged admin user will be able to build a survey. Then lots of other people will respond to the survey.
…
2
votes
2answers
312 views
Python ORM that auto-generates/updates tables and uses SQLite?
I am doing some prototyping for a new desktop app i am writing in Python, and i want to use SQLite and an ORM to store data.
My question is, are there any ORM libraries that support …
2
votes
3answers
795 views
.NET Generate Sequence Diagrams From Running Code
Is there a tool that can generate sequence diagrams from running .NET code?
1
vote
1answer
23 views
Intellij generate javadoc for methods and classes
Hi.
Is it possible to set up Intellij to generate javadoc for methods and classes, automatically, with @author and @since date ?
I had this feature in Eclipse.
I know, that files have templates and …
1
vote
3answers
46 views
New to Linq - 2008 won’t auto generate classes - n00b alert..
Hello,
I'm new to Linq and Visual web developer 2008 Express. I have read some posts here and Scott Guthrie's on setting up Linq, but I'm a little stuck because the classes aren't auto-generating as …
1
vote
3answers
168 views
Send java object to a rest WebService
Hi,
I'm searching a nice way to send a java object to my rest web service.
It's possible or not ?
For sample I wan't to send an "User" Object to my rest :
public Class User{
private String …
1
vote
2answers
254 views
Automatically generate rows in DB2 with SQL
I'm trying to search the DB2 equivalent of generate_series() (the PostgreSQL-way of generating rows). I obviously don't want to hard-code the rows with a VALUES statement.
select * from …
1
vote
4answers
793 views
Passing parameters to constructor for an AS3 auto-created asset class
I'm creating a MovieClip subclass (let's call it MyClip) that I want to use for several library assets. I'll be instantiating these movie clips from ActionScript code. MyClip has a constructor …
1
vote
1answer
268 views
Inheriting from a UserControl abstract subclass
Hi guys,
I have a set of UserControls that need to have a few similar properties. Thus I have defined an abstract subclass of UserControl that defines these properties and updated the .xaml.cs and …
1
vote
1answer
392 views
Generate a C# delegate method stub
Anyone know how to automatically create a delegate stub method?
In WPF it seems im constantly having to pass delegates around. i would like to be able to type a method name that doesnt exist and have …
0
votes
1answer
428 views
Sqlite insert into with unique names, getting id
I have a list of strings to insert into a db. They MUST be unique. When i insert i would like their ID (to use as a foreign key in another table) so i use last_insert_rowid. I get 2 problems.
If i …
