Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #37.0K
~2K People Reached
Favorite Forums
Favorite Tags
java x 3

4 Posted Topics

Member Avatar for prochotap

Hi, Have a look at line 8 of the RowValidated code block, Values has @NPROJECT_NAME which I assume is a typo and is probably causing your problems. The same typo occurs in line 8 of the UserAddedRow code block. An uninitialized parameter should cause null issues. Reference: https://www.completecsharptutorial.com/ado-net/insert-records-using-simple-and-parameterized-query-c-sql.php Regards

Member Avatar for Qzmo
0
906
Member Avatar for prochotap

Hi, I've looked all over the Internet and couldn't find any example of a DateTime value being converted to seconds using the TIME_TO_SEC() function as used in your calculation algorithm (Line 118/122: "TIME_TO_SEC(order_status.END_DATE) - TIME_TO_SEC(order_status.BEGIN_DATE) ") . It seems only Time values may be converted to seconds, and that may …

Member Avatar for Qzmo
0
414
Member Avatar for miasuhyla

Are you trying to extend your classes into another? e.g. person becomes extended by givingperson. All I can offer is this example which explains this section well I think. [URL="http://java.sun.com/docs/books/tutorial/java/javaOO/classes.html"]http://java.sun.com/docs/books/tutorial/java/javaOO/classes.html[/URL] This depends on what you wanted to do with the code of course.

Member Avatar for Qzmo
0
146
Member Avatar for salamjamal10

Ok this code runs without syntax errors but you still have some program errors. import java.util.Scanner; public class CalculatingSales { private static boolean Double; public static void main(String[] args) { Scanner input = new Scanner ( System.in ); int ProductNumber; double RetailPrice; double total = 0; int Product1Count = 0; …

Member Avatar for Qzmo
0
228

The End.