rdb software

04/14/2018 04:25 thefear511#1
ok so i know rdbs are databases packed and can be hashed to be used in the client-side.

but is there a chance to open an rdb and see its columns and contents without making a pre-made lua\dll rdb opener like we do using glandu2's rdb with tabs software?.
04/16/2018 14:20 thefear511#2
maybe nobody understood what i meant xd.

does rdb fields arguments matter to which extent ? like float32 or float8 and int or tinyint.
04/16/2018 15:03 Min@to#3
EDIT### this tool doesn't work with RDB that we use to work with :/ ### I think we can with this Tool :? [Only registered and activated users can see links. Click Here To Register...]

Quote:
Originally Posted by thefear511 View Post
maybe nobody understood what i meant xd.

does rdb fields arguments matter to which extent ? like float32 or float8 and int or tinyint.
I Think the rdb it's the Table it Self :?

Here Somme information from Wiki :p

PHP Code:
##### Rdb/VMS is a relational database management system (RDBMS) for the Hewlett-Packard OpenVMS operating system. In 1994 DEC sold the Rdb division to Oracle Corporation where it was rebranded Oracle Rdb. ##### 
i guess it's like a container or somthing like that :D
04/16/2018 15:22 thefear511#4
Quote:
Originally Posted by Min@to View Post
I think we can with this Tool :? [Only registered and activated users can see links. Click Here To Register...]



I Think the rdb it's the Table it Self :?

Here Somme information from Wiki :p

PHP Code:
##### Rdb/VMS is a relational database management system (RDBMS) for the Hewlett-Packard OpenVMS operating system. In 1994 DEC sold the Rdb division to Oracle Corporation where it was rebranded Oracle Rdb. ##### 
i guess it's like a container or somthing like that :D
just tried it , it doesn't open normal rdbs we have.
04/16/2018 15:28 ThunderNikk#5
You need to create a custom reader it is actually a proprietary file format created by the early Rappelz developers specifically for Rappelz.

There also seems to be some sort of encryption going on as well.

glandu2 would know way more than I do though. I am not sure on the importance of the fields until it is going to interact with the database itself because those are all defined in the database table also.
04/17/2018 02:09 Dark Blaze#6
Quote:
Originally Posted by thefear511 View Post
maybe nobody understood what i meant xd.

does rdb fields arguments matter to which extent ? like float32 or float8 and int or tinyint.
These aren't arguments, they're the data type and yes they do matter.
04/18/2018 14:57 thefear511#7
Quote:
Originally Posted by Dark Blaze View Post
These aren't arguments, they're the data type and yes they do matter.
pardon my low knowledge ;) and how can i know which type some columns i have in a table? i tried schema they do give types but not float etc but rather int & tinyint real int etc.
04/18/2018 15:26 ThunderNikk#8
Well for one you could compare to the data types that are listed in the table design of the database.

Just right click on the table listing in the database and select design.

It should be the same as the RDB so if you know what the column name is look up that column name in the database design and you have your data type.

I am sure there are other ways getting it directly from the RDB but I don't have a lot of knowledge in file formats either.
04/18/2018 16:20 thefear511#9
Quote:
Originally Posted by ThunderNikk View Post
Well for one you could compare to the data types that are listed in the table design of the database.

Just right click on the table listing in the database and select design.

It should be the same as the RDB so if you know what the column name is look up that column name in the database design and you have your data type.

I am sure there are other ways getting it directly from the RDB but I don't have a lot of knowledge in file formats either.
for example my table has a column "id" and the design says its an "int" datatype and my rdb field says its a "TYPE_INT32" datatype, so how am I supposed to be sure that those are the right combinations and it's not supposed to be a FLOAT32 instead or it should be a "real int" in the design.
04/18/2018 20:21 Dark Blaze#10
Quote:
Originally Posted by thefear511 View Post
pardon my low knowledge ;) and how can i know which type some columns i have in a table? i tried schema they do give types but not float etc but rather int & tinyint real int etc.
Refer to [Only registered and activated users can see links. Click Here To Register...]

For integers it's pretty simple:
bigint = TYPE_INT64, integer = TYPE_INT32, smallint = TYPE_INT16 and tinyint = TYPE_INT8.
04/20/2018 01:07 thefear511#11
Quote:
Originally Posted by Dark Blaze View Post
Refer to [Only registered and activated users can see links. Click Here To Register...]

For integers it's pretty simple:
bigint = TYPE_INT64, integer = TYPE_INT32, smallint = TYPE_INT16 and tinyint = TYPE_INT8.
thanks mate lets hope it will benifit my experiments.
04/20/2018 10:36 Xijezu#12
glandus tool creates a table with the matching column types by default when importing rdbs.

Some rdbs got changed to a new format (EnhanceEffect maybe? not sure) which use the format you're looking for.