Posts by Lucas Duarte • 111 points
6 posts
-
0
votes1
answer93
viewsA: Hibernate Mapping - One to Many/One to One/etc - Explanation
That one Set Pessoas is created on account of the 1-N relationship between Sex and People. That one Set serves for search purposes, to get a list of objects of type Person of a particular Sex…
-
1
votes1
answer35
viewsA: Data in listview (uwp)
The method GetStringof DataReader expecting a int as parameter and you are passing the name of the field. There are two ways to correct the error: If you want to use the GetString fields names…
-
2
votes3
answers484
viewsA: Disable DATE Input After selecting Select option
There are two things that need to be done to make it work properly. The first is to remove the id="ultimoDiaTrab" from the div where the date field is located and place the field ultimoDiaTrab as…
-
3
votes1
answer4925
viewsA: TO_DATE(SYSDATE, 'YYYY-MM-DD') works sometimes
Like you said, the TO_DATE() expects a string as parameter. When you perform TO_DATE(SYSDATE, 'YYYY-MM-DD') implicitly Oracle converts its query to TO_DATE(TO_CHAR(sysdate), 'DD MONTH YYYY') and as…
-
2
votes2
answers7151
viewsA: Uncaught Typeerror: Cannot read Property 'split' of Undefined
On the line where the error is occurring you pass the variable i as parameter to Function createMark(), but it turns out that this Function is not expecting any parameter: for (var i = 0; i <…
javascriptanswered Lucas Duarte 111 -
0
votes1
answer220
viewsA: Application does not run with Visual Studio 2013
You need to release your application. Just change in the menu that is displayed in the image below where is "Debug" change to "Release" and run again your executable will be created.…