active questions tagged import - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T07:16:53Z http://stackoverflow.com/feeds/tag/import http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1935886/flex-ai-import-flash 0 flex , ai,import,flash msaif 2009-12-20T13:53:47Z 2009-12-23T05:08:30Z <p>can i import vector graphics file *.ai file(illustrator generated) into flex3 ??</p> http://stackoverflow.com/questions/1158108/python-importing-a-file-that-is-a-symbolic-link 1 python - Importing a file that is a symbolic link leela 2009-07-21T09:15:35Z 2009-12-22T19:54:49Z <p>Hi,</p> <p>If I have files x.py and y.py . And y.py is the link(symbolic or hard) of x.py .</p> <p>If I import both the modules in my script. Will it import it once or it assumes both are different files and import it twice.</p> <p>What it does exactly?</p> http://stackoverflow.com/questions/1930982/when-should-i-call-savechanges-when-creating-1000s-of-entity-framework-objects 1 When should I call SaveChanges() when creating 1000's of Entity Framework objects? (like during an import) SkippyFire 2009-12-18T22:14:26Z 2009-12-21T22:19:08Z <p>I am running an import that will have 1000's of records on each run. Just looking for some confirmation on my assumptions:</p> <p>Which of these makes the most sense:</p> <ol> <li>Run <code>SaveChanges()</code> every <code>AddToClassName()</code> call.</li> <li>Run <code>SaveChanges()</code> every <em>n</em> number of <code>AddToClassName()</code> calls.</li> <li>Run <code>SaveChanges()</code> after <em>all</em> of the <code>AddToClassName()</code> calls.</li> </ol> <p>The first option is probably slow right? Since it will need to analyze the EF objects in memory, generate SQL, etc.</p> <p>I assume that the second option is the best of both worlds, since we can wrap a try catch around that <code>SaveChanges()</code> call, and only lose <em>n</em> number of records at a time, if one of them fails. Maybe store each batch in an List&lt;>. If the <code>SaveChanges()</code> call succeeds, get rid of the list. If it fails, log the items.</p> <p>The last option would probably end up being very slow as well, since every single EF object would have to be in memory until <code>SaveChanges()</code> is called. And if the save failed nothing would be committed, right?</p> http://stackoverflow.com/questions/1939622/dynamically-import-class-by-name-for-static-access 0 Dynamically import class by name for static access desolat 2009-12-21T11:39:14Z 2009-12-21T12:39:40Z <p>I am generating class names dynamically and then want to import that class by its name to access a static method.</p> <p>This is the class to import in "the_module.py":</p> <pre><code>class ToImport(object): @classmethod def initialize(cls, parameter): print parameter </code></pre> <p>According to a <a href="http://www.bensnider.com/?p=20" rel="nofollow">Blog post</a> this is as far as I came:</p> <pre><code>theModule = __import__("the_module") toImport = getattr(theModule, "ToImport") toImport.initialize("parameter") </code></pre> <p>But the blog example seems to be incomplete as it gives me a module object without my desired class <code>ToImport</code>. Looking at the <code>__import__()</code> <a href="http://www.python.org/doc/current/library/functions.html?highlight=%5F%5Fimport%5F%5F#%5F%5Fimport%5F%5F" rel="nofollow">documentation</a> shows me that there are more optional attributes to the function. I succeeded with</p> <pre><code>theModule = __import__("the_module", globals(), locals(), ["ToImport"]) </code></pre> <p>Why do I have to give the <code>fromlist</code> attribute? Can't I import all the modules attributes?</p> http://stackoverflow.com/questions/1939065/oracle-pl-sql-import-japanese-values-csv-file 0 Oracle PL/SQL Import Japanese values CSV file cedric 2009-12-21T09:19:21Z 2009-12-21T10:07:57Z <p>Hi. I am having problem with importing csv files containing values in japanese characters. When I do so it will display garbage when I query. my OS is japanese. My encoding for oracle NLS_LANG is JAPANESE_JAPAN.JA16SJISTILDE. I don't know what the problem is. When I try to import the very same file in some of my office mates' PC it just works fine</p> http://stackoverflow.com/questions/1938724/generic-import-merge-logging-preprocessing-framework 0 Generic import/merge logging preprocessing framework Aran Mulholland 2009-12-21T07:41:52Z 2009-12-21T07:41:52Z <p>We write reporting software. we want to do imports of data, when the user imports data we need to do a pre-process phase and display an overview of the impact the import will have.</p> <p>then the user will be able to choose actions based on this pre-processing phase that will determine how the actual import will proceed. usually in a situation such as this there will be several hundred issues that may arise, that can be categorised into groups, as they are essentially the same error/issue on different data.</p> <p>we are looking for a generic logging management approach that allows users to specify actions to take at either the group level or individual data level. i have a feeling i will be writing this ourselves but would be interested to see what others have done. if anyone has looked at this problem space (even in a different language, th dot Net is preferred) i would be interested to hear about the problems and challenges.</p> http://stackoverflow.com/questions/935207/how-to-populate-field-descriptions-in-ms-access 1 How to populate field descriptions in MS Access Dave Nicks 2009-06-01T15:02:53Z 2009-12-20T03:00:15Z <p>When linking to an external data source via ODBC (especially an AS/400), I often run into cryptic field names on the other side, where a data dictionary is not available. In the rare event that I'm able to get the field descriptions from the other db, I would like to be able to import them all at once, rather than copy/paste each description into the table design form one at a time.</p> <p>I wasn't able to find this in the system tables, so I don't know where this metadata is stored. Any ideas on where it is, and whether it can be updated in batch?</p> <p>Update: I managed to read the schema using the OpenSchema method (see code below), but this returns a read-only dataset, making it impossible for me to update the descriptions.</p> <pre><code>Function UpdateFieldDescriptions() Dim cn As New ADODB.Connection Dim rs As ADODB.Recordset Dim rs2 As Recordset Dim strSQL As String Dim strDesc As String Set cn = CurrentProject.Connection Set rs = cn.OpenSchema(adSchemaColumns) While Not rs.EOF If Left(rs!table_name, 4) &lt;&gt; "MSys" Then Debug.Print rs!table_name, rs!column_name, rs!Description strSQL = "SELECT Description " &amp; _ "FROM tblColumnDescriptions a " &amp; _ "WHERE a.Name = """ &amp; rs!table_name &amp; """ AND " &amp; _ "a.Column = """ &amp; rs!column_name &amp; """;" Set rs2 = CurrentDb.OpenRecordset(strSQL) While Not rs2.EOF strDesc = rs2.Fields(0) rs!Description = strDesc ' &lt;---This generates an error Wend End If rs.MoveNext Wend rs.Update rs.Close Set rs = Nothing Set rs2 = Nothing Set cn = Nothing End Function </code></pre> http://stackoverflow.com/questions/1895744/python-app-engine-import-issues-after-app-is-cached 0 Python app engine import issues after app is cached justinjas 2009-12-13T06:27:00Z 2009-12-19T22:28:46Z <p>I'm using a modified version on juno (<a href="http://github.com/breily/juno/" rel="nofollow">http://github.com/breily/juno/</a>) in appengine. The problem I'm having is I have code like this:</p> <pre><code>import juno import pprint @get('/') def home(web): pprint.pprint("test") def main(): run() if __name__ == '__main__': main() </code></pre> <p>The first time I start the app up in the dev environment it works fine. The second time and every time after that it can't find pprint. I get this error:</p> <pre><code>AttributeError: 'NoneType' object has no attribute 'pprint' </code></pre> <p>If I set the import inside the function it works every time:</p> <pre><code>@get('/') def home(web): import pprint pprint.pprint("test") </code></pre> <p>So it seems like it is caching the function but for some reason the imports are not being included when it uses that cache. I tried removing the main() function at the bottom to see if that would remove the caching of this script but I get the same problem. </p> <p>Earlier tonight this code was working fine, I'm not sure what could have changed to cause this. Any insight is appreciated. </p> http://stackoverflow.com/questions/1933928/help-with-python-urllib2-import-error 1 help with python urllib2 import error Baha 2009-12-19T19:35:37Z 2009-12-19T19:48:55Z <p>In my script, I've imported urrlib2 and the script was working fine. After reboot, I get the following error:</p> <pre><code> File "demo.py", line 2, in &lt;module&gt; import urllib2 File "/usr/lib/python2.6/urllib2.py", line 92, in &lt;module&gt; import httplib File "/usr/lib/python2.6/httplib.py", line 78, in &lt;module&gt; import mimetools File "/usr/lib/python2.6/mimetools.py", line 6, in &lt;module&gt; import tempfile File "/usr/lib/python2.6/tempfile.py", line 34, in &lt;module&gt; from random import Random as _Random ImportError: cannot import name Random </code></pre> <p>And when I do <code>import random</code> separately, it works fine. Any ideas what might be wrong?</p> <p>I'm using ubuntu 9.10 (up to date). thanks</p> http://stackoverflow.com/questions/1933833/get-xml-from-excel-create-dataset-from-xml-and-import-into-tables 0 get xml from excel, create dataset from xml and import into tables. anish mohan 2009-12-19T19:00:10Z 2009-12-19T19:00:10Z <p>I need to create an dataset from excel.</p> <p>Currently I am doing it by following way :- Go through each worksheet in workbook, get each cells value..and create datatable for each worksheet..and create a dataset for given workbook.</p> <p>But we change the extension of an excel file to .xml(a.xls -> a.xml)..and create dataset out of this xml (this will avoid the above for loops).</p> <p>My question is which method is faster...&amp; better ?</p> http://stackoverflow.com/questions/1933289/esp-error-when-i-call-an-api-function 0 ESP Error when I call an API function? Nick Brooks 2009-12-19T16:05:13Z 2009-12-19T17:23:12Z <p><em>platform : <strong>win32</strong> , language : <strong>c++</em></strong></p> <p><strong>I get this error when I call an imported function I declared:</strong></p> <blockquote> <p>Run-Time Check Failure #0 - The value of ESP was not properly saved across a function call. This is usually a result of calling a function declared with one calling convention with a function pointer declared with a different calling convention.</p> </blockquote> <p><strong>And this is the code I used:</strong></p> <pre><code>int LoadSongFromFile(int module); typedef int (CALLBACK* loadSongT)(LPCTSTR); //... HINSTANCE dllHandle = NULL; loadSongT loadSongPtr = NULL; dllHandle = LoadLibrary(L"miniFMOD.dll"); loadSongPtr = (loadSongT)GetProcAddress(dllHandle,"SongLoadFromFile"); int songHandle = loadSongPtr(L"C:\b.xm"); </code></pre> <p>The function I'm trying to call is <strong>SongLoadFromFile</strong> which requires one argument (in C# it is string so I assume its LPCTSTR in C++) and returns an int value.</p> <p><strong><em>Can somebody check what have I done wrong?</em></strong></p> <p>P.S. songHandle gets a weird negative value of <strong>-858993460</strong></p> <p>This is how I can call that function from C# :</p> <pre><code>[DllImport("MiniFMOD.dll")] public static extern int SongLoadFromFile(string name); </code></pre> <p>P.S. 2 : Using *typedef int (<strong>cdecl <em>loadSongT)(char</em>);* doesn't return an error but **songHandle</strong> comes up as 0.</p> <h2>miniFMOD.dll is an unmanaged library</h2> http://stackoverflow.com/questions/147821/loading-sql-files-from-within-php 1 Loading .sql files from within PHP Josh Smeaton 2008-09-29T07:38:09Z 2009-12-19T16:52:32Z <p>I'm creating an installation script for an application that I'm developing and need to create databases dynamically from within PHP. I've got it to create the database but now I need to load in several .sql files. I had planned to open the file and mysql_query it a line at a time - until I looked at the schema files and realised they aren't just one query per line.</p> <p>So, please.. how do I load an sql file from within PHP? (as phpMyAdmin does with it's import command).</p> http://stackoverflow.com/questions/1924906/python-import-a-method-that-depends-on-a-imported-class 0 python import a method that depends on a imported class Mathias Nielsen 2009-12-17T22:02:33Z 2009-12-18T05:20:48Z <p>So if I have 2 files that look like this:</p> <p>File 1</p> <pre><code>import class1 import method1 def method2(something): result = method1(classname=class1) </code></pre> <p>File 2</p> <pre><code>def method1(classname): some_result = classname.resultfinder return some_result </code></pre> <p>Will this work?</p> <p>I mean, since I am not importing class1 in the file where method1 lives, but method1 still ends up using class1. Will method1 have access to class1 via the import made in File 1 where method 1 is imported to?</p> http://stackoverflow.com/questions/1925764/python-import-fails-when-called-from-php 0 python import fails when called from PHP Alex Nguyen 2009-12-18T01:34:39Z 2009-12-18T01:41:42Z <p>I'm having a puzzling problem when trying to import a module in python only when the script is called from php via system or exec.</p> <p>From the python shell:</p> <pre><code>import igraph #This works. </code></pre> <p>if the previous line was in a file, say, test_module.py, then:<br> python test_module.py in the bash works.</p> <p>Within PHP:<br> exec("python test_module.py",$output,$retval) -> fails : $retval = 1.</p> <p>However, if the script is instead : <code>import math</code>, then this is fine.</p> <p>Anybody ever dealt with something similar?</p> http://stackoverflow.com/questions/1922291/testing-subpackage-modules-in-python-3 0 Testing subpackage modules in Python 3 Mitchell Model 2009-12-17T14:57:46Z 2009-12-17T14:57:46Z <p>I have been experimenting with various uses of hierarchies like this and the differences between absolute and relative imports, and can't figure out how to do routine things with the package, subpackages, and modules without simply putting everything on sys.path. I have a two-level package hierarchy:</p> <pre> MyApp __init__.py Application __init__.py Module1 Module2 ... Domain __init__.py Module1 Module2 ... UI __init__.py Module1 Module2 ... </pre> <p>I want to be able to do the following:</p> <ol> <li>Run test code in a Module's "if <strong>main</strong>" when the module imports from other modules in the same directory.</li> <li>Have one or more test code modules in each subpackage that runs unit tests on the modules in the subpackage.</li> <li>Have a set of unit tests that reside in someplace reasonable, but outside the subpackages, either in a sibling package, at the top-level package, or outside the top-level package (though all these might end up doing is running the tests in each subpackage)</li> <li>"Enter" the structure from any of the three subpackage levels, e.g. run code that just uses Domain modules, run code that just uses Application modules, but Application uses code from both Application and Domain modules, and run code from GUI uses code from both GUI and Application; for instance, Application test code would import Application modules but not Domain modules.</li> <li>After developing the bulk of the code without subpackages, continue developing and testing after organizing the modules into this hierarchy.</li> </ol> <p>I know how to use relative imports so that external code that puts MyApp on its sys.path can import MyApp, import any subpackages it wants, and import things from their modules, while the modules in each subpackage can import other modules from the same subpackage or from sibling packages. However, the development needs listed above seem incompatible with subpackage structuring -- in other words, I can't have it both ways: a well-structured multi-level package hierarchy used from the outside and also used from within, in particular for testing but also because modules from one design level (in particular the UI) should not import modules from a design level below the next one down.</p> <p>Sorry for the long essay, but I think it fairly represents the struggles a lot of people have been having adopting to the new relative import mechanisms.</p> http://stackoverflow.com/questions/1916251/expressing-an-sconscripts-own-dependencies 0 Expressing an SConscript's Own Dependencies Andres Jaan Tack 2009-12-16T17:27:42Z 2009-12-17T14:08:09Z <p>I have an SCons project set up as follows:</p> <pre><code>Project/ SConstruct # "SConscript('stuff/SConscript', variant_dir = 'build') stuff/ SConscript # "import configuration" configuration/ __init__.py Thing.py </code></pre> <p>When building, the SConscript is copied to the build directory, but the "configuration" module is not. Ordinarily, one would express a file dependency with the <code>Depends()</code> function (e.g. <code>Depends(program, object_files)</code>). In this case, though, the SConscript file is itself the "target" of the dependency.</p> <p>How do I express this in my SConscript?</p> http://stackoverflow.com/questions/1920630/how-to-import-oracle-clob-into-another-tablespace 0 How to import Oracle (C)LOB into another tablespace. Kriegel 2009-12-17T09:56:01Z 2009-12-17T11:45:50Z <p>I'm importing a database dump from one Oracle 10g installation into another. The source has a layout with several tablespaces. The target has one default tablespace for the user I'm importing the dump into.</p> <p>Everything works fine, for ordinary tables. The tables are relocated from their original tablespace to the user's default. The problem I'm facing, several tables contain CLOBs with explicit storage directives. That is, they name their storage tablespace. The imp command seems to be unable to relocate these CLOBs to the user's default tablespace.</p> <p>Is there any hidden command line option for the imp command to relocate the CLOB storage to the user's default tablespace or even one named tablespace?</p> <p>The error message ORACLE 959 looks like this:</p> <pre>IMP-00017: Nachfolgende Anweisung war wegen Oracle-Fehler 959 erfolglos: "CREATE TABLE "IF_MDE_DATA_OUT" ("OID" NUMBER(10, 0) NOT NULL ENABLE, "CLIEN" "T_OID" NUMBER(10, 0) NOT NULL ENABLE, "TS_CREATE" TIMESTAMP (6) NOT NULL EN" "ABLE, "TS_UPDATE" TIMESTAMP (6) NOT NULL ENABLE, "OP_CREATE" VARCHAR2(30) N" "OT NULL ENABLE, "OP_UPDATE" VARCHAR2(30) NOT NULL ENABLE, "IDENTIFIER" VARC" "HAR2(50), "TRANSFERTYPE" VARCHAR2(20) NOT NULL ENABLE, "STORE" NUMBER(10, 0" "), "DATUM" DATE, "STATE" NUMBER(3, 0) NOT NULL ENABLE, "DATA_OLD" LONG RAW," " "SUPPLIER" NUMBER(10, 0), "BUYER" NUMBER(10, 0), "GOODS_OUT_IDS" VARCHAR2(" "4000), "CUSTOM_FIELD" VARCHAR2(50), "DATA_ARCHIVE" BLOB, "DATA" BLOB) PCTF" "REE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 STORAGE(INITIAL 65536 FREELISTS 1" " FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "DATA32M" LOGGING NOCOMP" "RESS LOB ("DATA_ARCHIVE") STORE AS (TABLESPACE "DATA32M" ENABLE STORAGE IN" " ROW CHUNK 8192 PCTVERSION 10 NOCACHE LOGGING STORAGE(INITIAL 65536 FREELI" "STS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)) LOB ("DATA") STORE AS (TABLE" "SPACE "DATA32M" ENABLE STORAGE IN ROW CHUNK 8192 PCTVERSION 10 NOCACHE LOGG" "ING STORAGE(INITIAL 65536 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAUL" "T))" IMP-00003: ORACLE-Fehler 959 aufgetreten ORA-00959: Tablespace 'DATA32M' nicht vorhanden </pre> http://stackoverflow.com/questions/1917958/python-import-mechanics 4 Python import mechanics Cory Petosky 2009-12-16T21:41:59Z 2009-12-17T08:41:26Z <p>I have two related Python 'import' questions. They are easily testable, but I want answers that are language-defined and not implementation-specific, and I'm also interested in style/convention, so I'm asking here instead.</p> <p>1)</p> <p>If module A imports module B, and module B imports module C, can code in module A reference module C without an explicit import? If so, am I correct in assuming this is bad practice?</p> <p>2)</p> <p>If I import module A.B.C, does that import modules A and A.B as well? If so, is it by convention better to explicitly <code>import A; import A.B; import A.B.C</code>?</p> http://stackoverflow.com/questions/979057/any-reason-to-clean-up-unused-imports-in-java-other-than-reducing-clutter 7 Any reason to clean up unused imports in Java, other than reducing clutter? Kip 2009-06-11T02:40:46Z 2009-12-16T16:11:42Z <p>Is there any good reason to avoid unused import statements in Java? As I understand it, they are there for the compiler, so lots of unused imports won't have any impacts on the compiled code. Is it just to reduce clutter and to avoid naming conflicts down the line?</p> <p>(I ask because Eclipse gives a warning about unused imports, which is kind of annoying when I'm developing code because I don't want to remove the imports until I'm pretty sure I'm done designing the class.)</p> http://stackoverflow.com/questions/1913265/how-to-import-multiline-csv-files 0 How to import multiline csv files? oo 2009-12-16T08:55:59Z 2009-12-16T14:36:02Z <p>I got a file in this format.</p> <pre><code>"abc";"def";"ghi asdasd asdasd asd asd aas d " </code></pre> <p>Now i want to import it with Java. Does anyone know a library that support this kind of import?</p> http://stackoverflow.com/questions/1914311/pilcrow-appears-in-all-the-column-values-after-importing-from-csv-file-mysql 0 Pilcrow appears in all the column values after importing from CSV file - MYsql Sri Kumar 2009-12-16T12:16:07Z 2009-12-16T12:21:44Z <p>Hello All,</p> <p>my CSV content looks like this</p> <pre><code>1234,123;123;123 5675,123;567;234;565 </code></pre> <p>No Space is provided at the end of each row in CSV i.e. 1234,123;123;123(No space here)</p> <p>Imported this using the following command</p> <pre><code>mysql&gt; load data local infile 'E:\sample.csv' into table Test.Table1 fields terminated by ',' lines terminated by '\n' (Column1,Colunm2); </code></pre> <p>It gets executed successfully and i can find all the records in the DB. But the second column ends with a pilcrow. </p> <p>When i try to edit, the value looks like</p> <pre><code>123;123;123 &lt;extra line here&gt; </code></pre> <p>If i remove the extra line, the pilcrow disappears.</p> <p>Type of the column1, column2 is varchar.</p> <p>Any clues for the issue?</p> http://stackoverflow.com/questions/1910939/accessing-importing-user-defined-classes-in-jrxml 0 Accessing/importing user defined classes in jrxml Nayn 2009-12-15T22:35:48Z 2009-12-15T23:19:17Z <p>Hi, Have anyone tried to import user defined classes in jasper report (.jrxml file)? I want to use some (user defined) Util class inside my jasper report to cook some bean attributes. I am using Javabean datasource</p> <p>Please let me know if you need further clarification.</p> <p>syntax to import class is</p> <pre><code>&lt;import value="java.util.HashMap"/&gt; </code></pre> <p>I want to use</p> <pre><code>&lt;import value="mypackage.MyUtil" /&gt; .... .... &lt;field name="myVar" class="java.lang.String"&gt; &lt;fieldDescription&gt;&lt;![CDATA[MyUtil.cook(myData)]]&gt; &lt;/fieldDescription&gt; &lt;/field&gt; </code></pre> <p>The simple definition for MyUtil.java could be </p> <pre><code>package mypackage; public class MyUtil { public static String cook(String data) { return data + "_cooked"; } } </code></pre> <p>Thanks Nayn</p> http://stackoverflow.com/questions/1902102/oracle-import-data-into-a-table-with-a-different-name 0 Oracle -- Import data into a table with a different name? scrible 2009-12-14T16:57:20Z 2009-12-15T19:14:15Z <p>I have a large (multi-GB) data file exported from an Oracle table. I want to import this data into another Oracle instance, <strong>but I want the table name to be different</strong> from the original table. Is this possible? How?</p> <p>Both importing and exporting systems are Oracle 11g. The table includes a BLOB column, if this makes any difference.</p> <p>Thanks!</p> <p><strong>UPDATES</strong>:</p> <p>The idea here was to update a table while keeping the downtime on the system that's using it to a minimum. The solution (based on <a href="http://stackoverflow.com/users/119634/vincent-malgrat">Vincent Malgrat</a>'s answer and <a href="http://stackoverflow.com/users/146325/apc">APC</a>'s update) is:</p> <ol> <li>Assuming our table name is <code>A</code> </li> <li>Make a temp schema <code>TEMP_SCHEMA</code></li> <li>Import our data into <code>TEMP_SCHEMA.A</code></li> <li><code>CREATE REAL_SCHEMA.B AS SELECT * FROM TEMP_SCHEMA.A</code></li> <li><del><code>DROP TABLE REAL_SCHEMA.A</code></del> Rename <code>REAL_SCHEMA.A</code> to <code>REAL_SCHEMA.A_OLD</code></li> <li>Rename <code>REAL_SCHEMA.B</code> to <code>REAL_SCHEMA.A</code></li> <li><code>DROP REAL_SCHEMA.A_OLD</code></li> </ol> <p>This way, the downtime is only during steps 4 and 5, both should be independent of data size. I'll post an update here if this does not work :-)</p> http://stackoverflow.com/questions/1907571/cocoa-whats-the-difference-between-importing-in-the-header-and-importing-in-the 6 Cocoa: What's the difference between importing in the header and importing in the main file? gargantaun 2009-12-15T13:46:54Z 2009-12-15T14:41:04Z <p>I've no idea why, but on occasion I've managed to fix some compile errors, most notably </p> <pre><code>error expected specifier-qualifier-list before 'someClass' </code></pre> <p>by moving <code>#import "someClass.h"</code> from the .h file into the .m file. This has also worked with a couple of other problems i've encountered that have been (mysteriously from my point of view) related to headers. </p> <p>Some cursory googling has turned up the answer "never import headers in header file" and that's where the advice stops. </p> <p>Either I've completely made this up, or I've picked up the habit from somewhere, but I thought the header was where headers were meant to be imported. Clearly not, but can anyone explain to me why that is, and what's the preferred way of importing headers?</p> http://stackoverflow.com/questions/1905347/a-way-to-automatically-organize-imports-in-xcode 0 A way to automatically organize #imports in Xcode Arrel 2009-12-15T05:28:42Z 2009-12-15T05:43:33Z <p>I love the "Organize Imports" command in Eclipse to implicitly add and remove classes imported into a source file (as in Java or ActionScript).</p> <p>Is there a command in Xcode to update the <code>#import</code> directives at the top of.m Objective-C files based on the classes referenced within the file?</p> http://stackoverflow.com/questions/1902138/importing-text-files-with-comments-in-matlab 1 Importing text files with comments in MATLAB devoured elysium 2009-12-14T17:01:27Z 2009-12-14T20:17:58Z <p>Is there any character or character combination that MATLAB interprets as comments, when importing data from text files? Being that when it detects it at the beginning of a line, will know all the line is to ignore?</p> <p>I have a set of points in a file that look like this: <img src="http://img209.imageshack.us/img209/5139/ysabyc2tn4aeig0jvxotibd.png" alt="alt text"> And as you can see he doesn't seem to understand them very well. Is there anything other than // I could use that MATLAB knows it's to ignore?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1901622/import-typed-dataset-to-sql-server 0 Import typed DataSet to SQL Server snarebold 2009-12-14T15:37:37Z 2009-12-14T16:44:13Z <p>Dear guys</p> <p>I want to import a typed DataSet with DataTables (not with TableAdapters) to my SQL Server database. The structure of all DataTables in the DataSet is the same like in the SQL Server database. With the same fields.</p> <p>How can I import the whole typed DataSet to my SQL Server database?</p> <p>Best regards</p> http://stackoverflow.com/questions/1478997/import-or-link-for-importing-stylesheets 1 @import or <link> for importing stylesheets? Chris Schmitz 2009-09-25T18:52:08Z 2009-12-14T16:26:49Z <p>Which method is best for importing multiple stylesheets? I assume, as with most things regarding the web, the answer is 'it depends', but are there downsides of using one or the other?</p> http://stackoverflow.com/questions/1900189/how-to-access-a-builtin-module-in-python-when-there-is-a-local-module-with-the-sa 1 How to access a builtin module in Python when there is a local module with the same name? EOL 2009-12-14T10:49:52Z 2009-12-14T11:21:00Z <p>How can a built-in module be accessed when a file prog.py is placed in the same directory as a local module with the same name?</p> <p>I'm asking this question because I would like to create a package <code>uncertainties</code> that one can use as</p> <pre><code>import uncertainties from uncertainties.math import * </code></pre> <p>Thus, there is a local math module inside the uncertainties directory. The problem is that I want to access the built-in math module from uncertainties.py.</p> <p>I prefer not to rename uncertainties.math because this module is precisely intended to replace functions from the math module (with equivalents that handle numerical uncertainties).</p> <p>PS: this question pertains to the module I wrote for performing <a href="http://pypi.python.org/pypi/uncertainties/" rel="nofollow">calculations with uncertainties</a> while taking into account correlations between variables.</p> http://stackoverflow.com/questions/1547345/blog-host-with-importing-from-dotnetnuke-blog 0 Blog host with importing from dotnetnuke blog papadi 2009-10-10T08:00:42Z 2009-12-13T16:00:04Z <p>I want to migrate my blog from my own dotnetnuke site to another host (like blogger, posterous etc). Do you know any such host that supports importing from dotnetnuke. Posterous supports importing using MetaWebLog API, which is supposed to be supported by dotnetnuke blog module. I tried it but it does not work. I always get 'We were not able to authenticate this account' message from Posterous, altough at the same time I can post to my dnn blog using Word and MetaWebLog API.</p>