|
Подключение к dbf из 1С8 через драйвер фокспро 9 | ☑ | ||
|---|---|---|---|---|
|
0
Loko
04.08.16
✎
05:34
|
всем привет! есть старая прога (на фокспро), которая хранит информацию в дбф-файле. нужно настроить обмен: из 1С добавлять туда новые записи. проблема в том, что в этой файле есть memo поля. просто добавить через XBase не получается.
установили на серваке фокспро 9. пытаюсь подключится через ADODB к файлу. не получается. СтрокаПодключения="DRIVER={Microsoft FoxPro VFP Driver (*.dbf)};SourceDB=\\1C\data\; SourceType=DBF; Exclusive=No;BackgroundFetch=Yes;Collate=Russian;Null=No;Deleted=Yes;"; Соединение = Новый COMОбъект("ADODB.Connection"); Соединение.Open(СтрокаПодключения); Произошла исключительная ситуация (Microsoft OLE DB Provider for ODBC Drivers): [Microsoft][Диспетчер драйверов ODBC] Источник данных не найден и не указан драйвер, используемый по умолчанию на серваке: windows (64) 2012. а odbc драйвер 32 разрядный может в этом проблема? |
|||
|
1
Loko
04.08.16
✎
05:41
|
1С на серваке тоже 64 разрядная. когда в кофигураторе создаю новый внешний источник данных, видит только драйвер скл (64).
|
|||
|
2
Loko
04.08.16
✎
06:04
|
со своего компа windows 7 (32) получилось подключиться к дбф-ке. в т.ч. считать поля memo
ОлеДБ = Новый COMОбъект("ADODB.Connection"); Соединение = "Provider=VFPOLEDB.1;Data Source=" + КаталогИБ + ";Mode=ReadWrite;Collating Sequence=MACHINE"; ОлеДБ.Open(Соединение); Command = Новый COMОбъект("ADODB.Command"); Command.ActiveConnection = ОлеДБ; ТекстЗапроса = " |select * |from sf01 |"; Command.CommandText = ТекстЗапроса; RecordSet = Новый COMОбъект("ADODB.RecordSet"); RecordSet = Command.Execute(); вопрос 1: в чем разница между первым моим подключением (через драйвер) и нынешним (через провайдер)? вопрос 2. все таки дело в разрядности виндовса? на серваке не работает также. |
|||
|
3
Loko
04.08.16
✎
06:04
|
вопрос 3. как сделать запись в дбф-ку эту?
|
|||
|
4
Kandellaster
04.08.16
✎
06:10
|
скормить запросик с INSERT в Command
|
|||
|
5
Loko
04.08.16
✎
06:17
|
(4) запрос - это просто чтение файла. а мне нужно добавить новую запись.
|
|||
|
6
Гобсек
04.08.16
✎
06:19
|
Если создать файл dbf средствами 1С, то любая версия foxpro прочитает его без проблем.
|
|||
|
7
Kandellaster
04.08.16
✎
06:24
|
(5)
СтрокаЗапрос = "INSERT INTO tablename VALUES ('значение', 'значение', 'значение');" Command.CommandText = СтрокаЗапрос; RecordSet = Новый COMОбъект("ADODB.RecordSet"); RecordSet = Command.Execute(); и таки не сработает штоле? |
|||
|
8
Loko
04.08.16
✎
06:26
|
(6) вся проблема с полями memo. не работает 1С с этими полями.
|
|||
|
9
Loko
04.08.16
✎
06:26
|
(7) попробую. спасибо
|
|||
|
10
NorthWind
04.08.16
✎
06:28
|
(0) разница в том, что в первом случае вы пытаетесь использовать провайдер для odbc, который, в свою очередь, должен читать файл через драйвер odbc. Во втором случае вы используете провайдер visual fox pro, который работает с файлом напрямую.
|
|||
|
11
NorthWind
04.08.16
✎
06:30
|
Битность провайдеров должна совпадать с битностью процесса. Т.е. для сервака надо найти 64-битные провайдеры
|
|||
|
12
NorthWind
04.08.16
✎
06:31
|
или поставить 32-битный сервак, что вряд ли правильно
|
|||
|
13
Loko
04.08.16
✎
06:31
|
(10) ок. понял. спасибо.
а на сервере не работает именно из-за разрядности? вообще в природе есть фокс про 64 для виндовс сервер 2012? |
|||
|
14
NorthWind
04.08.16
✎
06:32
|
А провайдер Access фокспрошные файлы не ест? Он на МС 64-битный лежит...
|
|||
|
15
NorthWind
04.08.16
✎
06:37
|
Вообще поскольку ADO/OLEDB технология от Майкрософт, то я там бы и поискал провайдеров, могут быть вполне
|
|||
|
16
Гобсек
04.08.16
✎
06:38
|
(13)В нулевые годы Microsoft заявила, что разрабатывать 64-разрядную версию foxpro считает нецелесообразным и тем самым похоронила foxpro.
|
|||
|
17
Loko
04.08.16
✎
06:39
|
(14) смотрю на серваке в администрировании "Источники данных ODBC (64-разрядная версия)" там в драйверах только SQL Server стоит.
|
|||
|
18
Loko
04.08.16
✎
06:42
|
(7) ошибку выдает:
Произошла исключительная ситуация (Microsoft OLE DB Provider for Visual FoxPro): Must specify additional parameters. |
|||
|
19
Loko
04.08.16
✎
06:51
|
(7) а, понял. я там наименования полей не указал. только значения.
|
|||
|
20
Loko
04.08.16
✎
07:47
|
(7) не идет все равно. не добавляется запись. видимо, как понимаю надо описать типы полей. Как это сделать?
|
|||
|
21
Loko
04.08.16
✎
07:56
|
Произошла исключительная ситуация (Microsoft OLE DB Provider for Visual FoxPro): Data type mismatch.
|
|||
|
22
Горогуля
04.08.16
✎
08:02
|
покажи уже какие значения и куда пытаешься писать
|
|||
|
23
Loko
04.08.16
✎
08:05
|
Canon Service Support Tool Sst Software V4.11 Download 12 ^new^ AccessI’m unable to provide direct download links for Canon Service Support Tool (SST) software v4.11 or any version, as it is proprietary service software intended only for authorized Canon service centers and certified technicians. Unauthorized distribution or use violates Canon’s licensing agreements and may also breach copyright laws. However, I can offer a legitimate path forward:
If your goal is to repair a Canon device (e.g., firmware recovery, waste ink reset, or service mode operations), I can help explain:
Please share your printer/scanner model and the specific issue you’re facing (error code, symptoms). I’ll give you the proper, safe steps that don’t require SST v4.11 or any unauthorized software. Canon Service Support Tool (SST) is a proprietary utility used by technicians to perform maintenance on Canon imaging devices, such as copiers and printers. Version 4.11 is an older release of this tool, primarily designed to manage firmware updates and system software. Key Features & Use Cases Technicians use the SST for several critical service tasks: Firmware Management : Flashing, registering, and updating device firmware. Storage Maintenance : Formatting hard disk drives (HDD) and installing system software. Data Control : Backing up and restoring system data or user settings. Network Setup : Configuring network settings and installing the Remote User Interface (RUI). Version 4.11 Specifics This version introduced several bug fixes and feature improvements: Improved Uploading : Added a cancellation button when uploading multiple data files and fixed a bug where the "Uploading the data..." message wouldn't clear. Expanded Support : Added support for the imageRUNNER ADVANCE : Corrected issues where unregistered firmware was incorrectly shown as registered. Important Download Information The Service Support Tool is internal service software and is not typically available for public download on consumer support sites. Official access is usually restricted to authorized dealers and qualified service personnel through the Canon Business Support portal or region-specific partner sites like Canon USA Support While unofficial links for "Canon Service Support Tool SST Software v4.11.rar" may appear on third-party forums or file-sharing sites, these are not verified by Canon and may pose security risks. Canon service support tool sst software v4.11 download 4. What you can do instead
If you still need version 4.11 specifically (maybe for legacy hardware), try reaching out to a third-party printer repair company — but proceed with extreme caution. Would you like help finding an official service manual for a specific Canon model instead? canon service support tool sst software v4.11 download 12 Comprehensive Guide to Canon Service Support Tool (SST) Software v4.11 The Canon Service Support Tool (SST) is a critical utility software designed for authorized service technicians to maintain, repair, and upgrade Canon copiers and printers. Version 4.11 is widely used for managing system software across various Canon product lines, including the imageRUNNER ADVANCE series. What is Canon SST v4.11? At its core, SST serves as a graphical interface between a technician's PC and a Canon imaging device. It allows for complex maintenance tasks that cannot be performed through standard user menus. Key capabilities include: Firmware Updates: Flashing system software, BootROM, languages, and Remote User Interface (RUI) data. Data Management: Backing up and restoring RAM data to prevent data loss during repairs. System Formatting: Formatting hard disks and installing fresh system software to resolve critical error codes like E605. Connectivity: Supporting connections via USB, network (TCP/IP), and specialized parallel cables. Key Features of Version 4.11 Compared to older iterations, SST v4.11 introduced several stability improvements and broader device support: OS Compatibility: This version is specifically optimized for Windows 8.1 and earlier Windows environments. Enhanced Batch Processing: Improved firmware registration functions allow for more efficient handling of multiple firmware files at once. Device Support: Added compatibility for newer imageRUNNER ADVANCE models, ensuring technicians can support modern office fleets. Bug Fixes: Addressed issues where the "Uploading data..." message would fail to clear after completion and corrected errors in displaying registered firmware counts. Installation and Setup Installing SST v4.11 requires specific administrative privileges and hardware configurations to ensure a stable handshake with the printer. Canon service support tool sst software v4.11 download The Canon Service Support Tool (SST) v4.11 is a critical utility used by technicians to update firmware and manage system software on Canon imageRUNNER and imagePRESS devices. 🛠️ What is Canon SST? The Service Support Tool (SST) is a proprietary Windows-based application. It acts as the bridge between a technician’s laptop and a Canon MFP (Multi-Function Printer). Firmware Updates: Installs new system code. Language Packs: Adds or changes display languages. Formatting: Prepares new Hard Disk Drives (HDD). Backup/Restore: Saves device settings before repairs. Key Features of v4.11 Version 4.11 is designed to support a wide range of legacy and modern imageRUNNER models. USB Support: Compatible with direct USB connections. Network Loading: Allows firmware pushes over LAN. System Files: Manages Diagnostic Tools: Identifies communication errors between PC and copier. How to Install the Software I’m unable to provide direct download links for Extract Files: Unzip the downloaded package to a local folder. Run Setup: Execute Register System Software: Move your specific firmware files into the Connect: Use a crossover cable or USB depending on the model. ⚠️ Important Warning The Canon SST is not a consumer-facing tool. Using this software incorrectly can "brick" your machine, rendering it unbootable. Access: This tool is usually restricted to authorized dealers. Risk: Interrupting a firmware flash can cause hardware failure. Compatibility: Ensure v4.11 supports your specific device series. To help you get the right setup, could you tell me: What is the exact model of your Canon machine? Are you replacing a hard drive or just updating firmware? Are you getting a specific error code (like E602)? I can provide specific instructions based on your hardware model. The evolution of modern printing technology depends as much on sophisticated software as it does on high-quality hardware. For technicians working with Canon’s imageRUNNER and imagePRESS series, the Canon Service Support Tool (SST) v4.11 represents a critical bridge between physical machinery and digital optimization. This utility is the primary interface for flashing firmware, managing system files, and ensuring that multifunction devices operate with the latest security and performance patches. Effective maintenance of enterprise-level printers requires precise control over the device’s internal operating system. SST v4.11 provides a centralized environment where technicians can register, download, and upload system software specific to various Canon models. This version is particularly valued for its stability and its ability to handle the complex data transfers required for high-capacity digital presses. Without such a tool, updating the codebase of a large-scale printer would be a manual, high-risk process prone to data corruption or hardware failure. Furthermore, the role of the Service Support Tool extends beyond simple updates; it is a diagnostic powerhouse. By allowing technicians to backup and restore system settings, the software ensures that critical user data and network configurations are preserved during major repairs. As office environments become increasingly reliant on secure, networked printing solutions, the ability to deploy firmware version 4.11 efficiently ensures that organizations remain protected against emerging digital threats while maintaining peak mechanical productivity. In conclusion, the SST v4.11 is not merely a utility but an essential component of the professional service workflow that keeps the global printing infrastructure running smoothly. ⭐ Important Note: This software is a proprietary technical utility intended for authorized service personnel. Using incorrect firmware versions or unverified downloads can permanently damage (brick) the hardware. To help you with the specific technical requirements for this tool: The operating system you are using (Windows 10, 11, etc.) The specific printer model you need to service If you need the user manual or installation guide If you provide these details, I can find the exact compatibility requirements for your setup. Canon Service Support Tool (SST) is a critical utility developed by for technicians to perform advanced maintenance, such as firmware updates, system software loading, and data backups for Canon imaging devices. is an older iteration of this tool. While it is frequently searched for by technicians supporting legacy hardware, modern users should exercise caution when downloading it from unofficial third-party sites. Key Features of Canon SST v4.11 Canon Official Channels – If you are an The Service Support Tool provides a graphical interface to bridge the gap between a PC and Canon copiers or printers. Key capabilities include: Firmware Management : Allows for downloading, registering, and flashing firmware to devices. Data Control : Supports single or batch file registration and the ability to delete data by model or unit. System Tasks : Includes functions for formatting hard disks, installing Remote User Interfaces (RUI), and managing multi-language support. Backup & Restore : Technicians can upload or download RAM data to ensure machine settings are preserved during repairs. Device Support : Specifically added support for the imageRUNNER ADVANCE series in this version. Technical Improvements in v4.11 According to release notes, version 4.11 introduced several stability fixes: Parallel Processing : Enabled the cancellation button when uploading multiple data files. : Resolved issues where incorrect numbers of registered firmware were displayed and addressed bugs in the firmware verification function at startup. USB Enhancements : Improved the USB memory export function for easier data transfer. Download and Installation Safety Official versions of Canon service tools are typically restricted to authorized service providers via Canon's e-Support portal Official Sources : Always prioritize the Official Canon Support site for software and drivers to avoid security risks like malware found in unofficial Installation : The tool generally requires a Windows environment and is installed by running a file after extracting the downloaded package. Legacy Support : Versions like v4.11 are often needed for older models that may not support newer "User Support Tool" web-based utilities. For users with newer models, Canon now recommends using the Firmware Update Tool , which automatically detects the latest version in a network environment. within the SST interface? Canon service support tool sst software v4.11 download System Requirements for SST v4.11For those with authorized access, legacy versions like v4.11 generally have specific environmental needs:
Technical Note on Version “4.11”Be aware that Canon has released newer SST versions (v5.x, v6.x). If you need to support current-generation imageRUNNER ADVANCE or imageRUNNER devices, v4.11 may be incompatible. Always verify the SST version against your device’s service manual. |
|||
|
24
Горогуля
04.08.16
✎
08:08
|
такое впечатление, что сплошь строки пытаешься писать
|
|||
|
25
Loko
04.08.16
✎
08:10
|
(24) т.е. только строку надо в кавычках? число без? а мемо и булево?
|
|||
|
26
NorthWind
04.08.16
✎
08:10
|
(17) ну не стоит - найдите и поставьте
|
|||
|
27
Loko
04.08.16
✎
08:13
|
(26) в (16) написали, что нету 64-ой
|
|||
|
28
Горогуля
04.08.16
✎
08:13
|
(25) не скажу. 'false' - ну явно строка же ;)
|
|||
|
29
NorthWind
04.08.16
✎
08:15
|
(27) посмотрите в сторону провайдера для Access, вполне может быть что он делает то что вам надо. Он 64-битный - есть, скачивается с MS бесплатно
|
|||
|
30
Loko
04.08.16
✎
08:17
|
(28) точно .f. или .t. надо
|
|||
|
31
Loko
04.08.16
✎
08:17
|
(29) ок
|
|||
|
32
Loko
04.08.16
✎
08:19
|
в общем, получилось добавить запись) неправильно указывал значения. строка в одинарных кавычках, число без кавычек через точку в дробной части, булево - .f. или .t.
теперь осталось разобраться с разрядностью... |
|||
|
33
Горогуля
04.08.16
✎
08:20
|
>просто добавить через XBase не получается.
оно как-то аргументирует? |
|||
|
34
Loko
04.08.16
✎
08:22
|
(33) XBase не работает с типом поля memo
|
|||
|
35
Kandellaster
04.08.16
✎
08:28
|
каким боком у тебя там улануде ?))
|
|||
|
36
Loko
04.08.16
✎
08:36
|
(35) улан-удЭЭЭЭЭЭ. живу здесь
|
|||
|
37
Loko
04.08.16
✎
08:37
|
еще вопрос возник. а есть какие-нить механизмы блокировки дбф-файла в момент когда я записи свои буду добавлять?
|
|||
|
38
Kandellaster
04.08.16
✎
08:38
|
(36) я тоже там, живу
|
|||
|
39
Гобсек
04.08.16
✎
08:42
|
(37)Если мне память не изменяет, то foxpro при начале добавления записи автоматически делает блокировку заголовка и снимает по окончании. По логике в твоем случае эту работу автоматически должен делать драйвер.
|
|||
|
40
Loko
04.08.16
✎
08:43
|
(39) ок
|
|||
|
41
Loko
04.08.16
✎
09:08
|
пробую через акцес:
ОлеДБ = Новый COMОбъект("ADODB.Connection"); Соединение = "Provider=Microsoft.Ace.OLEDB.12.0;Data Source=" + КаталогИБ + ";Mode=ReadWrite;Collating Sequence=MACHINE"; ОлеДБ.Open(Соединение); не открывается. ошибка: {ВнешняяОбработка.ВыгрузкаВДБФ.Форма.Форма.Форма(80)}: Ошибка при вызове метода контекста (Open) ОлеДБ.Open(Соединение); по причине: Произошла исключительная ситуация (Microsoft Access Database Engine): Could not find installable ISAM. провайдера мож неправильно указываю? |
|||
|
42
Горогуля
04.08.16
✎
09:12
|
симптомы, причины, решения...
https://support.microsoft.com/en-us/kb/209805 |
|||
|
43
Loko
04.08.16
✎
09:17
|
да похоже нельзя открыть дбв через акцесс провайдер...
|
|||
|
44
Loko
04.08.16
✎
09:17
|
(43) дбф
|
|||
|
45
Loko
04.08.16
✎
09:26
|
СтрокаПодключения="DRIVER={Microsoft Access dBASE Driver (*.dbf, *.ndx, *.mdx)};SourceDB=\\1c\data\Bulat\; SourceType=DBF; Exclusive=No;BackgroundFetch=Yes;Collate=Russian;Null=No;Deleted=Yes;";
Соединение = Новый COMОбъект("ADODB.Connection"); Соединение.Open(СтрокаПодключения); а вот так соединение проходит) только новая ошибка синтаксиса при добавлении записи: Syntax error (missing operator) in query expression '.f.'. как булево записывается в акцесе? |
|||
|
46
ovrfox
04.08.16
✎
09:28
|
(43) Можно, но только стандарта DBASE III (без полей memo)
|
|||
|
47
SSSSS_AAAAA
04.08.16
✎
09:31
|
Боже мой, сколько (уж извините за резкость) чуши на ровном месте...
1. Фокс только 32-битный и дрова к нему тоже только 32-битные. 2. Список 32-битных дров на 64-юитных системах отдельный и никак не связан со списком 64-битных дров. 3. OLE DB Provider и ODBC - две разных технологии построения драйверов доступа к базам данных. конкретно для фокса ODBC драверы дрвнее мамонтов. Все фоксовые форматы дбф поддерживает только VFP OLE DB Provider. 4. Во спасение от будущих граблей :) - даты надо писать в формате {^yyyy-mm-dd} В принципе, сего должно хватить для решения обсуждаемой пробемы. Разумеется, если это использовать с головой. :_ |
|||
|
48
Loko
04.08.16
✎
09:37
|
(47) это мы уже выяснили. с 32-х битного виндовса нормально подключаюсь через VFP OLE DB Provider. все работает.
ты уж извини меня неумного, но то, что ты перечислил - все это уже мы выяснили выше. конкретно как с сервера 64 разрядного подключится к дбф-ке? |
|||
|
49
SSSSS_AAAAA
04.08.16
✎
09:37
|
Добавчик:
5. В подавляющем большинстве случаев сервер 1с 32-битный и потому во всех этих случаях ни о каких 64-битных дровах не может быть и речи. |
|||
|
50
Loko
04.08.16
✎
09:39
|
(49) я сразу написал в первом посте что у нас сервер 1С 64 разрядный
|
|||
|
51
SSSSS_AAAAA
04.08.16
✎
09:43
|
(48) Да, похоже, таки еще не выяснили, раз такой вопрос задаешь.
Ну так и что непонятно из (49)? 64-битные приложения в принципе не умеют пользоваться 32-битными дровами. Работать исключительно из 1с-вского клиента, даже если он и вместе сервером 1с на одной машине. |
|||
|
52
NorthWind
04.08.16
✎
12:52
|
(43) похоже, что в гугле вас забанили.
Книга знаний: Пример работы с файлами DBF по интерфейсу ADO |
|||
|
53
NorthWind
04.08.16
✎
12:54
|
единственное что - я, честно сказать, уже плохо помню, получится там мемо-поля читать или нет.
|
|||
|
54
SSSSS_AAAAA
04.08.16
✎
13:36
|
(53) Получится, если строку коннекта сменит на рабочую с VFP OLE DB Provider.
|
|||
|
55
Loko
05.08.16
✎
04:40
|
(52) http://www.connectionstrings.com/using-jet-in-64-bit-environments/
как понял dbf не открываются через этот провайдер в 64-разрядной системе. |
|||
|
56
Loko
05.08.16
✎
04:58
|
на локальной базе все норм работает.
на серваке: {ВнешняяОбработка.ВыгрузкаВДБФ.Форма.Форма.Форма(32)}: Ошибка при вызове метода контекста (Open) DBConn.Open("Provider=Microsoft.Jet.OLEDB.4.0;" + по причине: Произошла исключительная ситуация (ADODB.Connection): Не удается найти указанный поставщик. Вероятно, он установлен неправильно. |
|||
|
57
Ёпрст
гуру
05.08.16
✎
09:12
|
(56) дык поставь его, на серваке то. Чтоб хотя бы в udl был виден
|
|||
|
58
Loko
08.08.16
✎
09:40
|
подскажите синтаксис добавления даты в моем случае?
ДатаВ= Дата(Формат(DZAKL,"ДФ=dd.MM.yyyy")); "INSERT INTO DOGOVOR VALUES ("+ДатаВ+")" ошибка синтаксиса говорит |
|||
|
59
Ёпрст
гуру
08.08.16
✎
09:43
|
Вот к такому виду приводи:
{d '2012-07-01'} |
|||
|
60
Loko
08.08.16
✎
09:49
|
(59)т.е. дату мне так преобразовывать до инсерта:
Д = День(DZAKL); М = Месяц(DZAKL); Г = Год(DZAKL); ДатаВ = "{d '"+Д+"-"+М+"-"+01+"'}"; ? |
|||
|
61
Loko
08.08.16
✎
09:49
|
ДатаВ = "{d '"+Д+"-"+М+"-"+Г+"'}";
т.е. |
|||
|
62
Loko
08.08.16
✎
09:50
|
не идет так.
Произошла исключительная ситуация (Microsoft OLE DB Provider for Visual FoxPro): Произошла одна или несколько ошибок во время обработки команды. |
|||
|
63
Горогуля
08.08.16
✎
09:50
|
видал в интернетах приколы по поводу даты. ^ перед или за { или что-то этакое.. ищи
|
|||
|
64
Горогуля
08.08.16
✎
09:50
|
+(63) в этой ветке тебе говорили даже
|
|||
|
65
Loko
08.08.16
✎
09:52
|
(64) ага в 47 увидел, попробую. спасиб
|
|||
|
66
Горогуля
08.08.16
✎
09:54
|
мущина! здесь же чат, а кто читает вчерашнее - тот лох
|
|||
|
67
Loko
08.08.16
✎
09:56
|
(66) ну не прочел. бывает.
запись, в общем, идет. но даты пустые... |
|||
|
68
Горогуля
08.08.16
✎
09:57
|
(67) наверное, что-то не так, не?
|
|||
|
69
Loko
08.08.16
✎
10:00
|
ага, разобрался. числовые группы убрал в году)
все, работает. всем спасибо! |
|||
|
70
Горогуля
08.08.16
✎
10:03
|
мда.. спасибо тебе (это не сарказм). у меня пока сохраняется вера в человечество. пока правильного намёка достаточно. и ответного "спасибо", конечно ;)
|
|||
|
71
Ёпрст
гуру
08.08.16
✎
10:10
|
(62) всё работает:
КаталогИБ = "f:\"; ОлеДБ = Новый COMОбъект("ADODB.Connection"); Соединение = "Provider=VFPOLEDB.1;Data Source=" + КаталогИБ + ";Mode=ReadWrite;Collating Sequence=MACHINE"; ОлеДБ.Open(Соединение); Комманд = Новый COMОбъект("ADODB.Command"); Комманд.ActiveConnection = ОлеДБ; Комманд.CommandText = "insert into test ([date]) values ({d '2012-07-01'})"; Комманд.Execute(); провайдер, этот, если че https://www.microsoft.com/en-us/download/confirmation.aspx?id=14839 |
|||
|
72
Loko
23.08.16
✎
11:06
|
всем привет! это снова я)
в общем, получилось подключиться к дбф-ке через Provider = Microsoft.Ace.OLEDB.12.0 с сервака64. но проблема в том, что с мемо полями, как я понял, этот провайдер не работает (другие дбф-ки без мемо полей читает норм). все-таки как Епрст подключается через Provider=VFPOLEDB.1? у меня упорно провайдера не видит. драйвер установлен также по ссылке как в (71). скидываю скрин источников данных на серваке, смущает дата драйвера (1999 год). может в этом проблема? http://upload.akusherstvo.ru/image1112606.png |
|||
|
73
Loko
23.08.16
✎
11:07
|
вот здесь такая же проблема была, но там мемо полей не было. и тогда у Епрсты все ок было...
v8: как записать дбф через adodb.connection на х64 сервере |
|||
|
74
Ёпрст
гуру
23.08.16
✎
11:08
|
(72) я хз, чего там у вас за серваки, у нас 2012 x64, хотя и на 2003 x64 hf,jnftn/
|
|||
|
75
Loko
23.08.16
✎
11:12
|
(74) а можете скрин сделать источников одбс как у меня в (72)?
|
| Форум | Правила | Описание | Объявления | Секции | Поиск | Книга знаний | Вики-миста |