Posts by Ronaldo Santos • 99 points
18 posts
-
-1
votes1
answer90
viewsQ: Connect Sql Server Database to Ios Swfit Program
Is there any way to use the sql server database on Ios ? I use lib jtds on android and can make the connection but on Ios?
-
0
votes2
answers487
viewsA: Breaking lines in a list from the bank
Look where the mistake was. ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this,android.R.layout.simple_spinner_item,Teste); here it gets like this Arrayadapter…
-
0
votes2
answers487
viewsQ: Breaking lines in a list from the bank
I have this Dao that does a search to the Sql Server Database public String nomeTabela() { String nomeData = ""; String nomeAlarme = ""; String nomeRecebe = ""; ConexaoDao conexao = new…
-
0
votes1
answer57
viewsA: Function max E Cast Joins Sql Server 2008 R2
solved SELECT MAX(cast(replace(convert(varchar,ltrim(rtrim(valor))),',','.') as float)) AS Maximo, MIN(cast(replace(convert(varchar,ltrim(rtrim(valor))),',','.') as float)) AS Mínimo From…
-
0
votes1
answer57
viewsQ: Function max E Cast Joins Sql Server 2008 R2
I need to convert an Nvarchar field to Float in a survey, and take the highest value. this function works SELECT MAX(valor) from [Enops].[dbo].[Tbl_Pulsomedia15_Vazao_Eta_B_Bentes] Where valor…
-
1
votes0
answers102
viewsQ: Help with sql search and android studio
I made this layout <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"…
-
1
votes1
answer518
viewsQ: Help with android studio apk
I am compiling my application in android studio and not from any error. in simulator I see the application normally. when I go in the folder where the app is C: Users Ronaldo Desktop Android Test…
android-studioasked Ronaldo Santos 99 -
3
votes2
answers4957
viewsQ: How to search records from the previous month?
I need to get the data from the 1st to the 30th of the previous month, I’m using this syntax. someone could help me? SELECT SUM(DIFERENÇA)as Mesanterior FROM TOTALIZADOR WHERE NID = 252 AND DATAHORA…
-
0
votes0
answers29
viewsQ: Help with sql server and android dats
I have this code to do a search to SQL Server database but give me error: Incorrect syntax next to '19' Here’s the search code: SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd…
-
2
votes2
answers511
viewsQ: Protect SQL Server Database
I have 2 SQL Server databases in my SQL Server Management Studio. I would like to put password in one of the two, making it impossible to access it, is possible?
-
0
votes1
answer358
viewsQ: Help with Date and Time Search
Good Morning I’m doing a date search on android and I’m having trouble checking the time.He says it gave syntax error near the time, and another when I pick the date the time is showing less 3…
-
0
votes1
answer50
viewsQ: Help with data field search - android
Good afternoon I have a table in the database with a date field, I need to add the values of the difference field between a specific date, for example: the last 10 minutes, the last 60 minutes, the…
androidasked Ronaldo Santos 99 -
0
votes2
answers92
viewsA: Help with Android Studio app
solved. I put a previous version of the jtds and it worked. thank you
androidanswered Ronaldo Santos 99 -
0
votes2
answers92
viewsQ: Help with Android Studio app
I made an application, and now I changed the minSdkVersion to run in previous versions of android. Only when installing the same in the emulator works normally, but when installing on the phone it…
androidasked Ronaldo Santos 99 -
0
votes1
answer405
viewsQ: Stop or cancel asynctask
I made this code for my asynctask but the same does not work, it simply continues the process and not the error. public class Act_Poco_Pombal extends AppCompatActivity implements…
androidasked Ronaldo Santos 99 -
1
votes1
answer51
viewsQ: Help To Cancel Asynctask
Good afternoon, I use this method to receive the result of a search, and implemented in the code the oncancelled to stop my Asyntask , but the same not for the process, when I go to another screen…
androidasked Ronaldo Santos 99 -
0
votes1
answer786
viewsQ: Help with Asynctask and progressbar
I connect to the database SQL Server 9 and I can connect to it. I made a Connection DAO and a screen to receive the values. I have a problem on the screen where you receive the values, because I…
androidasked Ronaldo Santos 99 -
2
votes1
answer670
viewsQ: Help with connection to sql server 2008 and android database
I made, following a tutorial, the connection of Android Studio with SQL Server 2008 R2 (already existing), with which I was able to make the connection normally, only I have a problem. I can make…