Search found 38 matches

by Orbmu2k
03.09.2007, 21:04
Forum: SQLite Administrator
Topic: Shortcut for buttons in dialogs?
Replies: 1
Views: 1768

ESC Shortcut added at version 0.8.3.1

Shortcuts for buttons can simply added by editing the language file.

Sample:

[frmTable]
btnAdd=&Add Field

Now you will have a shortcut ALT+A for the "Add" button
by Orbmu2k
03.09.2007, 19:44
Forum: SQLite Administrator
Topic: DATA Field Problem
Replies: 1
Views: 2009

Date values must be formated yyyy-MM-dd
by Orbmu2k
04.07.2007, 11:03
Forum: SQLite Administrator
Topic: Timestamp import
Replies: 4
Views: 3057

Hey, theres a bug, i have to export this sqlite formated :) Maybe i fix it anytime ;-)

The expected timestamp format is "yyyy-MM-dd hh:mm:ss"
by Orbmu2k
19.06.2007, 07:50
Forum: SQLite Administrator
Topic: Data Entry / Edit
Replies: 1
Views: 2045

you hav to edit data on the "edit data" tab not on the "result" tab ;-)
by Orbmu2k
19.06.2007, 07:47
Forum: SQLite
Topic: SQLite and other database engines
Replies: 1
Views: 1676

Possible maybe .... but i do not plan something like this. Also the whole development got stucked ... only small fixes will coming ... if i find the time for it. Yes its using Zeoslib for access. I think it isnt just a "recompile" ;-) But someone send me a mail last time that it work on li...
by Orbmu2k
19.06.2007, 07:24
Forum: SQLite Administrator
Topic: Encrypted DB
Replies: 2
Views: 2424

Are these other tools really supporting Sqlite Version 2 too? The most known tools does not ;-) Also they must use the same version of the sqlite library.
by Orbmu2k
19.06.2007, 07:22
Forum: SQLite Administrator
Topic: How to change language
Replies: 3
Views: 2804

The language files has to be inside the "\languages" subfolder as it shipped in the archive.

Normally on the first start it request you to select you language, after that you can change the language on the menu "Hilfe - Change Language".
by Orbmu2k
01.04.2007, 18:16
Forum: SQLite Administrator
Topic: Problem with AUTO INCREMENT
Replies: 1
Views: 2450

There is a difference in auto increment handling between sqlite 2.8 and sqlite 3. on sqlite 2.8 databases you do not need the AUTOINCREMENT flag because its not supported by sqlite 2.8 ... but INTEGER PRIMARY KEY does quiet the same on sqlite 2.8.
by Orbmu2k
15.03.2007, 11:08
Forum: SQLite Administrator
Topic: Swedish characters (ÅÄÖ) in path
Replies: 7
Views: 3650

At sqlite2 databases i dont see any problems ...

But at Sqlite3 Databases iam also unable to create a database with these chars.

I got:

Code: Select all

library routine called out of sequence
this bug seem so be related by zeoslib
by Orbmu2k
15.03.2007, 11:00
Forum: SQLite Administrator
Topic: Issue with Views and Blobs
Replies: 2
Views: 2389

1. This isn't a bug ... it just a feature wich is not implemented yet. :) The only way to view the content of a view is to execute a sql select statement. 2. I dont know how sqliteexpert store the blobs ... Sqlite Administrator just stores the real RAW binary stream into. SA also only support bmp an...
by Orbmu2k
15.03.2007, 10:55
Forum: SQLite Administrator
Topic: Possible bug with Query with Result
Replies: 4
Views: 3059

Thank you for this report ... i will take a look on it :)
by Orbmu2k
20.02.2007, 07:56
Forum: SQLite Administrator
Topic: Great tool, but what about pictures ?
Replies: 5
Views: 3244

bangfauzan wrote:Where can I download the latest version of SQLite Administrator?
Here :) -> http://sqliteadmin.orbmu2k.de
by Orbmu2k
19.02.2007, 09:50
Forum: SQLite Administrator
Topic: Great tool, but what about pictures ?
Replies: 5
Views: 3244

hi stef,

its possible for jpg and bmp files.

Just doubleclick on the blob field and a simple picture viewer should appear.
Now you can rightclick and load any picture (bmp,jpg) you want.

Image
by Orbmu2k
11.01.2007, 14:02
Forum: SQLite Administrator
Topic: Could not vew & edit data in exsiting tables - 0.8.2.9
Replies: 5
Views: 3209

@AVI:

The invalid token in this case is the "&" in the name of the view

valid tokens are currently "0".."9","_", "a".."z", "A".."Z"

@Mark:
I will take a look on it ;-)
by Orbmu2k
11.01.2007, 10:41
Forum: SQLite Administrator
Topic: Could not vew & edit data in exsiting tables - 0.8.2.9
Replies: 5
Views: 3209

This means that SQLite Administrator runs in "SafeMode" this occurs when Table/Field/Index/View etc ... names are containing invalid tokens. See Errorlog for detail. This is happening because ZeosDBO does not support all type of chars inside the name of database objects ... and it also wil...