Can the oracle database field be set to an array type?
When char and nchar fields are filled with empty data, the database will automatically use all spaces instead, making the not null constraint meaningless. Therefore, if a field cannot be empty, it must be judged in advance in the program.
2. Because char and nchar have fixed lengths, it is said that the reading and writing speed is faster than varchar and nvarchar.
There are about 25 data types:
Binary [(n)],Varbinary [(n)],Char[(n)],Varchar[(n)],Nchar[(n)],Nvarchar[(n)],Datetime,Smalldatetime,Decimal [(p[,s])],Numeric[(p[,s])],Float[(n)],Real,Int,Smallint,Tinyint,Money,Smallmoney,Bit,CursorSysname,Timestamp,Uniqueidentifier,Text, Image,Ntext.
Array name data type element name
This may be three related nouns, the first is the array name. Array name refers to the name used to identify an array. In programming, in order to distinguish different arrays, we need to give them a name. For example, we can name arrays a, b, c1, etc. to use and distinguish them in the program.
The elements of the array refer to each data item stored in the array. To make it easier to use and distinguish different elements, we need to name them. In an array, we name each element using the array name plus a subscript. Subscripts start at 0, so the first element of the array a[] is a[0], the second is a[1], and so on. Subscripting allows us to access and manipulate exactly every element in an array.
Data type is a classification of data, used to reflect different types of things in the real world. Different programming languages may classify data types differently.
That’s it, friend. I don’t know if saying this can make you understand. Haha.
Why there is no array in the database
Array is a concept in programming language.
Databases, especially the current mainstream "relational databases", are specially used to store table structures.
So the standard SQL language is mainly aimed at data query and modification.
The functions of tables in the database are powerful enough. You can define multiple columns of different types, and you can even directly define whether it allows duplicates, etc.
In this case, it makes no sense to emphasize the concept of arrays. Because the purpose of a database is not programming, but data management.
As mentioned on the 2nd floor. Oracle defines arrays because it comes with plsql, which is a process-oriented programming language based on standard sql language. This language can write some procedures, functions, packages, etc.
We can observe that plsql is a process-oriented language in use. It is still very different from the use of ordinary sql statements. So it needs to be something customizable. For example, cursors, parameters, variables, return values, etc.
---------------------------------
So you understand, the SQL language used by ordinary databases does not clearly and directly define the concept of "array" because of different uses. The parts used for programming such as plsql have similar definitions.
-------------------------------------------------- ---------------
Additional explanation, the Oracle table structure is allowed to violate the first normal form. But personally I think this has no promotional significance.
How does java extract the value of an int type field in the database in the form of an array
import java.sql.*;
import java.util.Vector;
public class Test {
public static void main(String[] args) {
String strQuery = "SELECT * FROM rkd";
int[] id = getID(strQuery);
//Output test id array
for(int e : id){
System.out.println(e);
}
}
/**
* Get the number array based on the query string
* @param strQuery query string
* @return number array
*/
public static int[] getID(String strQuery) {
int[] id = null;
try {
//Query the member id in the database
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
Connection conn = DriverManager.getConnection("jdbc:sqlserver://localhost:1433;DatabaseName=Exam01","sa","123456");
Statement stat = conn.createStatement();
ResultSet rs = stat.executeQuery(strQuery);
//Save all ids into the temporary variable vect
Vectorvect = new Vector(); while(rs.next()){ vect.add(rs.getInt(1)); } //Dump all ids into the array id = new int[vect.size ()]; for(int i=0; i id[i] = Integer.parseInt(vect.get(i).toString()); } } catch (Exception e) { e.printStackTrace(); } return id ; } }
The above is the detailed content of Can an Oracle database field be set to an array type?. For more information, please follow other related articles on the PHP Chinese website!

Learn about Hidester VPN and Hidester proxy and download Hidester VPN for Windows, Mac, Android, and iOS to use this VPN service to view websites with no limit. For more useful free computer tools and troubleshooting tips, you may visit php.cn Softwa
![Windows Keyboard Opening Shortcuts Instead of Typing [Fixed]](https://img.php.cn/upload/article/001/242/473/174525409770635.png?x-oss-process=image/resize,p_40)
Have you ever encountered the trouble of “Windows keyboard opening shortcuts instead of typing”? In this post from php.cn, you will learn how to fix this issue.

In this post, php.cn Software will introduce what Control Panel is and how to add the Control Panel icon to desktop on your Windows 10 or Windows 11 computer. You can also learn some related information about desktop icon settings.

If you play Granblue Fantasy: Relink on your PC, you may wonder where you can find its save file. In this post, php.cn introduces everything you want to know - Granblue Fantasy Relink save file location and how to back up the savegame of this game.

Event Viewer keeps track of activity for better management. However, if the upper limit of the security log is reached, no more events can be logged. In this post on php.cn Website, we will show you how to deal with Event ID 1104 the security log is

Secure Boot is a security standard that can prevent your computer from booting with untrustworthy software. Enabling it will add an extra layer of security to your device. In this post from php.cn Website, we will show you how to enable Secure Boot o

Coming to a new year, what Windows 11 users are looking forward to are not only the patch updates but also the annual major update for Windows 11. This post will talk about the Windows 11 23H2 release date. In addition, if you want to recover deleted

Can you completely disable Bixby? How to turn off Bixby on Samsung phones? It is not hard to disable this voice assistant. In this post from php.cn, we will go to any length to help you find the method. Besides, a way to turn off “Hi, Bixby” is also


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Mac version
God-level code editing software (SublimeText3)

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download
The most popular open source editor