Most voted "importing" questions
Tag used to refer to import in general (import from database, from archives, from libraries, etc).
Learn more…101 questions
Sort by count of
-
1
votes0
answers65
viewsImport excel table directly into mysql
I’m using the following code to try to import 30,000 csv records into a comic mysql on the hostgator server load data local infile 'public_html/empresa.csv' into table empresa fields terminated by…
-
1
votes1
answer579
viewsProblems with the vscode interpreter
Well, the Code works, I changed the vscode interpreter that was in global python 3.7 from Ubuntu even to virtualenv python, the code works, but I do not understand why this error in Problems. I’m…
python visual-studio-code importing virtualenv interpreterasked 5 years, 4 months ago Raisler Voigt 73 -
1
votes1
answer1279
viewsReferencing Variables in Python Imported Functions
I am learning Python on my own and in many videos and subjects programmers advise and emphasize the importance of "clean and organized codes". So I’m trying to create classes and functions in…
-
1
votes2
answers973
viewsHow to export and import object array in Javascript?
I am creating a system, and within the main codes I have large arrays of objects that store information about products and information in which I use within the functions for certain system…
-
1
votes0
answers47
viewsOpenrowset error
good afternoon! I’m having trouble running an Openrowset: use Planejamento_QA go select * from openrowset('Microsoft.ACE.OLEDB.12.0', 'Excel 12.0; Database=C:\Import_SQL\KE24.xlsx', 'KE24$'); go…
-
1
votes1
answer223
viewsImport problem when compiling classes in different packages
I have a problem with import of a package that I created in Java, the project directory tree is this: . ├── CsvFiles │ ├── 01 │ ├── 01.zip │ ├── ALPOO_GRADUACAO_2018.csv │ ├──…
-
1
votes2
answers47
viewsProblem when I try to import my own modules into Lua (not found)
In the main file.lua: local calculadora = { somar = function(x, y) return x + y end } function calculadora.multiplicar(x, y) return x * y end return calculadora In the Copyofmain file. local…
-
1
votes0
answers23
viewsImport and Construction of the Pnad 1999 Sampling Plan
I’m looking to analyze the 1999 PNAD and expand its results to the population, so I’m using the package Survey and , however, my problem lies in the import and construction phase of the sampling…
-
0
votes1
answer2127
viewsHow to change product categories in Magento via Mysql?
I did the import of csvof the products from my store but they came with all changed categories. Is there any way to exchange categories via mysql or in some other faster way?…
-
0
votes0
answers143
viewsUsing Navigation Drawer and Page Sliding Tab Strip
I’ve tried every way I can imagine importing this library (Navigation Drawer and Page Sliding Tab Strip ) in a project, however, without success. I followed the step-by-step (importing the other…
-
0
votes4
answers2802
viewsHow to import classes from your subclasses in PHP?
Basically, I have 3 files located in different directories: diretorio_do_projeto/classes/config.php diretorio_do_projeto/classes/abstract/abstract-dao.php…
-
0
votes1
answer115
viewsAndroid studio problem with Libs
I added a lib generated from a project of mine to get the classes and not have conflict that pack only that is giving me the following error Error:Execution failed for task ':app:preDexDebug'. >…
-
0
votes3
answers430
viewsProblem when importing model
Hello, I’m not getting the import of this model have the model: class Contrato(models.Model): within models.py and inside my serializers.py need to do import from models import Contrato nor from…
-
0
votes1
answer290
viewsIs it possible to add non-native libraries to python?
I’m wondering if there is a possibility to add a non-native library from python. Example, I’m using the NetworkX to create graph, I need to install the library and everything else. I am wanting to…
-
0
votes3
answers392
viewsImport a Swift into another Swift
I want to import a Swift file into another Swift file, how to proceed ? Using Xcode 7.0 beta 3 via Swift 2 in an unsuccessful attempt…
-
0
votes1
answer3982
viewsError: "in module named xxxx"
I have Python installed on my Pcs (Windows 7 and 8) but I can’t run any script that contains import. Error message always appears: import error: no module named xxxx.…
-
0
votes1
answer33
viewsProblems importing with LWJGL
Hi, I followed in the footsteps of that video, and I took the sample code from website. Trying to matter says method is undefined:…
-
0
votes1
answer331
viewsHow to import mailing list from Hotmail/Outlook?
Recently I had to import the Hotmail/Outlook mailing list of the users of my application, and I present below one of the ways you can proceed if you also need to implement this feature in your…
-
0
votes2
answers332
viewsJSP to import all acquisitions from a directory
It is possible import all files in a directory with only one call working with JSP ? Today I have the following: <script src="../resources/js/angular/directive/layout/mensagem.js"…
-
0
votes1
answer155
viewsHow to extract data from a Django Queryset
I have a table with some information, the employee’s name, Pis, date and time, the time field records the time of registration on the time clock, these records are all in the same column, for…
-
0
votes1
answer3354
viewsImport in Python
How do I import in Python being this class created by me? Example: in java I create a connection class and I can import it in the stock class to be able to persist in the bank, but I don’t know how…
-
0
votes1
answer135
viewsSQL - Import data from a file
Hello, friends as they are? Good I am facing a problem to import a previously created table: The following return message when I try to import into Mysql: Static analysis: 3 errors Were found During…
-
0
votes3
answers569
viewsImport a. java into another . java
I have 2 codes: Code 1: class Principal { public static void main(String[] args){ Pessoas pessoa1 = new Pessoas(); pessoa1.idade = 1; pessoa1.nascimento = 2; pessoa1.altura = 0.5; pessoa1.nome =…
-
0
votes2
answers921
viewsImport/insert other files - go (golang)
I am studying go (golang) and I have a question regarding the import of files, the doubt is about something "elementary" but I could not find anything specifically about it. I have a package (test)…
-
0
votes1
answer26
viewsimporting backup by Mariadb terminal
Yesterday I was doing a test in Postgresql of insertion and backup import and export and Postgresql has an SQL import command as follows: psql# \i backup.sql Has something to do with that in…
-
0
votes0
answers76
viewsWrite an XML file inside Solucion C#
Good evening Everyone, I would like a help, the structure of my project is according to the image below. I would like to import data from my table to this 'Arq.xml' file that is inside the project.…
-
0
votes0
answers184
viewsChange field format in excel to import into sql server Wizard
I need to import data from an excel to sql server. My big problem is that the data coming from the source, from an excel column is being interpreted by this Wizard as varchar, even though I make all…
-
0
votes1
answer184
viewsHow to Import Classes from Another Package
How do I import a class that is in another package Example: package "model" contains the class "Car", package "execution" contains the class "Main", from within the "Main" I want to import the class…
-
0
votes2
answers1874
viewsProblem importing a class from another folder and using it. (Python)
I’m going crazy here. I’m facing a problem that should have been solved by logic already. The problem is this: I have two folders: Novapasta/ Novafolder/classes In the first folder there is a file:…
-
0
votes1
answer786
viewsHow to add external training in chatterbot
I created a very simple bot to learn how to use chatterbot. This library already comes with a training, but I wanted to put an extra training with the import of a corpus in Portuguese that I found…
-
0
votes1
answer78
viewsHow to import photos from XML with PHP
I am trying to import an XML file, but do not know how to import when there is a field inside another field, see below the example that explains better: <imovel> <id>1</id>…
-
0
votes1
answer329
viewsError importing data from an Excel spreadsheet to mysql directly on the server
I am trying to import data from an Excel csv spreadsheet, however the following error appears: Invalid column count in CSV input on line 1. I imported directly to the root of the database (created…
-
0
votes0
answers40
viewsI cannot import all xml sublevels with PHP
I have a function to import the xml file: $xml = new SimpleXMLElement($arquivoxml); foreach($xml->Imoveis->Imovel AS $itens) { $ref=$itens->Id; $atributospai = $itens->Atributos; foreach…
-
0
votes1
answer145
viewsImport table in R without names (skip line did not work)
I’m trying to import some data into R, but no matter what I do, there’s always a row with column names (row information I want to skip). This is the table: However, in R, even skipping the first…
-
0
votes2
answers501
viewsI cannot install Tensorflow-GPU
I started learning about tensorflow recently and decide to trade for the GPU version, for being much faster, but I can’t, always gives the same error. Specs: I5-8400 GTX 1060 6GB Windows 10 Home 64x…
python importing machine-learning machine-learning tensorflowasked 5 years, 8 months ago Gabriel Borges 11 -
0
votes1
answer40
viewsHow to load all . lib in a directory through Cmake?
I have in my CMakeLists.txt several calls to the add_library where these call libraries(.lib) are located in the same directory. I would like to import all libs from that directory /lib without…
-
0
votes1
answer221
viewsPostgresql - Importing . CSV into an existing table
I have a table with three columns, which already has data, in my Postgresql. I have a file . CSV with four columns. I would like to add the data of three columns of . CSV to SQL without replacing…
-
0
votes1
answer60
viewsFunction to import file. py?
Good afternoon, I created a file called test.py with code that fetches information from a database and turns it into a Dataframe. I’m having trouble creating a function and import this file, follow…
-
0
votes1
answer61
viewshow to import a file. ofx in VFP
I need to import a valid OFX THAT IS AN SGML file for a cursor, so I searched how it is not the same structure as an XML it is not possible to import using the same method as an xml (which is…
-
0
votes1
answer76
viewsPostgres - lo_import - import user’s machine directory image
I have an application that stores the photo of a product - it is in a table separates from the main table CREATE TABLE produtos_imagem ( registro integer NOT NULL, imagem oid, CONSTRAINT…
-
0
votes0
answers19
viewsData being entered correctly only in debug mode
I’m working on an archive import .txt where the elements are separated by |. So far so good, the file is interpreted, the values are stored in an array and then I need to enter the values in the…
-
0
votes1
answer67
viewsHow do I import the "javax.Measure" package without IDE?
I am trying to import, in Java 8 and without using IDE, the package javax.measure with the following code: import javax.measure; public class Measure { public static void main(String[] args) {…
-
0
votes1
answer85
viewsHow to install C++ modules
I would like to know how to install new modules in C++. For example, I recently discovered that there is a module that has an application of the method format of strings very similar to the method…
-
0
votes1
answer112
viewsPyhton "No module named" error with local imports
I created a simple App using Flask, but I have a problem when importing the "Resources" that I created into another file. This is the main file: from flask_restful import Api from flask import Flask…
-
0
votes1
answer42
viewsHow to import an external library into REACT.JS
I am trying to import an external library directly from the browser in REACT.JS, which would be in HTML: <script type="text/javascript" src="https://bibliotecahipotetica..."></script>…
-
0
votes0
answers45
viewsImport some columns from TXT to VBA
Good afternoon! I’m quite a beginner and I’m having doubts about how to proceed. I have a TXT and could import it to VBA and until I could get the first line that I didn’t need. However, I need to…
-
-1
votes1
answer1825
viewsI cannot import a project into Netbeans
I cannot import a zip project into Netbeans. What is happening and when I go to >File>Import Zip project is I select the File and click on import it happens this Or at the time of importing it…
-
-1
votes1
answer37
viewsFlask import problem (Unable to import 'controllers' pylint(import-error)
Good evening, I’m starting to program now and I’m trying to make a simple system using the Flask framework, but during the organization of the files I came across the problem of the title, I’m not…
-
-1
votes1
answer20
viewsC# Scrpits that are imported as a component in UNITY of the not found error every time you close the program
After restarting Unity the image error appears for all the project scripts. I created the script and imported and also tried to create direct by Add Component to check if it would not disappear, but…
-
-1
votes1
answer14
viewsModulenotfound when I try to import an external library
pip install pillow >>> Requirement already satisfied: pillow in…