You've already forked OpenIntegrations
							
							
				mirror of
				https://github.com/Bayselonarrend/OpenIntegrations.git
				synced 2025-10-30 23:47:46 +02:00 
			
		
		
		
	Main build (Jenkins)
This commit is contained in:
		
							
								
								
									
										8
									
								
								docs/en/md/SQLite/Orm/Add-records.mdx
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								docs/en/md/SQLite/Orm/Add-records.mdx
									
									
									
									
										vendored
									
									
								
							| @@ -1,5 +1,5 @@ | ||||
| --- | ||||
| sidebar_position: 2 | ||||
| sidebar_position: 3 | ||||
| --- | ||||
|  | ||||
| import Tabs from '@theme/Tabs'; | ||||
| @@ -24,6 +24,10 @@ import TabItem from '@theme/TabItem'; | ||||
|  | ||||
| <br/> | ||||
|  | ||||
| :::tip | ||||
| Binary data can also be transferred as a structure `{'blob':<File path>}` | ||||
| ::: | ||||
| <br/> | ||||
|  | ||||
|  | ||||
|  | ||||
| @@ -34,7 +38,7 @@ import TabItem from '@theme/TabItem'; | ||||
|     PictureFile = GetTempFileName("png"); | ||||
|     Image.Write(PictureFile); // PictureFile - File to disk | ||||
|  | ||||
|     Base  = "C:\Users\Administrator\AppData\Local\Temp\v8_1AD2_9c.sqlite"; | ||||
|     Base  = "C:\Users\Administrator\AppData\Local\Temp\v8_BC85_14.sqlite"; | ||||
|     Table = "test"; | ||||
|  | ||||
|     DataArray = New Array; | ||||
|   | ||||
							
								
								
									
										4
									
								
								docs/en/md/SQLite/Orm/Create-table.mdx
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/SQLite/Orm/Create-table.mdx
									
									
									
									
										vendored
									
									
								
							| @@ -1,5 +1,5 @@ | ||||
| --- | ||||
| sidebar_position: 1 | ||||
| sidebar_position: 2 | ||||
| --- | ||||
|  | ||||
| import Tabs from '@theme/Tabs'; | ||||
| @@ -27,7 +27,7 @@ import TabItem from '@theme/TabItem'; | ||||
|  | ||||
|  | ||||
| ```bsl title="1C:Enterprise/OneScript code example" | ||||
|     Base  = "C:\Users\Administrator\AppData\Local\Temp\v8_1AD2_9c.sqlite"; | ||||
|     Base  = "C:\Users\Administrator\AppData\Local\Temp\v8_BC85_14.sqlite"; | ||||
|     Table = "test"; | ||||
|  | ||||
|     ColoumnsStruct = New Structure; | ||||
|   | ||||
							
								
								
									
										4
									
								
								docs/en/md/SQLite/Orm/Delete-posts.mdx
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/SQLite/Orm/Delete-posts.mdx
									
									
									
									
										vendored
									
									
								
							| @@ -1,5 +1,5 @@ | ||||
| --- | ||||
| sidebar_position: 5 | ||||
| sidebar_position: 6 | ||||
| --- | ||||
|  | ||||
| import Tabs from '@theme/Tabs'; | ||||
| @@ -27,7 +27,7 @@ import TabItem from '@theme/TabItem'; | ||||
|  | ||||
|  | ||||
| ```bsl title="1C:Enterprise/OneScript code example" | ||||
|     Base  = "C:\Users\Administrator\AppData\Local\Temp\v8_1AD2_9c.sqlite"; | ||||
|     Base  = "C:\Users\Administrator\AppData\Local\Temp\v8_BC85_14.sqlite"; | ||||
|     Table = "test"; | ||||
|  | ||||
|     Filters = New Array; | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| --- | ||||
| sidebar_position: 6 | ||||
| sidebar_position: 7 | ||||
| --- | ||||
|  | ||||
| import Tabs from '@theme/Tabs'; | ||||
|   | ||||
							
								
								
									
										8
									
								
								docs/en/md/SQLite/Orm/Get-records.mdx
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								docs/en/md/SQLite/Orm/Get-records.mdx
									
									
									
									
										vendored
									
									
								
							| @@ -1,5 +1,5 @@ | ||||
| --- | ||||
| sidebar_position: 3 | ||||
| sidebar_position: 4 | ||||
| --- | ||||
|  | ||||
| import Tabs from '@theme/Tabs'; | ||||
| @@ -26,11 +26,15 @@ import TabItem from '@theme/TabItem'; | ||||
|  | ||||
| <br/> | ||||
|  | ||||
| :::tip | ||||
| Values of the Binary data type (BLOB) are returned as `{'blob':<Base64 string>}` | ||||
| ::: | ||||
| <br/> | ||||
|  | ||||
|  | ||||
|  | ||||
| ```bsl title="1C:Enterprise/OneScript code example" | ||||
|     Base  = "C:\Users\Administrator\AppData\Local\Temp\v8_1AD2_9c.sqlite"; | ||||
|     Base  = "C:\Users\Administrator\AppData\Local\Temp\v8_BC85_14.sqlite"; | ||||
|     Table = "test"; | ||||
|  | ||||
|     Fields = New Array; | ||||
|   | ||||
							
								
								
									
										38
									
								
								docs/en/md/SQLite/Orm/Get-table-information.mdx
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										38
									
								
								docs/en/md/SQLite/Orm/Get-table-information.mdx
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,38 @@ | ||||
| --- | ||||
| sidebar_position: 1 | ||||
| --- | ||||
|  | ||||
| import Tabs from '@theme/Tabs'; | ||||
| import TabItem from '@theme/TabItem'; | ||||
|  | ||||
| # Get table information | ||||
|  Gets information about the table | ||||
|  | ||||
|  | ||||
|  | ||||
| `Function GetTableInformation(Val Table, Val Connection = "") Export` | ||||
|  | ||||
|   | Parameter | CLI option | Type | Required | Description | | ||||
|   |-|-|-|-|-| | ||||
|   | Table | --table | String | ✔ | Table name | | ||||
|   | Connection | --db | String, Arbitrary | ✖ | Existing connection or database path | | ||||
|  | ||||
|    | ||||
|   Returns:  Structure Of KeyAndValue, String - The result of the execution or SQL query text | ||||
|  | ||||
| <br/> | ||||
|  | ||||
|  | ||||
|  | ||||
|  | ||||
| ```bsl title="1C:Enterprise/OneScript code example" | ||||
|     Base  = "C:\Users\Administrator\AppData\Local\Temp\v8_BC85_14.sqlite"; | ||||
|     Table = "test"; | ||||
|  | ||||
|     Result = OPI_SQLite.GetTableInformation(Table, Base); | ||||
| ``` | ||||
|   | ||||
|  | ||||
|  | ||||
|  | ||||
|  | ||||
							
								
								
									
										4
									
								
								docs/en/md/SQLite/Orm/Update-records.mdx
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/SQLite/Orm/Update-records.mdx
									
									
									
									
										vendored
									
									
								
							| @@ -1,5 +1,5 @@ | ||||
| --- | ||||
| sidebar_position: 4 | ||||
| sidebar_position: 5 | ||||
| --- | ||||
|  | ||||
| import Tabs from '@theme/Tabs'; | ||||
| @@ -28,7 +28,7 @@ import TabItem from '@theme/TabItem'; | ||||
|  | ||||
|  | ||||
| ```bsl title="1C:Enterprise/OneScript code example" | ||||
|     Base  = "C:\Users\Administrator\AppData\Local\Temp\v8_1AD2_9c.sqlite"; | ||||
|     Base  = "C:\Users\Administrator\AppData\Local\Temp\v8_BC85_14.sqlite"; | ||||
|     Table = "test"; | ||||
|  | ||||
|     FieldsStructure = New Structure; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user