Posts by Marcos Messias • 51 points
5 posts
-
0
votes1
answer13
viewsA: Page position on Webviewer Android
Try the following code: WebView webView = (WebView) findViewById(R.id.myWebView); webView.getSettings().setDefaultZoom(ZoomDensity.FAR); I picked up on the following topic:…
-
0
votes1
answer209
viewsA: How to send formatted HTML message to outlook via Form
That’s a charset problem. try adding this to the header: <meta charset="utf-8">
-
2
votes1
answer24
viewsA: Query error using 1 Where and 2 joins in search query
INNER JOIN must appear before the WHERE clauses. I would mount this query with the following structure: select * from usuarios inner join permissoes on usuarios.permissoes=permissoes.id inner join…
-
0
votes3
answers190
viewsA: CONNECT BY application - SQL Oracle - DFS search without repeating lines
Good afternoon, David. I created the following table to test the select you need: CREATE TABLE TABELA_TESTE_DAVID ( T NUMBER(4) NOT NULL, V1 NUMBER(4) NOT NULL, V2 NUMBER(4) NOT NULL ); and I put…
sqlanswered Marcos Messias 51 -
0
votes3
answers190
viewsA: CONNECT BY application - SQL Oracle - DFS search without repeating lines
SELECT DISTINCT a1.v1, a1.v2 FROM tabela_a a1 WHERE NOT EXISTS (SELECT 1 FROM tabela_a a2 WHERE a1.v1 = a2.v2 AND a1.v2 = a2.v1 AND a2.T < a1.T); …
sqlanswered Marcos Messias 51