cursor$18219$ - ترجمة إلى إنجليزي
Diclib.com
قاموس ChatGPT
أدخل كلمة أو عبارة بأي لغة 👆
اللغة:

ترجمة وتحليل الكلمات عن طريق الذكاء الاصطناعي ChatGPT

في هذه الصفحة يمكنك الحصول على تحليل مفصل لكلمة أو عبارة باستخدام أفضل تقنيات الذكاء الاصطناعي المتوفرة اليوم:

  • كيف يتم استخدام الكلمة في اللغة
  • تردد الكلمة
  • ما إذا كانت الكلمة تستخدم في كثير من الأحيان في اللغة المنطوقة أو المكتوبة
  • خيارات الترجمة إلى الروسية أو الإسبانية، على التوالي
  • أمثلة على استخدام الكلمة (عدة عبارات مع الترجمة)
  • أصل الكلمة

cursor$18219$ - ترجمة إلى إنجليزي

DATABASE CURSOR
Database cursor; SQL Cursor; Cursor (database)

cursor      
n. cursor, verschuivend wijzertje
mouse pointer         
  • An example of a 3D cursor in a 3D modeling environment (center).
  • A ''wait'' cursor replaces the pointer with an hourglass.
  • The common cursor roles for a cursor set.
  • A blinking text cursor while typing ''Wikipedia''.
PART OF A COMPUTER UI THAT INDICATES THE POSITION (TEXTUAL OR GRAPHICAL) THAT OPERATIONS WILL AFFECT
Mouse pointer; SBOD; Mouse cursor; SBBOD; Spinning pizza of death; Pointer trails; Mouse pointer trails; Mouse trails; Beachballed; Spinning wait cursor (Mac OS X); Cursor hotspot; Cursor Hotspot; SWOD; Cursor editor; Text cursor; Cursor hovering text information; Pinwheel of death; Animated cursor; Cursor (GUI); Pointer (user interface); Pointer (computing WIMP); Spinning wait cursor; Wait cursor; Keyboard focus; Cursor (computers); The spinning wheel of death; Cursor (computing); Pointer (graphical user interfaces); ARC bug; Engelbart bug; Augmentation Research Center bug; Bug (computer mouse)
teken van de muis, muis aanwijzer, symbool op het scherm dat te verplaatsen is m.b.v. de muis
arrow keys         
  • gaming laptop]]
  • ADM-3A keyboard layout
  • The original Macintosh has no arrow keys.
  • WAXD keycaps of PLATO IV
  • ''QWOP''{{'s}} title refers to the four keyboard keys used to move the muscles of the sprinter avatar
COMPUTER KEY DESIGNED TO MOVE THE CURSOR IN A SPECIFIED DIRECTION
WASD keys; Arrow key; IJKL keys; HJKL keys; HJKL; Hjkl; Esdf; QWES; Qwes; QAOP keys; Arrow Key; IJKL; Vi keys; WSAD keys; ASWD keys; QAOP; Cursor keys; IJKM keys; ZQSD; Cursor movement keys; Movement keys; Vi-binding; Vi key bindings; Cursor key; Up key; Down key; Left key; Right key
pijl-toetsen, toetsen die bedoeld zijn om de cursor over het scherm te verplaatsen

تعريف

cursor
1. <hardware> A visually distinct mark on a display indicating where newly typed text will be inserted. The cursor moves as text is typed and, in most modern editors, can be moved around within a document by the user to change the insertion point. 2. <database> In SQL, a named control structure used by an application program to point to a row of data. The position of the row is within a table or view, and the cursor is used interactively so select rows from columns. (1996-12-27)

ويكيبيديا

Cursor (databases)

In computer science, a database cursor is a mechanism that enables traversal over the records in a database. Cursors facilitate subsequent processing in conjunction with the traversal, such as retrieval, addition and removal of database records. The database cursor characteristic of traversal makes cursors akin to the programming language concept of iterator.

Cursors are used by database programmers to process individual rows returned by database system queries. Cursors enable manipulation of whole result sets at once. In this scenario, a cursor enables the sequential processing of rows in a result set.

In SQL procedures, a cursor makes it possible to define a result set (a set of data rows) and perform complex logic on a row by row basis. By using the same mechanics, a SQL procedure can also define a result set and return it directly to the caller of the SQL procedure or to a client application.

A cursor can be viewed as a pointer to one row in a set of rows. The cursor can only reference one row at a time, but can move to other rows of the result set as needed.