Forums WoW Modding Resources Tools [Archive] SQL Merger

[Archive] SQL Merger

[Archive] SQL Merger

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#1
Archived author: dindresto • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: Again a little tool I made. Perhaps someone needs it...

Included languages:

English, German and French (will be chosen automatically by the system)

What you can do:

You can choose a folder and it merges every *.sql-file in this one, or you chose multiple files and the tool will merge those files into one.

The icon is under the "Free for non commercial use" license and it's made by Oliver Scholtz.

DL: SqlMerger V.1.1 - Downloads - Skyoix Forum
rektbyfaith
11-04-2025, 12:45 PM #1

Archived author: dindresto • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: Again a little tool I made. Perhaps someone needs it...

Included languages:

English, German and French (will be chosen automatically by the system)

What you can do:

You can choose a folder and it merges every *.sql-file in this one, or you chose multiple files and the tool will merge those files into one.

The icon is under the "Free for non commercial use" license and it's made by Oliver Scholtz.

DL: SqlMerger V.1.1 - Downloads - Skyoix Forum

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#2
Archived author: dindresto • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: So, newer version is out now.

Changelog 1.1:

-Added aboutbox

-Added drag&drop for files
rektbyfaith
11-04-2025, 12:45 PM #2

Archived author: dindresto • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: So, newer version is out now.

Changelog 1.1:

-Added aboutbox

-Added drag&drop for files

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#3
Archived author: Envoke • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: DirectoryInfo dir = new DirectoryInfo(@"filepath");

FileInfo[] sqlfiles = dir.GetFiles("*.sql);

Foreach( FileInfo f in sqlfiles)

{

StreamReader sr = f.OpenText();

string s = "";

while ((s = sr.ReadLine()) != null)

{

//do something with s because its the current line

}

}

There's your program!
rektbyfaith
11-04-2025, 12:45 PM #3

Archived author: Envoke • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: DirectoryInfo dir = new DirectoryInfo(@"filepath");

FileInfo[] sqlfiles = dir.GetFiles("*.sql);

Foreach( FileInfo f in sqlfiles)

{

StreamReader sr = f.OpenText();

string s = "";

while ((s = sr.ReadLine()) != null)

{

//do something with s because its the current line

}

}

There's your program!

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#4
Archived author: dindresto • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: I know that it's not protected. Btw there are no whiles in the whole program.
rektbyfaith
11-04-2025, 12:45 PM #4

Archived author: dindresto • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: I know that it's not protected. Btw there are no whiles in the whole program.

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#5
Archived author: Envoke • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: Originally Posted by dindresto
[Image: lastpost-right.svg]

I know that it's not protected. Btw there are no whiles in the whole program.

then ReadToEnd() ?

That function itself it probably a while loop lol.
rektbyfaith
11-04-2025, 12:45 PM #5

Archived author: Envoke • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: Originally Posted by dindresto
[Image: lastpost-right.svg]

I know that it's not protected. Btw there are no whiles in the whole program.

then ReadToEnd() ?

That function itself it probably a while loop lol.

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#6
Archived author: Trle94 • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: dindresto dont worry i will protect it [Image: wink.png] just give me source of 1.1v because i have old one v1 [Image: wink.png])

Congratulations Envoke you know to use .NET Reflector [Image: smile.png]))
rektbyfaith
11-04-2025, 12:45 PM #6

Archived author: Trle94 • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: dindresto dont worry i will protect it [Image: wink.png] just give me source of 1.1v because i have old one v1 [Image: wink.png])

Congratulations Envoke you know to use .NET Reflector [Image: smile.png]))

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#7
Archived author: Envoke • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: Originally Posted by Trle94
[Image: lastpost-right.svg]

dindresto dont worry i will protect it [Image: wink.png] just give me source of 1.1v because i have old one v1 [Image: wink.png])

Congratulations Envoke you know to use .NET Reflector [Image: smile.png]))

.NET Reflector ? Nope I just guessed lol. If you know any programming it wouldn't be hard to recreate this.

---------- Post added at 02:59 PM ---------- Previous post was at 02:48 PM ----------

You should help me with my Multi DB editor...

http://www.mmowned.com/forums/world-...g-one-app.html

I got everything that needs to be coded done. Connect to mysql server, execute commands, read commands, ect, ect. Need someone to help me with all the textboxes, names, and all that.
rektbyfaith
11-04-2025, 12:45 PM #7

Archived author: Envoke • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: Originally Posted by Trle94
[Image: lastpost-right.svg]

dindresto dont worry i will protect it [Image: wink.png] just give me source of 1.1v because i have old one v1 [Image: wink.png])

Congratulations Envoke you know to use .NET Reflector [Image: smile.png]))

.NET Reflector ? Nope I just guessed lol. If you know any programming it wouldn't be hard to recreate this.

---------- Post added at 02:59 PM ---------- Previous post was at 02:48 PM ----------

You should help me with my Multi DB editor...

http://www.mmowned.com/forums/world-...g-one-app.html

I got everything that needs to be coded done. Connect to mysql server, execute commands, read commands, ect, ect. Need someone to help me with all the textboxes, names, and all that.

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#8
Archived author: Trle94 • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: well come to our scripting team skyoix.com and we can talk about that.... hit me pm
rektbyfaith
11-04-2025, 12:45 PM #8

Archived author: Trle94 • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: well come to our scripting team skyoix.com and we can talk about that.... hit me pm

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#9
Archived author: dindresto • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: We're no scripters... [Image: wink.png]

In fact we're a few developers who just code for fun.
rektbyfaith
11-04-2025, 12:45 PM #9

Archived author: dindresto • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: We're no scripters... [Image: wink.png]

In fact we're a few developers who just code for fun.

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#10
Archived author: dindresto • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: /push it up
rektbyfaith
11-04-2025, 12:45 PM #10

Archived author: dindresto • Posted: 2025-11-04T13:45:21.154734
Original source

Quote: /push it up

Recently Browsing
 1 Guest(s)
Recently Browsing
 1 Guest(s)