Difference between revisions of "RU/kb/00000210"

From Wiki
Jump to navigationJump to search
m (изменил язык кода с mysql на vb)
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<section begin=title /><noinclude>{{DISPLAYTITLE:База Знаний: </noinclude>{{OOoB|1}}. Добавление данных с помощью запроса<noinclude>}}</noinclude><section end=title />
+
<section begin=title /><noinclude>{{DISPLAYTITLE:База Знаний: {{OOoB|1}}. </noinclude>Добавление данных с помощью запроса<noinclude>}}</noinclude><section end=title />
 
{{BreadCrumbL10n|RU/kb/module/base/query}}
 
{{BreadCrumbL10n|RU/kb/module/base/query}}
 
__NOTOC__
 
__NOTOC__
Line 21: Line 21:
  
 
<section begin=signature/>
 
<section begin=signature/>
{{RUsignyear|Smagluk|А. Г. Смаглюк|2010}}
+
{{SignYear|Sancho|А. Е. Харламенков|2010}}
 
<section end=signature/>
 
<section end=signature/>
 
{{RUkbBaseBottom}}
 
{{RUkbBaseBottom}}

Latest revision as of 16:07, 27 August 2011


Запросы OpenOffice.org Base можно использовать для вставки данных.

Например:

'	Подключаемся к базе данных
	DatabaseContext = createUnoService("com.sun.star.sdb.DatabaseContext")
	DataSource = DatabaseContext.getByName("Имя базы данных")
'       С пустым именем и паролем
	Connection = DataSource.GetConnection("", "")	
	Statement = Connection.createStatement()

	Statement.executeUpdate("Insert into  ""Имя таблицы""(""Поле1"",""Поле2"",......) Values ('Значение1','Значение2',......)")











К началу страницы