Posts by leonardo • 373 points
11 posts
-
0
votes2
answers588
viewsA: What is the correct way to log in and register?
Dude, you can save the user in the sqlite database. And for the back button, VC can use a class called Intent, in this case when you click the back button VC does something like: intent = new…
-
1
votes1
answer414
viewsA: Microsoft SQL Server Error 10060
According to the website of MSDN An error occurred when establishing a connection to the server. When connecting to SQL Server, this failure can be triggered because, under the default settings, SQL…
-
2
votes5
answers910
viewsA: Operator "||" in Javascript variables
In javascript the operator || will evaluate the expression and return the first value that is not evaluated as false. If you do not find any returns the rightmost element. Values that are considered…
javascriptanswered leonardo 373 -
1
votes2
answers5446
viewsA: How to know which script is running on a given HTML element?
If you are using jQuery, there is a firefox plugin that lets you know which function is tied to an html element. The name of the plugin is Firequery.…
-
1
votes1
answer1015
viewsA: Table innerHTML text appears and disappears on time
In his job mostrar, add at the end of it return false. By adding the return false vc causes the method to stop its execution of its function and also makes the page in your case not of a Reload.…
-
1
votes6
answers10935
views -
6
votes4
answers49363
viewsA: What is console.log?
a way to debug your code. This command will show in your browser console what is written in the log function.
javascriptanswered leonardo 373 -
5
votes1
answer121
viewsA: "untrusted Domain" error when trying to connect to the database
Arrow Integrated Security=False; When false, user ID and password are specified on the connection. When true, current Windows account credentials are used for authentication. Recognized values are…
-
-1
votes4
answers1852
viewsA: Oracle11g - Problems SELECT command
When you run sql on a right or wrong oracle client? if vc play sql in Squirrel or other sql client error? SELECT M.ID, M.TITLE, M.DIA, M.HORA FROM MEETING AS M, MEETING_LIST AS ML WHERE…
-
1
votes1
answer94
viewsA: Accessing different Webservices on Android
From what I understand you get one of the two Urls. So why at the point where you get the URL you don’t do something like this: Thread thread = new Thread(new Runnable() { @Override public void…
-
4
votes5
answers4549
viewsA: How to pick up images on the internet through Java?
See if this works for you: URL urlObj = new URL(//img que vc quer baixar.); HttpURLConnection httpConnection = (HttpURLConnection)urlObj.openConnection(); httpConnection.setRequestMethod("GET");…