current location:Home > javascript中的数据类型 search

Classify:
Found a total of 529 related content
  • Writing a small database with Delphi Chinese WORD version
    Writing a small database with Delphi Chinese WORD version
    This document mainly talks about using Delphi to write small databases; Delphi is one of the most popular programming tools at present. It has many advantages in developing database applications and provides a powerful way to develop database applications based on the client/server model. ability. In terms of database access, it is equipped with Borland Database Engine (BDE), which can access various databases through SQL Links, ODBC and other technologies, and can also use ADO to access various databases. In terms of application client development, Delphi provides
    2024-01-18 0 608
  • Use PowerDesigner to import SQL to generate data table model Chinese WORD version
    Use PowerDesigner to import SQL to generate data table model Chinese WORD version
    This document mainly talks about using PowerDesigner to import SQL to generate a data table model; I hope this document will help friends in need; interested friends can come and take a look.
    2024-02-26 0 1056
  • How to read and write data to MySql through json in Android Chinese WORD version
    How to read and write data to MySql through json in Android Chinese WORD version
    This document mainly talks about the method of reading and writing data to MySql through json in Android; I hope it will be helpful to everyone's learning. Interested friends can come and take a look.
    2024-02-26 0 1354
  • Usage examples of Android database SQLite Chinese WORD version
    Usage examples of Android database SQLite Chinese WORD version
    Android provides three data storage methods, the first is file storage; the second is SharedPreferences storage; and the third is database SQLiteDatabase storage. I don’t need to say more about file storage, but SharedPreferences can access simple data (int, double, float.etc). It is often used for data caching because it is simple to read and store. For details, please refer to this series. Advanced Tutorial for Android Experts (7) - Android Medium
    2024-02-29 0 930
  • Android embedded SQLite database Chinese WORD version
    Android embedded SQLite database Chinese WORD version
    This document mainly talks about the Android embedded SQLite database; a relational database SQLite is embedded in the Android platform. Unlike other databases, SQLite does not distinguish types when storing data; interested friends can come and take a look.
    2024-02-28 0 1061
  • How to connect Delphi to SQL database Chinese WORD version
    How to connect Delphi to SQL database Chinese WORD version
    This document mainly describes the method of connecting Delphi to a SQL database; the principles of other versions are basically similar. I hope this document will help friends in need; interested friends can come and take a look.
    2024-01-18 0 739
  • Simple usage of JSON Chinese WORD version
    Simple usage of JSON Chinese WORD version
    This document mainly talks about the simple usage of JSON; JSON (JavaScript Object Notation) is a simple data format that is more lightweight than xml. JSON is a native JavaScript format, which means that processing JSON data in JavaScript does not require any special API or toolkit. I hope this document will help friends in need; interested friends can come and take a look.
    2024-02-01 0 953
  • Array application & two-dimensional array word version
    Array application & two-dimensional array word version
    The so-called array is a collection of elements of the same data type arranged in a certain order. It is a collection of variables that names a limited number of variables of the same type and then uses numbers to distinguish them. This name is called the array name, and the number is called the following. mark. The individual variables that make up an array are called components of the array, also called elements of the array, and sometimes called subscript variables. In programming, an array is a form of organizing several variables of the same type in an orderly manner for the convenience of processing. These collections of similar data elements arranged in order are called arrays. Array application & two-dimensional array directory
    2024-01-31 0 792
  • JSON Getting Started Guide Chinese WORD version
    JSON Getting Started Guide Chinese WORD version
    JSON stands for JavaScript Object Natation. It is a lightweight data exchange format that is very suitable for the interaction between the server and JavaScript. This article will quickly explain the JSON format and demonstrate through code examples how to process JSON format data on the client and server respectively.
    2024-01-27 0 1127
  • Delphi mastery step by step tutorial pdf version
    Delphi mastery step by step tutorial pdf version
    Delphi primary tutorial step by step mastery pdf, briefly summarize the content: Delphi overview, programming of three structures of the Object Pascal language base, arrays, procedures and functions, custom types, common components of Delphi, multimedia application programming, DLL applications, Database application base SQL database programming, etc.
    2024-01-19 1 1111
  • View and manage sqlite database in Android Chinese WORD version
    View and manage sqlite database in Android Chinese WORD version
    This document mainly talks about viewing and managing sqlite database in Android; you can use the Eclipse plug-in DDMS to view it in Android, or you can use the adb tool in the Android tool kit to view it. The sqlite database in the android project is located in /data/data/project package/databases. Friends in need can download and take a look
    2024-02-02 0 852
  • SQLite syntax and Android database operations Chinese WORD version
    SQLite syntax and Android database operations Chinese WORD version
    This document mainly talks about SQLite syntax and Android database operations; Android's SQLiteDatabase does not originally depend on Android, but exists independently as an individual, with its own unique system and language, and this is SQL syntax . SQLite is a lightweight database with few functions for large databases, so you only need to learn some common SQL syntax to easily master it, and these SQL syntaxes are basically unchanged for other databases. needed
    2024-02-27 0 563
  • Android data storage SQLite database storage Chinese WORD version
    Android data storage SQLite database storage Chinese WORD version
    This document mainly talks about Android data storage SQLite database storage; each database in Android is private to the application package suite that created it. By default, other applications cannot directly access this private database. Friends in need can download and take a look
    2024-02-26 0 1036
  • Using JSON for network data exchange and transmission Chinese WORD version
    Using JSON for network data exchange and transmission Chinese WORD version
    This document mainly talks about using JSON for network data exchange and transmission; JSON (JavaScript ObjectNotation) is a lightweight data exchange format that is easy to read and write, and is also easy to be parsed and generated by machines. It is very suitable for servers and clients. Interaction. JSON uses a programming language-independent text format, but also uses C-like language conventions. These characteristics make JSON an ideal data exchange format. Like XML, JSON is a plain text-based data format. Since JSON is born
    2024-02-29 0 902
  • Summary of information related to Perl DBI programming pdf+chm Script House Special Edition
    Summary of information related to Perl DBI programming pdf+chm Script House Special Edition
    Mainly includes Perl+DBI programming (chm).chmPerl+DBI programming-[US] Descartes-China Electric Power Press-2001.pdfPerl DBI Tutorial on using DBI in Perl, for beginners to refer to the Chinese translation version of Perl.DBI manual .pdfPerl DBI Chinese help document, covering Perl DBI name, overview, description, DBI classes, processor general methods, general attributes, DBI database processing objects, database processing methods, etc. Programming_the_P
    2024-02-02 0 1419
  • JSON introductory tutorial Chinese WORD version
    JSON introductory tutorial Chinese WORD version
    This document mainly talks about the introductory tutorial of JSON; like XML, JSON is also a data format based on plain text. Since JSON is inherently prepared for JavaScript, the data format of JSON is very simple. You can use JSON to transmit a simple String, Number, Boolean, an array, or a complex Object. I hope this document will help friends in need; interested friends can come and take a look.
    2024-02-03 3 1743
  • Android local data storage Chinese WORD version
    Android local data storage Chinese WORD version
    This document is primarily about Android local data storage; the ability to store data locally on a mobile device is a critical feature for applications that need to maintain important information across the execution or lifetime of the application. As a developer, you often need to store information such as user preferences or application configurations. You must also decide based on characteristics such as access visibility whether you need to involve internal or external memory, or whether you need to deal with more complex, structured data types. Follow this article to learn the Android data storage API with
    2024-02-26 0 808
  • Android uses JSON for network data exchange WORD version
    Android uses JSON for network data exchange WORD version
    This document mainly talks about Android's use of JSON for network data exchange; JSON (JavaScript Object Notation) is a lightweight data exchange format that is easy to read and write, and is also easy to be parsed and generated by machines. It is very suitable for servers and clients. terminal interaction. JSON uses a programming language-independent text format, but also uses C-like language conventions. These characteristics make JSON an ideal data exchange format. I hope this document will help friends in need; interested friends can come and take a look.
    2024-01-31 0 980
  • Android rtsp streaming media playback introduction Chinese WORD version
    Android rtsp streaming media playback introduction Chinese WORD version
    This document mainly talks about the introduction of android rtsp streaming media playback; the real-time streaming protocol (RTSP) is an application-level protocol that controls the sending of real-time data. RTSP provides an extensible framework that makes it possible to control and on-demand real-time data, such as audio and video. Data sources include live data and data stored in clips. The purpose of this protocol is to control multiple data sending connections, provide a way to select a sending channel, such as UDP, multicast UDP and TCP, and provide a method to select a sending mechanism based on RTP. I hope this document will help friends in need; interested
    2024-02-26 0 965
  • mybatis syntax and introduction Chinese WORD version
    mybatis syntax and introduction Chinese WORD version
    This document mainly talks about the syntax and introduction of mybatis; MyBatis is a persistence layer framework that can customize SQL, stored procedures and advanced mapping. MyBatis eliminates most of the JDBC code, manual setting of parameters and result set retrieval. MyBatis only uses simple XML and annotations to configure and map basic data types, Map interfaces and POJOs to database records. Compared with "one-stop" ORM solutions such as Hibernate and Apache OJB
    2024-01-31 2 1125
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!