Tagged Questions
The loaddata tag has no wiki summary.
12
votes
6answers
6k views
Django Dump Data For a Single Model?
Can you perform a 'dumpdata' in Django on just a single model (rather than the whole app) and if so, how?
E.g. for an app it would be...
python manage.py dumpdata myapp
However, I want some ...
7
votes
1answer
940 views
Programmatically using Django's loaddata
I'd like to call the equivalent of manage.py loaddata from a Django view. I'd like to be able to specify where to load the data from and which application to load it into.
Any ideas?
3
votes
2answers
771 views
Android WebView - 1st LoadData() works fine, subsequent calls do not update display
After the 1st call to LoadData() the event onLoadResource fires as it should and the display is fine. Next I want to refresh the screen with a new page, when I use LoadData() the second time the page ...
2
votes
4answers
311 views
Android webview '%' charecter problem
I have a WebView using following code:
WebView webView = new WebView(cont);
webView.loadData("Red 20%", "text/html", "utf-8");
It is having trouble showing the string. But if I remove the '%' ...
1
vote
0answers
42 views
[django]Error: contenttypes couldn't be reset
I reset contenttypes prior to loading the fixture (Refer to Problems with contenttypes when loading a fixture in Django).
But contenttypes couldn't be reset:
...project_dir > manage.py reset ...
1
vote
2answers
412 views
ComboBox.store.loadData can't load single-item array
I am using ExtJS 3.4 .
I have a structure with data for combobox like this:
var a = [[1,"text1"],[2,"text2"]]
I load it like this:
ComboBox.store.loadData(a);
But when I have only 1 item in the ...
1
vote
0answers
76 views
android webview and loadData, can i get the back button to return to generated content?
I have an android webview that displays generated content with loadDataWithBaseURL. Looks great. However, if i follow a link and then hit the back button I get a blank page where I'd like to see my ...
1
vote
1answer
302 views
ExtJs Error: no method 'loadData'
Im trying to load a tree with data but i get this error
Uncaught TypeError: Object [object Object] has no method 'loadData'
this is my code
function ReadTree() {
try {
...
1
vote
2answers
464 views
Django loaddata settings error
When trying to use loaddata on my local machine (win/sqlite):
python django-admin.py loaddata dumpdata.json
I get the following error:
raise ImportError("Settings cannot be imported, because ...
1
vote
2answers
746 views
Android html image prob
I am displaying a text file that contains html code in a webview using loadData(). The html code has a image tag like <img src="file:///android_asset/test.png" alt="cd4+ cell"> and placed the ...
1
vote
1answer
649 views
difference between loadData() and loadDataWithBaseURL() in WebView class…?
can anybody tell me the difference between loadData() and loadDataWithBaseURL() in WebView class.
when i used web.loadDataWithBaseURL("",html, mimetype, encoding,""); in my program , where html is ...
1
vote
1answer
276 views
SQL Load Data Special Characters
I'm trying to import data into SQL from a CSV in PHP My Admin so it may be a PHP My Admin problem. The problem i'm having is that some of the columns use special characters for instance:
"Adán, ...
0
votes
0answers
47 views
inconsistent loadData of WebView [closed]
Possible Duplicate:
Android WebView - 1st LoadData() works fine, subsequent calls do not update display
In an activity, I have two views, a listview and a webview. According to selection in ...
0
votes
1answer
192 views
IntegrityError: (1062, “Duplicate entry '3-add_author' for key 2”)
Database is MySQL.
I use the django.contrib.auth.
Here is all the info:
manage.py dumpdata auth > my_auth.json --natural --exclude contenttypes
Then I deleted the entire database (drop ...
0
votes
1answer
462 views
Android: WebView loadDataWithBaseURL does not display captcha image
I am trying to display a captcha jpeg image (which is generated dynamically by a Java servlet) in my application's WebView, however, it will sometimes display a blue question mark instead of the ...
0
votes
0answers
33 views
Error when loading table in a thread
I have a few tables loading on start-up on a separate thread, must of the time it works great, but on a few computers I get this error:
System.InvalidOperationException: Timeout expired.
The timeout ...
0
votes
2answers
454 views
Android youtube in webview
I have using Webview to display some html data in my app. I am using the following code.
WebView featureview = (WebView) findViewById(R.id.featureview);
WebSettings webSettings = ...
0
votes
0answers
74 views
How to identify fixture loading (i.e loaddata) inside m2m_changed handler?
I have a Django application where there is a M2M relationship defined
class Project(models.Model):
name = models.CharField(max_length=255)
additional_sections = ...
0
votes
1answer
508 views
UIWebView goBack problem
I load my html data like this:
[webView loadData:htmlData MIMEType:@"text/html" textEncodingName:@"UTF-8" baseURL:url];
But when called:
[WebView goBack];
webView can not go back to that html ...
0
votes
1answer
535 views
Android webview loaddata giving NullPointerException
I have used a webview named Testview to load html data in the webview. for that I am using the following code.
Testview.loadData("<html><body>helloindia</body></html>", ...
0
votes
1answer
204 views
INSERT vs LOAD DATA in a system using E-A-V table for dynamic attributes
I have a legacy php web app that performs csv --> database imports, into a 'master' table that stores entity data, and an entity-attribute-value table that stores dynamic data for each entity.
...
0
votes
1answer
484 views
Image cannot be zoomed in out when loaded into UIWebView
I have an image encoded in BASE64 which I retrieve from a server and than load into a UIWebView
with :
[webViewer loadData:[NSData decodeBase64ForString:imageData] MIMEType:@"image" ...
0
votes
1answer
2k views
Django fixture not loading with loaddata
I've created a json fixture, and put it in my myapp/fixtures/. I've added myapp/fixtures to settings.FIXTURE_DIRS.
Here's the output of my attempt to load the fixture:
jeff@jeff-linux:~/myapp$ ...
0
votes
1answer
241 views
Entity Framework Load Error
I have this query
this.FixturePartidoPuntaje.Load();
var partidos = from q in this.FixturePartidoPuntaje
where ( q.FixturePartido.Equipo.EquipoId.Equals(equipoId) ||
...