Posts by mistake S • 66 points
5 posts
-
0
votes2
answers579
viewsA: Permissions for an Oracle USER
GRANT PROCEDURE, CREAT, DROP, ALTER, SELECT, INSERT, UPDATE, DELETE ON SCHEMA TO Student; Well what is missing is the same CREATE. GRANT PROCEDURE, CREATE, DROP, ALTER, SELECT, INSERT, UPDATE,…
-
0
votes2
answers1900
viewsA: block access to a particular directory via htacess
enter your apache2.conf or httpd.conf use the directive Define to point out where your package is installed. Define INSTALL_DIR [diretorio a ser instalado] Ex : Windows Define INSTALL_DIR c:\wamp64…
-
0
votes5
answers21141
viewsA: What is the functionality of n?
I’m learning to program in Python and some basic things still confuse me, for example this question I asked. What is the use of n? In any text file the line only actually ends with a \n. It does not…
-
4
votes3
answers270
viewsA: Searching data in database
Question 1, the CRASE: <?php mysqli_connect($conectar, "SELECT * FROM `usuario`"); ?> It is usually used when you want to reference a special table or database, e.g.: mysql -> CREATE…
-
1
votes1
answer754
viewsA: Help with While loop in Python
There’s a lack of indentation in the code, but I’m not gonna judge you on that. Well, I read the question and developed something similar above and with comments for the explanation of some doubts.…