SQLite
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> SQLite

Giới hạn của các biến SQL mà người ta có thể chỉ định trong một truy vấn thực thi là gì

Giới hạn được mã hóa cứng trong sqlite3.c và được đặt thành 999. Thật không may, nó có thể được thay đổi nhưng chỉ tại thời điểm biên dịch. Dưới đây là các đoạn trích liên quan:

/*
** The maximum value of a ?nnn wildcard that the parser will accept.
*/
#ifndef SQLITE_MAX_VARIABLE_NUMBER
# define SQLITE_MAX_VARIABLE_NUMBER 999
#endif


/*
** The datatype ynVar is a signed integer, either 16-bit or 32-bit.
** Usually it is 16-bits.  But if SQLITE_MAX_VARIABLE_NUMBER is greater
** than 32767 we have to make it 32-bit.  16-bit is preferred because
** it uses less memory in the Expr object, which is a big memory user
** in systems with lots of prepared statements.  And few applications
** need more than about 10 or 20 variables.  But some extreme users want
** to have prepared statements with over 32767 variables, and for them
** the option is available (at compile-time).
*/
#if SQLITE_MAX_VARIABLE_NUMBER<=32767
typedef i16 ynVar;
#else
typedef int ynVar;
#endif


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Android- setPeriodic cho JobScheduler sẽ không hoạt động

  2. Tự động tăng giá trị 'id' khi chèn vào sqlite

  3. Không thể tải cơ sở dữ liệu sqlite trong lần chạy đầu tiên

  4. Đặt hàng SQLite bởi

  5. Thêm một cột đã tạo vào một bảng trong SQLite