The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
29 views

not-null error although generated value

I am using hibernate 3.6.3 and have a column in my bean which is annotated by one of the following ways (tried both and none worked): @GeneratedValue(strategy = GenerationType.AUTO) or ...
0
votes
0answers
63 views

Segmentation fault (`core 'generated)

I'm doing a college exercise using classes list and  node. When I run it on Windows using geany shows me the correct result (which tells me that the code is fine), the problem is that eventually I get ...
0
votes
3answers
35 views

Resource folder duplicated automatically in android

I just added a new xml file to my android project and started getting the error 'R cannot be resolved to a variable'. There are lot of questions and answers when I google it and also in stack ...
1
vote
1answer
110 views

Maven: How do I get sources from generated-sources into the source jar

I have a project, which merely parses a wsdl and generates code, which I then pack in a jar and reference in other modules. I tried mvn source:jar-no-fork install it worked, it produced a ...
0
votes
1answer
33 views

Usage of @Generated annotation

I'm gonna ask may be a little philosophic question. There's annotation in Java - @Generated. I want to understand a good style of using it. For example, if I've created implementation of ...
-1
votes
1answer
34 views

gen [Generated Java Fille] [closed]

Good Evening, My project cannot be export in 64 bit PC as there is unsolved problem in gen [Generated Java Fille] part.This is the picture.It can be run yesterday on 32 bit PC.Is there any ...
0
votes
1answer
58 views

java generated pdf android download

I'm sending data through POST to a java file that generates a pdf and outputs: response.setContentType("application/pdf"); When I try this on an android device, it downloads a blank pdf rather than ...
0
votes
1answer
57 views

LINQ on EF generated class

I have this classes on EF from database public partial class STUDENT { public short STUDENTID { get; set; } public string NAME { get; set; } public string FAMILY { get; set; } public ...
0
votes
0answers
75 views

MyBatis update for insert in generated code

So in my mapper xmls I'm seeing this: <!-- Define insert SQL statement using iBatis update --> <update id="someId" parameterType="com.wierdo.funkychicken.ArgleBargle"> INSERT ...
0
votes
3answers
75 views

How do I generate a random 2D map for an iOS application?

I would like to be able to generate random terrain and store it in a file, but I'm not sure of the file type or how to generate it. I'm not really sure where to start and would appreciate any advice. ...
0
votes
2answers
48 views

Hibernate: inserting an entity with custm id in the case: strategy = GenerationType.AUTO

Hib just ignoring an id setting if that strategy take a place. Are there any ways to avoid that and save the strategy? @Id @GeneratedValue(strategy = GenerationType.AUTO) @Column(name = "id") ...
0
votes
0answers
13 views

Do User Generated Objects allow interaction with og:title and og:description

following the description at http://developers.facebook.com/games/opengraph/ - point 6. User Generated Objects I understand that the app can generate an indyvidual image for the achievement. My ...
0
votes
0answers
66 views

Generate input form for database table

Are there any components written to generate input form (like form when we manually populate database) for given table (I mean this form must be generated at runtime) in WinForm or/and ASP.NET/MVC ?
2
votes
2answers
169 views

Generate sequence of numbers prefix with an alphabet

I would like to generate a sequence of numbers as "A0000"(ie.. an alphabet followed by 4numbers not randomly generated numbers). I have gone through this article which is done with Sql Server ...
0
votes
2answers
128 views

jquery generated from custom control not working after postback

I am creating a custom control to generate jQuery validation scripts for controls whose validation rules are dependant on configuration and therefore frequently changing. One of the requirements is ...
0
votes
2answers
91 views

Another thread is created after run method of thread finishes

I have a class extending Thread class as follows. public class RemoteDataSynchTaskProcessor extends Thread { private GDRType taskGDR; public RemoteDataSynchTaskProcessor(GDRType taskGDR) { ...
-3
votes
1answer
936 views

print report generated by php code [duplicate]

Possible Duplicate: Generate PDF report from php I am building a database app for a client in PHP/mySQL. There are several dynamic reports that are generated. The client would like his ...
0
votes
0answers
133 views

Excluding columns from Entity Framework

I'm trying to integrate EF against an existing database and facing issues with the INSERT statements being generated. The 3rd party database includes a bunch of triggers on every table which go off ...
-1
votes
1answer
276 views

drupal custom block module: how to display dynamic generated html from hook_block_view(…)?

i would like to output dynamic generated html content instead of the translatable message but i can't make it work: function custom_logo_module_block_view($delta = '') { // don't worry about ...
0
votes
1answer
174 views

Force download from string

SOLVED: Look at this comment! I have this php page echoing some xml data, which the user should save. I want the page to automatically open the "Save as" window, since the page downloading the data ...
0
votes
1answer
102 views

How netty's html-style user guide doc generated?

I am reading The Netty Project 3.x User Guide and wondering how the doc generated, markdown or something else?
0
votes
1answer
321 views

Eclipse not creating main.xml with adt plugin

I am working on windows 7 and I am trying to create an app. I followed the my first app procedure on the android site (i have also done this in windows xp at work and it was fine) but now something is ...
0
votes
1answer
184 views

Location of the proxy class generated by Spring AOP

Just for the sake of learning and understanding proxies, I wanted to see the proxy class generated by Spring AOP. It was not present in the classes folder generated by Eclipse. Can somebody tell me ...
3
votes
1answer
67 views

When generated symbols are used in clojure?

When is it appropriate to use generated symbols(varname#) in clojure? What are the specific examples?
0
votes
1answer
292 views

Streaming a rails generated response from unicorn through nginx

My Rails application generates a ~10MB response dynamically like so: self.status_code = 200 self.response-body = Enumerator.new { |y| ... } Starting the application in development mode via ...
1
vote
0answers
144 views

Is there a plugin for wordpress with functionality of user generated content? [closed]

I need a plugin with these functionalities : Find Friends (Google, Facebook, etc.) Bookmarks Compliments Rate reviews Flag reviews Photo and Video (upload) Events Follow other friends?
6
votes
3answers
1k views

Re-Use types when generating WCF Client Contract Programmatically

Got an app with plugins that generates the WCF Client Contract programmatically and then hooks it up to the plugins interfaces, however im struggling to work out how to get the generated contract to ...
0
votes
1answer
870 views

@Generated Annotation, how do we use it?

I recently read an article talking about the Java annotations, and on this latter comes the @Generated one. They say that it is used for automatically generate code. Could someone explain me that in ...
0
votes
1answer
142 views

Clear dynamically generated images

This is my current demo.I am trying to load images dynamically and now I would like to know how do I remove all the images from all the pages with a click of button. Here is my code: $(function ...
2
votes
1answer
267 views

Batch Insert with generated keys deals duplicate entry on unique

I am using MySql with JDBC...the below is my table definition CREATE TABLE `A` ( `id` int(255) NOT NULL AUTO_INCREMENT, `type` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, PRIMARY ...
0
votes
2answers
140 views

how can a php generated image have a .png extension?

I am the owner of a minecraft server and got fed up with sites that generate png banners with live contents (getting that content by plugins i must install). So I tried to make mine :) all fine and ...
0
votes
1answer
496 views

DB2 GENERATED IDENTITY HIBERNATE

I am using DB2 GENERATED IDENTITY to auto-increment value for a column. The column is not a primary key column. I am not sure how to configure the field in the hibernate mapping class. Please help.
1
vote
3answers
204 views

ASP.NET ListBox - Condense generated html

I have an ASP.NET page that has multiple (11) ListBox controls on. Some of these ListBoxes can have many options (100 or more). The issue I have is that the response size of the page is 106kb which ...
-1
votes
3answers
209 views

PHP Random Variable Names [closed]

Hi I'm really new to programming I mean really new so before answering, think in the mind of a programming n00b! Anyway, more to the point in PHP I'm trying to create an account system so every time ...
0
votes
0answers
300 views

Persistence errors using @GeneratedValue for primary key

I'm new to JEE and having persistence issues with @GeneratedValue. I'm using EclipseLink 2.0 for persistence, connecting to a PostgreSQL database and running the app on Glassfish 3. I have a table in ...
1
vote
1answer
866 views

Adding custom header to generated SOAP proxy

I have generated a proxy class from a wsdl file (C# VS 2008) The webservice expects an element within the soap header. When I try to add this element using proxy.RequestSoapContext.Envelope.Header I ...
0
votes
1answer
191 views

PHP: Using randomly generated and integrating a retweet/share button

I am trying to create a randomly generated phrase that can easily be shared amongst social media websites, specifically twitter. I am using the following PHP code to generate a random phrase. This ...
1
vote
1answer
638 views

How to Create Model from Scratch

I am working to generate terrain for our project, something that will be contained in the Model class that I can draw, but I new class would be alright since I may need to look inside for specific ...
1
vote
2answers
159 views

Include generated files automatically on hg archive

I have a huge Mercurial Repository with a gerated file called ".version". This file is automatically generated with a hook each time a commit is made or an update is done. However this file is ...
0
votes
1answer
57 views

QMAKE : Generated VS Project and Ampersand

I use QMAKE to generate a Visual Studio Project which contain a path with whitespaces, ex : C:\Program Files... I need to add the &quot; tag (the 6 characters html tag and not the real quote, ...
-2
votes
1answer
328 views

How to get Generated Source code of a web page with Java

I searched a lot, but "Google" didn't help me much. I want to get all the generated source from a web page with Java (all the scripts, html, ...), something like Web Developer(extension for firefox) ...
0
votes
1answer
338 views

Creating weekly and month graphs using SQL and php for site usage

So i'm building an statistics section for a website i'm building for work (managers request). i have a functioning code for a '24 hour' graph. The graph code i have works perfectly but i'm having ...
2
votes
1answer
618 views

Getting Generated Always Columns list from DB2

Is there any way I get all column names and assoicated table names which has identity column set as generated always? For I dentity columns I can simply use syscat.columns but how to fitler identity ...
0
votes
1answer
152 views

Generating a doc file from a php “results” page?

I have a PHP generated page containing the results of a submitted form, what I would like to do is save this as a .doc file on the server. After some googling I came across this code which I adapted:- ...
1
vote
1answer
506 views

iOS CoreDataGeneratedAccessors and save in one to many

I have used coredata in a project with only a parent and a child [one to many], cd will generate the entity.h and entity.m for NSManagedObject, [ok] the problem is that in my prior project , the ...
1
vote
1answer
172 views

Print statements generated by Android SQLiteOpenHelper

I have an update statement that does not work properly and want to know how the final statement looks like. Is there a way to print out the statements generated by the Android SQLiteOpenHelper? So ...
1
vote
2answers
335 views

how can I hide a widget that generated a signal in qt

Let's say we have more than one widgets and all of them have main menu button. so I connected all of the main menu buttons clicked signal to one slot, which is supposed to h ...
0
votes
1answer
598 views

How to tell automake that a dependency is generated and thus in builddir and not in sourcedir

I wonder if I can tell automake that a dependency is generated and thus in builddir and not in sourcedir? In my case the generated dependencies look like this: $ head -n2 .deps/dynamic.Po ...
0
votes
1answer
642 views

runtime generated Checkbox validation

I have panel in the asp.net webpage, and i m generating the checkbox at runtime.. i want to validate checkbox, required field validator when form submit. here is my code: cv = new CustomValidator(); ...
0
votes
2answers
222 views

Problem inserting string into array

i'm trying to insert an implode generated string to an array that then later be used for json implementation the implode generated string is look like this 'id' => ...

1 2