database tag

146 questions


1 answers
131 views
0
jsp, I want to use servlet and add the contents of the form to the database

From test_db.jsp to test_db.java display works well, but the results do not reflect after that.I am using Eclipse ver.2019-03 (4.11.0).I look forward to hearing from you.test_db.jsp<%@pagelanguage=...

2 years ago

1 answers
93 views
0
IDENTIFICATION AND LOGIN METHOD OF USER IN SOCIAL GAME

The service on the web basically requires logging in with your email address and password.However, social games on smartphones were only required to enter nicknames, and subsequent logins seemed to be...

2 years ago

1 answers
73 views
0
Does MySQL Multi-Column Index Partial Match Work?

CREATE TABLE `users`( `id`CHAR(36) NOT NULL, `tenant_id`CHAR(36) NOT NULL, `email_address`VARCHAR(254) NOT NULL, PRIMARY KEY(`id`), INDEX`email_idx`(`email_address`ASC))In the case of the above table,...

2 years ago

1 answers
84 views
0
To Verify That Your Email Address Is Already Registered in Firebase Authentication

How do I verify that my email address is already registered in Firebase Authentication?The language is Kotlin

2 years ago

1 answers
94 views
0
When data sent to the server is written from memory to storage

I'm studying computer configuration and design.The computer has primary and auxiliary memory, each of which consists of SRAM&DRAM, and magnetic disks.Because the main memory is an electrical syste...

2 years ago

1 answers
67 views
0
Differences between "rake db:migrate", "db:reset", and "db:schema:load"

What I want to know is the difference between rake db:schema:load. *rake db:migrate and rake db:reset I already know the difference, but I wrote it down just in case what I knew was wrong


2 answers
97 views
0
Why shouldn't I index all the columns in the DB table?

Hello, I'm a little weak with Database.The query can be written to some extent, but the index seems to be still lacking. People often say that if you put a lot of indexes on one table, the performance...

2 years ago

1 answers
96 views
0
I'm making a chat like Kakao Talk with MySQL, but the query is extremely slow depending on the number of LIMITs

Hello. Like Kakao Talk, we are implementing a chat that shows the past conversation when you look up while looking at the recent conversation.SELECT * FROM chat WHERE user_id = user ID order by chat_i...

2 years ago

1 answers
54 views
0
Can I use insert all only in different tables?

I'm trying to use insert all. insert allinsert ANIMAL values('dog', 'a001', 'Y')insert ANIMAL values('dog', 'a002', 'Y')select 1 from dual;No, more than one update cursor can be used on a table.Is it ...

2 years ago

1 answers
107 views
0
Find the best Database connection module in Python.

I'm a beginner at Python.I'd like to add a database module (mysql) and do this and that. https://pypi.python.org/pypi?%3Aaction=search&term=mysql&submit=searchIf you look here, you can see a l...

2 years ago
« - 6 - »

© 2024 OneMinuteCode. All rights reserved.